Fix link modulo Attività

This commit is contained in:
pek5892 2024-06-06 16:59:36 +02:00
parent 9e64b00231
commit cea813109f
3 changed files with 3 additions and 3 deletions

View File

@ -778,7 +778,7 @@ if (!empty($elementi)) {
// se non è un ddt è una fattura.
if (in_array($elemento['tipo_documento'], ['Utente'])) {
$modulo = 'Utenti e permessi';
} elseif (in_array($elemento['tipo_documento'], ['Intervento'])) {
} elseif (in_array($elemento['tipo_documento'], ['Attività'])) {
$modulo = 'Interventi';
} elseif (in_array($elemento['tipo_documento'], ['Preventivo'])) {
$modulo = 'Preventivi';

View File

@ -611,7 +611,7 @@ if (!empty($elementi)) {
]);
echo '
<li>'.Modules::link($elemento['modulo'], $elemento['id'], $descrizione).'</li>';
<li>'.Modules::link(($elemento['modulo'] == 'Interventi' ? 'Attività' : $elemento['modulo']), $elemento['id'], $descrizione).'</li>';
}
echo '

View File

@ -159,7 +159,7 @@ if (!empty($elementi)) {
'_DATE_' => Translator::dateToLocale($elemento['data']),
]);
if (in_array($elemento['tipo_documento'], ['Intervento'])) {
if (in_array($elemento['tipo_documento'], ['Attività'])) {
$modulo = 'Interventi';
}
if (in_array($elemento['tipo_documento'], ['Sessione intervento'])) {