From f8975166eeef93132193951052a247c14c92855b Mon Sep 17 00:00:00 2001 From: loviuz Date: Wed, 13 Jul 2022 16:39:08 +0200 Subject: [PATCH 1/3] Fix dimensione testo html --- assets/src/css/style.css | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/assets/src/css/style.css b/assets/src/css/style.css index 49d626398..ff5d02cf6 100755 --- a/assets/src/css/style.css +++ b/assets/src/css/style.css @@ -30,7 +30,11 @@ url('../fonts/sourcesanspro-regular-webfont.svg') format('svg'); } -html, +html{ + font-size: 13px; + height: 100%; +} + body { font-family: sans-serif, "Source Sans Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol"; font-size: 1rem; @@ -38,11 +42,6 @@ body { line-height: 1.5; color: #212529; text-align: left; - /*background-color: #fff;*/ -} - -html { - height: 100%; } textarea { From 500f992076170cb67dbd5f65a32b48637274f6c6 Mon Sep 17 00:00:00 2001 From: Pek5892 Date: Wed, 13 Jul 2022 17:18:30 +0200 Subject: [PATCH 2/3] Fix criteri applicazione bollo --- modules/fatture/src/Gestori/Bollo.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/fatture/src/Gestori/Bollo.php b/modules/fatture/src/Gestori/Bollo.php index a4174bd78..1e0a3fa41 100644 --- a/modules/fatture/src/Gestori/Bollo.php +++ b/modules/fatture/src/Gestori/Bollo.php @@ -48,7 +48,7 @@ class Bollo } $righe_bollo = $this->fattura->getRighe()->filter(function ($item, $key) { - return $item->aliquota != null && in_array($item->aliquota->codice_natura_fe, ['N1', 'N2.1', 'N2.2', 'N3.1', 'N3.2', 'N3.3', 'N3.4', 'N3.5', 'N3.6', 'N4']); + return $item->aliquota != null && in_array($item->aliquota->codice_natura_fe, ['N2.1', 'N2.2', 'N3.5', 'N3.6', 'N4']); }); $importo_righe_bollo = $righe_bollo->sum('totale_imponibile'); From ed66cf50d4a8c26de1d58b837a02c5d775ece2a3 Mon Sep 17 00:00:00 2001 From: Luca Date: Wed, 13 Jul 2022 17:44:23 +0200 Subject: [PATCH 3/3] Fix lentezza nelle ricerche datatables --- lib/functions.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/functions.php b/lib/functions.php index 91885544c..17f1468e1 100755 --- a/lib/functions.php +++ b/lib/functions.php @@ -243,7 +243,7 @@ function translateTemplate() // Informazioni estese sulle azioni dell'utente $op = post('op'); - if (!empty($op)) { + if (!empty($op) && $op != 'summable-results') { OperationLog::setInfo('id_module', $id_module); OperationLog::setInfo('id_plugin', $id_plugin); OperationLog::setInfo('id_record', $id_record);