Explorar el Código

TicketFactory : correctif init section et merchant

packProduct
Guillaume hace 3 años
padre
commit
2698448306
Se han modificado 1 ficheros con 3 adiciones y 2 borrados
  1. +3
    -2
      Factory/Ticket/TicketFactory.php

+ 3
- 2
Factory/Ticket/TicketFactory.php Ver fichero

@@ -16,13 +16,14 @@ class TicketFactory extends SovTicketFactory
{
$ticket = parent::create();

if(!is_null($this->section)) {
if(isset($this->section) && !is_null($this->section)) {
$ticket->setSection($this->section);
}

if(!is_null($this->merchant)) {
if(isset($this->merchant) && !is_null($this->merchant)) {
$ticket->setMerchant($this->merchant);
}

return $ticket;
}
}

Cargando…
Cancelar
Guardar