From 0f4b48d471afb8664d4a0ee7415d5cf2c2b550ee Mon Sep 17 00:00:00 2001 From: Luca Date: Mon, 27 Apr 2020 19:06:04 +0200 Subject: [PATCH] Fix minori --- modules/contratti/edit.php | 6 +++--- update/2_4_15.sql | 6 +++++- 2 files changed, 8 insertions(+), 4 deletions(-) diff --git a/modules/contratti/edit.php b/modules/contratti/edit.php index 1cfcf033f..7597b6094 100755 --- a/modules/contratti/edit.php +++ b/modules/contratti/edit.php @@ -92,7 +92,7 @@ $_SESSION['superselect']['idanagrafica'] = $record['idanagrafica'];
- {[ "type": "number", "label": "", "name": "validita", "decimals": "0", "value": "$validita$", "icon-after": "giorni" ]} + {[ "type": "number", "label": "", "name": "validita", "decimals": "2", "value": "$validita$", "icon-after": "giorni" ]}
@@ -100,11 +100,11 @@ $_SESSION['superselect']['idanagrafica'] = $record['idanagrafica'];
- {[ "type": "number", "label": "", "name": "giorni_preavviso_rinnovo", "decimals": "0", "value": "$giorni_preavviso_rinnovo$", "icon-after": "giorni", "disabled": ]} + {[ "type": "number", "label": "", "name": "giorni_preavviso_rinnovo", "decimals": "2", "value": "$giorni_preavviso_rinnovo$", "icon-after": "giorni", "disabled": ]}
- {[ "type": "number", "label": "", "name": "ore_preavviso_rinnovo", "decimals": "0", "value": "$ore_preavviso_rinnovo$", "icon-after": "ore", "disabled": , "help": "" ]} + {[ "type": "number", "label": "", "name": "ore_preavviso_rinnovo", "decimals": "2", "value": "$ore_preavviso_rinnovo$", "icon-after": "ore", "disabled": , "help": "" ]}
diff --git a/update/2_4_15.sql b/update/2_4_15.sql index 225c0c454..9425ee4de 100644 --- a/update/2_4_15.sql +++ b/update/2_4_15.sql @@ -11,4 +11,8 @@ UPDATE `zz_modules` SET `options` = 'SELECT |select| FROM (`in_interventi` INNER -- Aggiunta colonna Rif. fattura per attività INSERT INTO `zz_views` (`id_module`, `name`, `query`, `order`, `search`, `format`, `default`, `visible`) VALUES -((SELECT `id` FROM `zz_modules` WHERE `name` = 'Interventi'), 'Rif. fattura', 'fattura.info', 17, 1, 0, 0, 1); \ No newline at end of file +((SELECT `id` FROM `zz_modules` WHERE `name` = 'Interventi'), 'Rif. fattura', 'fattura.info', 17, 1, 0, 0, 1); + + +-- Ore preavviso rinnovo con decimali per frazioni ore +ALTER TABLE `co_contratti` CHANGE `ore_preavviso_rinnovo` `ore_preavviso_rinnovo` DECIMAL(15,6) NULL DEFAULT NULL; \ No newline at end of file