Merge branch 'master' of https://github.com/devcode-it/openstamanager
This commit is contained in:
commit
8f41aad1a2
|
@ -22,7 +22,7 @@ use Modules\Anagrafiche\Tipo;
|
||||||
|
|
||||||
include_once __DIR__.'/../../core.php';
|
include_once __DIR__.'/../../core.php';
|
||||||
|
|
||||||
$id_nazione_italia = Nazione::where('name', 'Italia')->first()->id;
|
$id_nazione_italia = (new Nazione())->getByField('title', 'Italia', Models\Locale::getPredefined()->id);
|
||||||
$tipo = get('tipoanagrafica');
|
$tipo = get('tipoanagrafica');
|
||||||
$id_tipo = Tipo::where('name', $tipo)->first()->id;
|
$id_tipo = Tipo::where('name', $tipo)->first()->id;
|
||||||
$id_tipo_azienda = Tipo::where('name', 'Azienda')->first()->id;
|
$id_tipo_azienda = Tipo::where('name', 'Azienda')->first()->id;
|
||||||
|
|
|
@ -280,7 +280,7 @@ class CSV extends CSVImporter
|
||||||
|
|
||||||
// Fix per campi con contenuti derivati da query implicite
|
// Fix per campi con contenuti derivati da query implicite
|
||||||
if (!empty($record['id_nazione'])) {
|
if (!empty($record['id_nazione'])) {
|
||||||
$record['id_nazione'] = Nazione::where('name', 'Italia')->first()->id;
|
$record['id_nazione'] = (new Nazione())->getByField('title', 'Italia', \Models\Locale::getPredefined()->id);
|
||||||
} else {
|
} else {
|
||||||
unset($record['id_nazione']);
|
unset($record['id_nazione']);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue