diff --git a/modules/pagamenti/actions.php b/modules/pagamenti/actions.php index 1c4d7b1ca..c57ccec42 100755 --- a/modules/pagamenti/actions.php +++ b/modules/pagamenti/actions.php @@ -82,7 +82,7 @@ switch (filter('op')) { if (isset($descrizione)) { $id_pagamento = (new Pagamento())->getByName($descrizione)->id_record; - if (($id_pagamento)) { + if ($id_pagamento) { flash()->error(tr('Esiste già un metodo di pagamento con questo nome!')); } else { $dbo->query('INSERT INTO `co_pagamenti` (`codice_modalita_pagamento_fe`, `prc` ) VALUES ('.prepare($codice_modalita_pagamento_fe).', 100 )'); diff --git a/modules/segmenti/ajax/select.php b/modules/segmenti/ajax/select.php index 39983416f..01afbc788 100644 --- a/modules/segmenti/ajax/select.php +++ b/modules/segmenti/ajax/select.php @@ -41,7 +41,7 @@ switch ($resource) { if ($is_sezionale != null) { $where[] = 'zz_segments.is_sezionale = '.prepare($is_sezionale); } - + if ($for_fe != null) { $where[] = 'zz_segments.for_fe = '.prepare($for_fe); } diff --git a/modules/stati_contratto/actions.php b/modules/stati_contratto/actions.php index 35d1506a0..3282592b9 100755 --- a/modules/stati_contratto/actions.php +++ b/modules/stati_contratto/actions.php @@ -26,7 +26,7 @@ switch (post('op')) { $id_stato_old = (new Stato())->getByName($record['name'])->id_record; $id_stato = (new Stato())->getByName(post('descrizione'))->id_record; - if (($id_stato)) { + if ($id_stato) { flash()->error(tr('Questo nome è già stato utilizzato per un altro stato dei contratti.')); } else { $dbo->update('co_staticontratti', [ @@ -36,15 +36,14 @@ switch (post('op')) { 'is_fatturabile' => post('is_fatturabile') ?: null, 'is_pianificabile' => post('is_pianificabile') ?: null, ], ['id' => $id_stato_old]); - + $dbo->update('co_staticontratti_lang', [ 'name' => post('descrizione'), ], ['id_record' => $id_stato_old]); - + flash()->info(tr('Informazioni salvate correttamente.')); } - break; case 'add': diff --git a/update/2_4_55.php b/update/2_4_55.php index 7b44c7421..69314f53f 100644 --- a/update/2_4_55.php +++ b/update/2_4_55.php @@ -11,7 +11,6 @@ foreach ($files as $key => $value) { delete($files); - /* Fix per file sql di update aggiornato dopo rilascio 2.4.35 */ $has_column = null; $col_righe = $database->fetchArray('SHOW COLUMNS FROM `zz_groups`'); diff --git a/update/2_4_55.sql b/update/2_4_55.sql index 0e71d516a..2abc59ca5 100644 --- a/update/2_4_55.sql +++ b/update/2_4_55.sql @@ -584,7 +584,6 @@ ORDER BY ALTER TABLE `an_sedi_tecnici` CHANGE `updated_at` `updated_at` TIMESTAMP NULL on update CURRENT_TIMESTAMP NULL DEFAULT CURRENT_TIMESTAMP; ALTER TABLE `an_sedi_tecnici` CHANGE `created_at` `created_at` TIMESTAMP NULL DEFAULT CURRENT_TIMESTAMP; - -- Aggiunto flag "Fatture Elettroniche" in segmenti ALTER TABLE `zz_segments` ADD `for_fe` BOOLEAN NOT NULL AFTER `autofatture`; UPDATE `zz_segments` SET `for_fe` = '1' WHERE `zz_segments`.`id_module` = (SELECT `id` FROM `zz_modules` WHERE name = 'Fatture di vendita') OR `zz_segments`.`id_module` = (SELECT `id` FROM `zz_modules` WHERE name = 'Fatture di acquisto') AND `is_sezionale` = 1 AND `is_fiscale` = 1 AND `name` NOT LIKE '%non elettroniche%'; \ No newline at end of file