Fix importazione anagrafiche attività in base a partita iva e codice fiscale

This commit is contained in:
valentina 2024-07-25 12:07:21 +02:00
parent 11a7542046
commit a01b8ca499
1 changed files with 13 additions and 7 deletions

View File

@ -44,8 +44,12 @@ class CSV extends CSVImporter
'primary_key' => true, 'primary_key' => true,
], ],
[ [
'field' => 'telefono', 'field' => 'partita_iva',
'label' => 'Telefono', 'label' => 'Partita IVA cliente',
],
[
'field' => 'codice_fiscale',
'label' => 'Codice Fiscale cliente',
], ],
[ [
'field' => 'data', 'field' => 'data',
@ -99,8 +103,10 @@ class CSV extends CSVImporter
$database = database(); $database = database();
$primary_key = $this->getPrimaryKey(); $primary_key = $this->getPrimaryKey();
if (!empty($record['telefono'])) { if (!empty($record['partita_iva'])) {
$anagrafica = Anagrafica::where('telefono', $record['telefono'])->first(); $anagrafica = Anagrafica::where('piva', '=', $record['partita_iva'])->first();
} else if (!empty($record['codice_fiscale'])) {
$anagrafica = Anagrafica::where('codice_fiscale', '=', $record['codice_fiscale'])->first();
} }
if (!empty($record['impianto'])) { if (!empty($record['impianto'])) {
@ -187,9 +193,9 @@ class CSV extends CSVImporter
public static function getExample() public static function getExample()
{ {
return [ return [
['Codice', 'Telefono', 'Data', 'Data richiesta', 'Ora inizio', 'Ora fine', 'Tecnico', 'Tipo', 'Note', 'Impianto', 'Richiesta', 'Descrizione', 'Stato'], ['Codice', 'Partita IVA Cliente', 'Codice Fiscale Cliente', 'Data', 'Data richiesta', 'Ora inizio', 'Ora fine', 'Tecnico', 'Tipo', 'Note', 'Impianto', 'Richiesta', 'Descrizione', 'Stato'],
['00001/2024', '+39 0429 60 25 12', '07/11/2024', '03/11/2024', '8:30', '9:30', 'Stefano Bianchi', '', '', '12345-85A22', 'Manutenzione ordinaria', 'eseguito intervento di manutenzione', 'Da programmare'], ['00001/2024', '123456789', '123456789', '07/11/2024', '03/11/2024', '8:30', '9:30', 'Stefano Bianchi', '', '', '12345-85A22', 'Manutenzione ordinaria', 'eseguito intervento di manutenzione', 'Da programmare'],
['0002/2024', '+39 0429 60 25 12', '08/11/2024', '04/11/2024', '11:20', '', 'Stefano Bianchi', '', '', '12345-85B23', 'Manutenzione ordinaria', 'eseguito intervento di manutenzione', ''], ['0002/2024', '123456789', '123456789', '08/11/2024', '04/11/2024', '11:20', '', 'Stefano Bianchi', '', '', '12345-85B23', 'Manutenzione ordinaria', 'eseguito intervento di manutenzione', ''],
]; ];
} }
} }