Miglioramento riferimenti in import FE

This commit is contained in:
loviuz 2023-03-10 19:29:49 +01:00
parent 1007b6d984
commit 9795886369
1 changed files with 13 additions and 8 deletions

View File

@ -353,10 +353,13 @@ switch (filter('op')) {
break; break;
} }
} }
$dati_ddt[(int)$linea] = [
'numero' => $dato['NumeroDDT'], if (!empty($dato['DataDDT'])) {
'anno' => ( new Carbon($dato['DataDDT']) )->format('Y'), $dati_ddt[(int)$linea] = [
]; 'numero' => $dato['NumeroDDT'],
'anno' => ( new Carbon($dato['DataDDT']) )->format('Y'),
];
}
} }
} else { } else {
foreach ($replaces as $replace) { foreach ($replaces as $replace) {
@ -365,10 +368,12 @@ switch (filter('op')) {
break; break;
} }
} }
$dati_ddt[(int)$dato['RiferimentoNumeroLinea']] = [ if (!empty($dato['DataDDT'])) {
'numero' => $dato['NumeroDDT'], $dati_ddt[(int)$dato['RiferimentoNumeroLinea']] = [
'anno' => ( new Carbon($dato['DataDDT']) )->format('Y'), 'numero' => $dato['NumeroDDT'],
]; 'anno' => ( new Carbon($dato['DataDDT']) )->format('Y'),
];
}
} }
} }