瀏覽代碼

Merge branch 'develop'

master
Guillaume Bourgeois 3 月之前
父節點
當前提交
e85221dbad
共有 1 個文件被更改,包括 2 次插入0 次删除
  1. +2
    -0
      backend/web/js/vuejs/distribution-index.js

+ 2
- 0
backend/web/js/vuejs/distribution-index.js 查看文件

@@ -352,6 +352,7 @@ if($(selector).length) {
var app = this;
var quantityMax = event.currentTarget.value;
var idProduct = event.currentTarget.getAttribute('data-id-product');
app.showLoading = true;
axios.get("ajax-process-product-quantity-max", {
params: {
idDistribution: this.distribution.id,
@@ -362,6 +363,7 @@ if($(selector).length) {
.then(function (response) {
Vue.set(app.products[app.getProductIndex(idProduct)], 'quantity_max', response.data.quantity_max);
Vue.set(app.products[app.getProductIndex(idProduct)], 'quantity_remaining', response.data.quantity_remaining);
app.showLoading = false;
});
},
productActiveClick: function (event) {

Loading…
取消
儲存