소스 검색

[Administration] Documents : erreur JS pricesArray

feature/souke
Guillaume Bourgeois 10 달 전
부모
커밋
2edf638122
1개의 변경된 파일11개의 추가작업 그리고 9개의 파일을 삭제
  1. +11
    -9
      backend/web/js/vuejs/document-form.js

+ 11
- 9
backend/web/js/vuejs/document-form.js 파일 보기

@@ -249,17 +249,19 @@ var app = new Vue({
var pricesArray = product.prices;
var unitCoefficient = product.unit_coefficient;

if (theQuantity) {
theQuantity = theQuantity / unitCoefficient;
}
if(pricesArray && unitCoefficient) {
if (theQuantity) {
theQuantity = theQuantity / unitCoefficient;
}

for (var i = 0; i < pricesArray.length; i++) {
if(pricesArray[i]) {
var price = pricesArray[i].price;
var fromQuantity = pricesArray[i].from_quantity;
for (var i = 0; i < pricesArray.length; i++) {
if(pricesArray[i]) {
var price = pricesArray[i].price;
var fromQuantity = pricesArray[i].from_quantity;

if (price < thePrice && fromQuantity <= theQuantity) {
thePrice = price;
if (price < thePrice && fromQuantity <= theQuantity) {
thePrice = price;
}
}
}
}

Loading…
취소
저장