@@ -782,6 +782,11 @@ Vue.component('order-form',{ | |||
} ; | |||
}, | |||
template: '#order-form-template', | |||
watch: { | |||
'order.id_user': function () { | |||
this.userChange(); | |||
} | |||
}, | |||
methods: { | |||
checkForm: function() { | |||
this.errors = [] ; |
@@ -593,7 +593,7 @@ var app = new Vue({ | |||
if(order != null) { | |||
total = this.priceTotal() - order.amount_paid ; | |||
} | |||
return this.producer.credit_limit == null || (this.producer.credit_limit != null && (this.user.credit - total >= this.producer.credit_limit)) ; | |||
return this.producer.credit_limit == null || (this.producer.credit_limit != null && (this.user.credit - total >= this.producer.credit_limit)) ; | |||
}, | |||
countProductsByCategory: function(category) { | |||
var count = 0 ; |