瀏覽代碼

Merge branch 'dev'

master
Guillaume 4 年之前
父節點
當前提交
5394e16f5e
共有 1 個檔案被更改,包括 10 行新增1 行删除
  1. +10
    -1
      backend/web/js/vuejs/distribution-index.js

+ 10
- 1
backend/web/js/vuejs/distribution-index.js 查看文件

@@ -598,6 +598,14 @@ Vue.component('order-form',{
submitFormUpdate: function(event) {
var app = this ;
if(this.checkForm()) {

var productsArray = {};
for(key in this.order.productOrder) {
if(this.order.productOrder[key].quantity > 0) {
productsArray[key] = this.order.productOrder[key] ;
}
}

var processCredit = event.currentTarget.getAttribute('data-process-credit') ;
axios.get(UrlManager.getBaseUrlAbsolute()+"order/ajax-update",{params: {
date: this.date.getFullYear() + '-'
@@ -608,7 +616,8 @@ Vue.component('order-form',{
meanPayment: this.order.mean_payment,
idUser: this.order.id_user,
username: ''+this.order.username,
products: JSON.stringify(this.order.productOrder),
products: JSON.stringify(productsArray),
//products: JSON.stringify(this.order.productOrder),
comment: this.order.comment,
processCredit: processCredit
}})

Loading…
取消
儲存