Correzione su importazione ricevuta
This commit is contained in:
parent
9686fb3d5d
commit
05445f6fcd
|
@ -76,7 +76,7 @@ switch (filter('op')) {
|
||||||
$type = filter('type');
|
$type = filter('type');
|
||||||
|
|
||||||
$cambia_stato = $type != 'download';
|
$cambia_stato = $type != 'download';
|
||||||
$fattura = Ricevuta::process($name, false);
|
$fattura = Ricevuta::process($name, $cambia_stato);
|
||||||
|
|
||||||
$numero_esterno = $fattura ? $fattura->numero_esterno : null;
|
$numero_esterno = $fattura ? $fattura->numero_esterno : null;
|
||||||
|
|
||||||
|
|
|
@ -128,14 +128,14 @@ function gestioneRicevuta(button, name, type) {
|
||||||
success: function(response) {
|
success: function(response) {
|
||||||
buttonRestore(button, restore);
|
buttonRestore(button, restore);
|
||||||
|
|
||||||
if(response.fattura) {
|
if (response.fattura) {
|
||||||
swal({
|
swal({
|
||||||
title: "'.tr('Importazione completata!').'",
|
title: type === "download" ? "'.tr('Ricevuta scaricata!').'" : "'.tr('Importazione della ricevuta completata!').'",
|
||||||
type: "success",
|
type: "success",
|
||||||
});
|
});
|
||||||
} else {
|
} else {
|
||||||
swal({
|
swal({
|
||||||
title: "'.tr('Importazione fallita!').'",
|
title: "'.tr('Operazione fallita!').'",
|
||||||
type: "error",
|
type: "error",
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue