소스 검색

[Producer] Commande : correctif price total

refactoring
Guillaume Bourgeois 2 년 전
부모
커밋
a3b1e9a536
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. +1
    -1
      producer/web/js/vuejs/order-order.js

+ 1
- 1
producer/web/js/vuejs/order-order.js 파일 보기

@@ -465,7 +465,7 @@ var app = new Vue({
for(var key in this.products) {
var quantity = this.products[key].quantity_form;
if(quantity > 0) {
price += quantity * this.getBestProductPrice(this.products[key].id, this.products[key].quantity_form);
price += (quantity / this.products[key].unit_coefficient) * this.getBestProductPrice(this.products[key].id, this.products[key].quantity_form);
}
}
if(format) {

Loading…
취소
저장