mirror of
https://github.com/devcode-it/openstamanager.git
synced 2025-01-08 13:52:18 +01:00
Fix import impianti
This commit is contained in:
parent
bd27c57e06
commit
a9d429036c
@ -171,16 +171,17 @@ class CSV extends CSVImporter
|
||||
$impianto->idanagrafica = $anagrafica->idanagrafica;
|
||||
$impianto->id_marca = $id_marca;
|
||||
$impianto->id_modello = $record['modello'];
|
||||
$impianto->save();
|
||||
|
||||
if (!empty($record['sede'])) {
|
||||
$sede = Sede::where('nomesede', $record['sede'])
|
||||
->where('idanagrafica', $anagrafica->idanagrafica)
|
||||
->first();
|
||||
$impianto->idsede = $sede->id;
|
||||
$impianto->save();
|
||||
}
|
||||
|
||||
$impianto->descrizione = $record['descrizione'];
|
||||
$impianto->save();
|
||||
|
||||
// Gestione immagine
|
||||
if (!empty($url) && !empty($record['import_immagine'])) {
|
||||
$file_content = file_get_contents($url);
|
||||
|
Loading…
Reference in New Issue
Block a user