Fix minori

This commit is contained in:
Pek5892 2024-02-22 17:03:48 +01:00
parent 39374285e0
commit ae2cfdde4f
5 changed files with 5 additions and 8 deletions

View File

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

View File

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

View File

@ -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':

View File

@ -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`');

View File

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