mirror of
https://github.com/devcode-it/openstamanager.git
synced 2025-01-09 22:23:15 +01:00
fix: impostazione tipo anagrafica
This commit is contained in:
parent
082b36d73c
commit
fabcc23057
@ -25,9 +25,10 @@ include_once __DIR__.'/../../core.php';
|
||||
$id_nazione_italia = (new Nazione())->getByField('title', 'Italia', Models\Locale::getPredefined()->id);
|
||||
|
||||
if ($idtipoanagrafica) {
|
||||
$tipo = Tipo::where('name', $idtipoanagrafica)->first()->id;
|
||||
$tipo = Tipo::where('name', $idtipoanagrafica)->first();
|
||||
} else {
|
||||
$tipo = get('tipoanagrafica');
|
||||
$tipo = Tipo::where('name', get('tipoanagrafica'))->first() ?: get('tipoanagrafica');
|
||||
$idtipoanagrafica = $tipo->id;
|
||||
}
|
||||
|
||||
$id_tipo_azienda = Tipo::where('name', 'Azienda')->first()->id;
|
||||
|
Loading…
Reference in New Issue
Block a user