This commit is contained in:
Laurent Destailleur 2018-07-16 11:55:59 +02:00
parent e92ab19a06
commit 37e16b5ff2
3 changed files with 8 additions and 5 deletions

View File

@ -220,6 +220,7 @@ TicketChangeStatus=Change status
TicketConfirmChangeStatus=Confirm the status change : %s ?
TicketLogStatusChanged=Status changed : %s to %s
TicketNotNotifyTiersAtCreate=Not notify company at create
Unread=Unread
#
# Logs

View File

@ -219,6 +219,7 @@ TicketChangeStatus=Changer l'état
TicketConfirmChangeStatus=Confirmez le changement d'état: %s?
TicketLogStatusChanged=Statut changé: %s à %s
TicketNotNotifyTiersAtCreate=Ne pas notifier l'entreprise à la création
Unread=Non lu
#
# Logs

View File

@ -302,7 +302,7 @@ if ($result) {
print '<div class="div-table-responsive-no-min">';
print '<table class="noborder" width="100%">';
print '<tr class="liste_titre"><th>' . $transRecordedType . '</th>';
print '<th>' . $langs->trans('Ref') . '</th>';
print '<th>' . $langs->trans('Date') . '</th>';
print '<th>' . $langs->trans('Subject') . '</th>';
print '<th>' . $langs->trans('Type') . '</th>';
print '<th>' . $langs->trans('Category') . '</th>';
@ -322,16 +322,17 @@ if ($result) {
$tickesupstatic->subject = $objp->subject;
print '<tr class="oddeven">';
// Creation date
print '<td align="left">';
print dol_print_date($db->jdate($objp->datec), 'dayhour');
print "</td>";
// Ref
print '<td class="nowrap">';
print $tickesupstatic->getNomUrl(1);
print "</td>\n";
// Creation date
print '<td align="left">';
print dol_print_date($db->jdate($objp->datec), 'dayhour');
print "</td>";
// Subject
print '<td class="nowrap">';
print '<a href="card.php?track_id=' . $objp->track_id . '">' . dol_trunc($objp->subject, 30) . '</a>';