Fix link modulo Attività
This commit is contained in:
parent
9e64b00231
commit
cea813109f
|
@ -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';
|
||||
|
|
|
@ -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 '
|
||||
|
|
|
@ -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'])) {
|
||||
|
|
Loading…
Reference in New Issue