浏览代码

[Boutique] Commander : problème JS errorCreditMandatoryAndLimit

master
Guillaume Bourgeois 6 个月前
父节点
当前提交
a7305d4834
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. +1
    -1
      producer/web/js/vuejs/order-order.js

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

@@ -582,7 +582,7 @@ var app = new Vue({
errorCreditMandatoryAndLimit: function() {
return this.user && (
this.pointSaleActive.credit_functioning == 'mandatory'
|| (this.pointSaleActive.credit_functioning == 'user' && user.credit_active)
|| (this.pointSaleActive.credit_functioning == 'user' && this.user.credit_active)
)
&& !this.checkCreditLimit(this.order);
},

正在加载...
取消
保存