From 05445f6fcd3f582403263f34b64129292617be08 Mon Sep 17 00:00:00 2001 From: Dasc3er Date: Fri, 30 Oct 2020 15:30:24 +0100 Subject: [PATCH] Correzione su importazione ricevuta --- plugins/exportFE/actions.php | 2 +- plugins/exportFE/notifiche.php | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/plugins/exportFE/actions.php b/plugins/exportFE/actions.php index ba2c35f36..021febbc0 100755 --- a/plugins/exportFE/actions.php +++ b/plugins/exportFE/actions.php @@ -76,7 +76,7 @@ switch (filter('op')) { $type = filter('type'); $cambia_stato = $type != 'download'; - $fattura = Ricevuta::process($name, false); + $fattura = Ricevuta::process($name, $cambia_stato); $numero_esterno = $fattura ? $fattura->numero_esterno : null; diff --git a/plugins/exportFE/notifiche.php b/plugins/exportFE/notifiche.php index 71c517b05..28c384c1b 100644 --- a/plugins/exportFE/notifiche.php +++ b/plugins/exportFE/notifiche.php @@ -128,14 +128,14 @@ function gestioneRicevuta(button, name, type) { success: function(response) { buttonRestore(button, restore); - if(response.fattura) { + if (response.fattura) { swal({ - title: "'.tr('Importazione completata!').'", + title: type === "download" ? "'.tr('Ricevuta scaricata!').'" : "'.tr('Importazione della ricevuta completata!').'", type: "success", }); } else { swal({ - title: "'.tr('Importazione fallita!').'", + title: "'.tr('Operazione fallita!').'", type: "error", }); }