Sfoglia il codice sorgente

[Administration] Support > liste tickets : ajout colonne Messages

feature/souke
Guillaume Bourgeois 1 anno fa
parent
commit
459c261898
1 ha cambiato i file con 6 aggiunte e 0 eliminazioni
  1. +6
    -0
      backend/views/support/index.php

+ 6
- 0
backend/views/support/index.php Vedi File

@@ -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é'],

Loading…
Annulla
Salva