Correzione su importazione ricevuta
This commit is contained in:
parent
9686fb3d5d
commit
05445f6fcd
|
@ -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;
|
||||
|
||||
|
|
|
@ -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",
|
||||
});
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue