1
0
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:
valentina 2024-12-02 10:20:31 +01:00
parent 082b36d73c
commit fabcc23057

View File

@ -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;