Explorar el Código

[Administration] Support > liste tickets : ajout colonne Messages

feature/souke
Guillaume Bourgeois hace 1 año
padre
commit
459c261898
Se han modificado 1 ficheros con 6 adiciones y 0 borrados
  1. +6
    -0
      backend/views/support/index.php

+ 6
- 0
backend/views/support/index.php Ver fichero

@@ -108,6 +108,12 @@ $this->addBreadcrumb($this->getTitle());
return Html::a($ticket->subject, ['support/view', 'id' => $ticket->id]);
}
],
[
'label' => 'Messages',
'value' => function ($ticket) {
return count($ticket->ticketMessages);
}
],
[
'attribute' => 'status',
'filter' => [Ticket::STATUS_OPEN => 'Ouvert', Ticket::STATUS_CLOSED => 'Fermé'],

Cargando…
Cancelar
Guardar