소스 검색

[Backend] Documents : problème prix spécifique #355

refactoring
Guillaume Bourgeois 2 년 전
부모
커밋
5d3dd6446d
2개의 변경된 파일5개의 추가작업 그리고 2개의 파일을 삭제
  1. +2
    -0
      backend/web/js/vuejs/document-form.js
  2. +3
    -2
      common/models/Product.php

+ 2
- 0
backend/web/js/vuejs/document-form.js 파일 보기

@@ -178,6 +178,8 @@ var app = new Vue({
var price = pricesArray[i].price;
var fromQuantity = pricesArray[i].from_quantity;

console.log(pricesArray[i]);
console.log(price+" / "+thePrice+" / "+fromQuantity+" / "+theQuantity+" / ");
if (price < thePrice && fromQuantity <= theQuantity) {
thePrice = price;
}

+ 3
- 2
common/models/Product.php 파일 보기

@@ -428,14 +428,15 @@ class Product extends ActiveRecordCommon
// base price
$priceArray[] = [
'from_quantity' => 0,
'price' => $this->getPrice(),
'price_with_tax' => $this->getPriceWithTax(),
];
}

usort($priceArray, function ($a, $b) {
if ($a['price_with_tax'] < $b['price_with_tax']) {
if ($a['price'] < $b['price']) {
return 1;
} elseif ($a['price_with_tax'] > $b['price_with_tax']) {
} elseif ($a['price'] > $b['price']) {
return -1;
} else {
return 0;

Loading…
취소
저장