瀏覽代碼

[Boutique] Problème "Je confirme ma commande"

feature/rotating_product
Guillaume Bourgeois 6 月之前
父節點
當前提交
70f9c49ce8
共有 1 個文件被更改,包括 5 次插入4 次删除
  1. +5
    -4
      producer/web/js/vuejs/order-order.js

+ 5
- 4
producer/web/js/vuejs/order-order.js 查看文件

@@ -605,10 +605,11 @@ var app = new Vue({
&& !this.isPaymentMethodCreditActiveFunctioningMandatory()
},
errorCreditMandatoryAndLimit: function() {
return this.user && (
this.pointSaleActive.credit_functioning == 'mandatory'
|| (this.pointSaleActive.credit_functioning == 'user' && user.credit_active)
)
return this.user
&& this.pointSaleActive
&& this.pointSaleActive.payment_method_credit
&& (this.pointSaleActive.credit_functioning == 'mandatory'
|| (this.pointSaleActive.credit_functioning == 'user' && this.user.credit_active))
&& !this.checkCreditLimit(this.order);
},
confirmClick: function() {

Loading…
取消
儲存