|
|
@@ -261,15 +261,19 @@ var app = new Vue({ |
|
|
|
}, |
|
|
|
deleteProductOrder: function (idProductOrder) { |
|
|
|
var app = this; |
|
|
|
axios.get(UrlManager.getBaseUrlAbsolute() + "document/ajax-delete-product-order", { |
|
|
|
params: { |
|
|
|
idProductOrder: idProductOrder |
|
|
|
} |
|
|
|
}) |
|
|
|
.then(function (response) { |
|
|
|
appAlerts.alertResponse(response); |
|
|
|
app.init(); |
|
|
|
}); |
|
|
|
result = confirm("Êtes-vous sûr de vouloir supprimer ce produit ? Cela le supprimera également de la commande à laquelle il est lié."); |
|
|
|
|
|
|
|
if(result) { |
|
|
|
axios.get(UrlManager.getBaseUrlAbsolute() + "document/ajax-delete-product-order", { |
|
|
|
params: { |
|
|
|
idProductOrder: idProductOrder |
|
|
|
} |
|
|
|
}) |
|
|
|
.then(function (response) { |
|
|
|
appAlerts.alertResponse(response); |
|
|
|
app.init(); |
|
|
|
}); |
|
|
|
} |
|
|
|
}, |
|
|
|
formatProductAddPrice: function () { |
|
|
|
this.productAddPrice = Number(this.productAddPrice).toFixed(2).replace(',', '.'); |