From 4ca86745e696569228974a9c593511ee6bd55a4f Mon Sep 17 00:00:00 2001 From: martino Date: Sun, 7 Nov 2021 14:45:27 +0100 Subject: [PATCH 1/2] =?UTF-8?q?correzione=20generatore=20PDF=20sul=20calco?= =?UTF-8?q?lo=20quantit=C3=A0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Ho corretto i decimali del generatore del file PDF in quanto con una sola cifra dopo la virgola arrotondava per eccesso (guarda issue n.11). --- templates/documenti/pdfgen.documenti.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/documenti/pdfgen.documenti.php b/templates/documenti/pdfgen.documenti.php index 34e142b..fdcc52f 100644 --- a/templates/documenti/pdfgen.documenti.php +++ b/templates/documenti/pdfgen.documenti.php @@ -156,7 +156,7 @@ $body .= "\n"; - ( $righe[$i]['qta'] == 0 ) ? $qta='' : $qta=number_format($righe[$i]['qta'], 1, ",", ""); + ( $righe[$i]['qta'] == 0 ) ? $qta='' : $qta=number_format($righe[$i]['qta'], 2, ",", ""); $body .= "\n"; $body .= $qta."\n"; $body .= "\n"; -- 2.39.5 From 59b9f1b3a0aac9b0632bbceab0aeb01397c3469d Mon Sep 17 00:00:00 2001 From: martino Date: Tue, 9 Nov 2021 22:45:43 +0100 Subject: [PATCH 2/2] Dati bancari - aggiunto iban Inserito la visualizzazione dell'iban nei dati bancari. Va comunque creato uno stage che carica i dati solo se selezionato il bonifico bancario --- templates/preventivi/preventivi_body.html | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/templates/preventivi/preventivi_body.html b/templates/preventivi/preventivi_body.html index bab992f..8bb5d23 100644 --- a/templates/preventivi/preventivi_body.html +++ b/templates/preventivi/preventivi_body.html @@ -69,7 +69,10 @@
BANCA DI APPOGGIO
- $f_appoggiobancario$ + $f_appoggiobancario$ +
+ IBAN
+ $f_codiceiban$ -- 2.39.5