From 9a9b9e8df271f1030cb2bf80587e824e3a756c41 Mon Sep 17 00:00:00 2001 From: Dasc3er Date: Wed, 1 Sep 2021 10:30:18 +0200 Subject: [PATCH] Introduzione Banca in tabelle Fatture --- modules/pagamenti/ajax/select.php | 2 +- update/2_4_25.sql | 6 ++++++ 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/modules/pagamenti/ajax/select.php b/modules/pagamenti/ajax/select.php index 1b968edfd..669c630cc 100755 --- a/modules/pagamenti/ajax/select.php +++ b/modules/pagamenti/ajax/select.php @@ -44,7 +44,7 @@ switch ($resource) { foreach ($elements as $element) { $filter[] = 'co_pagamenti.id = '.prepare($element); } - + if (!empty($superselect['codice_modalita_pagamento_fe'])) { $where[] = 'codice_modalita_pagamento_fe = '.prepare($superselect['codice_modalita_pagamento_fe']); } diff --git a/update/2_4_25.sql b/update/2_4_25.sql index 4eaa5dbc7..653f06fe9 100644 --- a/update/2_4_25.sql +++ b/update/2_4_25.sql @@ -139,3 +139,9 @@ INSERT INTO `zz_views` (`id`, `id_module`, `name`, `query`, `order`, `visible`, (NULL, (SELECT `id` FROM `zz_modules` WHERE `name` = 'Attributi Combinazioni'), 'Nome', 'mg_attributi.nome', 2, 1, 0, 1), (NULL, (SELECT `id` FROM `zz_modules` WHERE `name` = 'Combinazioni'), 'id', 'mg_combinazioni.id', 1, 0, 0, 1), (NULL, (SELECT `id` FROM `zz_modules` WHERE `name` = 'Combinazioni'), 'Nome', 'mg_combinazioni.nome', 2, 1, 0, 1); + +-- Introduzione della Banca nelle tabelle Fatture +INSERT INTO `zz_views` (`id_module`, `name`, `query`, `order`, `search`, `slow`, `default`) VALUES + ((SELECT `id` FROM `zz_modules` WHERE `name` = 'Fatture di vendita'), 'Banca', '(SELECT CONCAT(co_banche.nome, '' - '' , co_banche.iban) AS descrizione FROM co_banche WHERE co_banche.id = id_banca_azienda)', 6, 1, 0, 1), + ((SELECT `id` FROM `zz_modules` WHERE `name` = 'Fatture di acquisto'), 'Banca', + '(SELECT CONCAT(co_banche.nome, '' - '' , co_banche.iban) FROM co_banche WHERE co_banche.id = id_banca_azienda)', 6, 1, 0, 1);