Explorar el Código

Modif TicketUtils (set updatedAt)

feature/export_comptable
Guillaume hace 4 años
padre
commit
a814096813
Se han modificado 1 ficheros con 3 adiciones y 1 borrados
  1. +3
    -1
      ShopBundle/Services/TicketUtils.php

+ 3
- 1
ShopBundle/Services/TicketUtils.php Ver fichero

@@ -72,9 +72,11 @@ class TicketUtils

if(isset($params['closeTicket']) && $params['closeTicket']) {
$ticket->setTicketStatus(Ticket::TICKET_STATUS_CLOSED) ;
$this->em->persist($ticket);
}

$ticket->setUpdatedAt(new \DateTime()) ;
$this->em->persist($ticket);

$this->em->flush() ;

return $ticketMessage ;

Cargando…
Cancelar
Guardar