ソースを参照

[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) {

読み込み中…
キャンセル
保存