Miglioramento riferimenti in import FE
This commit is contained in:
parent
1007b6d984
commit
9795886369
|
@ -353,10 +353,13 @@ switch (filter('op')) {
|
|||
break;
|
||||
}
|
||||
}
|
||||
$dati_ddt[(int)$linea] = [
|
||||
'numero' => $dato['NumeroDDT'],
|
||||
'anno' => ( new Carbon($dato['DataDDT']) )->format('Y'),
|
||||
];
|
||||
|
||||
if (!empty($dato['DataDDT'])) {
|
||||
$dati_ddt[(int)$linea] = [
|
||||
'numero' => $dato['NumeroDDT'],
|
||||
'anno' => ( new Carbon($dato['DataDDT']) )->format('Y'),
|
||||
];
|
||||
}
|
||||
}
|
||||
} else {
|
||||
foreach ($replaces as $replace) {
|
||||
|
@ -365,10 +368,12 @@ switch (filter('op')) {
|
|||
break;
|
||||
}
|
||||
}
|
||||
$dati_ddt[(int)$dato['RiferimentoNumeroLinea']] = [
|
||||
'numero' => $dato['NumeroDDT'],
|
||||
'anno' => ( new Carbon($dato['DataDDT']) )->format('Y'),
|
||||
];
|
||||
if (!empty($dato['DataDDT'])) {
|
||||
$dati_ddt[(int)$dato['RiferimentoNumeroLinea']] = [
|
||||
'numero' => $dato['NumeroDDT'],
|
||||
'anno' => ( new Carbon($dato['DataDDT']) )->format('Y'),
|
||||
];
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue