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