Ottimizzazione controlli su importFE

This commit is contained in:
loviuz 2023-03-13 09:50:17 +01:00
parent 9795886369
commit 31713bbb51
1 changed files with 35 additions and 13 deletions

View File

@ -323,10 +323,17 @@ switch (filter('op')) {
break;
}
}
try{
$dati_ordini[(int)$linea] = [
'numero' => $dato['IdDocumento'],
'anno' => ( new Carbon($dato['Data']) )->format('Y'),
];
} catch (Exception $e) {
$dati_ordini[(int)$linea] = [
'numero' => $dato['IdDocumento'],
];
}
}
} else {
foreach ($replaces as $replace) {
@ -335,10 +342,17 @@ switch (filter('op')) {
break;
}
}
try{
$dati_ordini[(int)$dato['RiferimentoNumeroLinea']] = [
'numero' => $dato['IdDocumento'],
'anno' => ( new Carbon($dato['Data']) )->format('Y'),
];
} catch (\Exception $e) {
$dati_ordini[(int)$dato['RiferimentoNumeroLinea']] = [
'numero' => $dato['IdDocumento'],
];
}
}
}
@ -354,11 +368,15 @@ switch (filter('op')) {
}
}
if (!empty($dato['DataDDT'])) {
try{
$dati_ddt[(int)$linea] = [
'numero' => $dato['NumeroDDT'],
'anno' => ( new Carbon($dato['DataDDT']) )->format('Y'),
];
} catch (Exception $e) {
$dati_ddt[(int)$linea] = [
'numero' => $dato['NumeroDDT'],
];
}
}
} else {
@ -368,11 +386,15 @@ switch (filter('op')) {
break;
}
}
if (!empty($dato['DataDDT'])) {
try{
$dati_ddt[(int)$dato['RiferimentoNumeroLinea']] = [
'numero' => $dato['NumeroDDT'],
'anno' => ( new Carbon($dato['DataDDT']) )->format('Y'),
];
} catch (Exception $e) {
$dati_ddt[(int)$dato['RiferimentoNumeroLinea']] = [
'numero' => $dato['NumeroDDT'],
];
}
}
}