Fix minore

This commit is contained in:
Pek5892 2023-12-04 12:31:55 +01:00
parent d0a8011ce6
commit dc0b739c7e
2 changed files with 4 additions and 3 deletions

View File

@ -65,8 +65,9 @@ switch ($operazione) {
} else {
flash()->warning(tr('Errore durante aggiunta della sede'));
}
$id_record->save();
$sede = Sede::find($id_record);
$sede->save();
break;

View File

@ -90,4 +90,4 @@ INSERT INTO `zz_widgets` (`id`, `name`, `type`, `id_module`, `location`, `class`
(NULL, 'Stampa giacenza', 'print', (SELECT `id` FROM `zz_modules` WHERE name='Automezzi'), 'controller_top', 'col-md-4', '', '#45a9f1', 'fa fa-truck', '', 'if( confirm(\'Stampare la giacenza attuale sugli automezzi?\') ){ window.open(\'pdfgen.php?id_print=53&search_targa=\'+$(\'#th_Targa input\').val()+\'&search_nome=\'+$(\'#th_Nome input\').val()); }', 'javascript', '', 'Stampa giacenza', '1', '1', NULL);
-- Aggiunta flag rappresentante fiscale per sede
ALTER TABLE `an_sedi` ADD `is_rappresentante_fiscale` BOOLEAN NOT NULL DEFAULT FALSE;
ALTER TABLE `an_sedi` ADD `is_rappresentante_fiscale` BOOLEAN NULL DEFAULT FALSE;