Explorar el Código

Merge branch 'develop'

master
Guillaume Bourgeois hace 1 año
padre
commit
f162e8ae4c
Se han modificado 2 ficheros con 6 adiciones y 1 borrados
  1. +5
    -0
      backend/web/js/vuejs/distribution-index.js
  2. +1
    -1
      producer/web/js/vuejs/order-order.js

+ 5
- 0
backend/web/js/vuejs/distribution-index.js Ver fichero

@@ -782,6 +782,11 @@ Vue.component('order-form',{
} ;
},
template: '#order-form-template',
watch: {
'order.id_user': function () {
this.userChange();
}
},
methods: {
checkForm: function() {
this.errors = [] ;

+ 1
- 1
producer/web/js/vuejs/order-order.js Ver fichero

@@ -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 ;

Cargando…
Cancelar
Guardar