소스 검색

[Backend] Documents : problème montant facture #559

refactoring
Guillaume Bourgeois 2 년 전
부모
커밋
cbab674a86
2개의 변경된 파일3개의 추가작업 그리고 4개의 파일을 삭제
  1. +1
    -1
      backend/views/document/_download_product_line.php
  2. +2
    -3
      common/models/Document.php

+ 1
- 1
backend/views/document/_download_product_line.php 파일 보기

@@ -20,7 +20,7 @@

<?php if($displayPrices): ?>
<td class="align-center">
<?= Price::format($price) ?>
<?= Price::format($price) ?>
</td>
<?php endif; ?>
<td class="align-center">

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

@@ -434,9 +434,8 @@ class Document extends ActiveRecordCommon
$productOrderMatch = false;
foreach ($productsOrdersArray[$indexProductOrder] as &$theProductOrder) {
if ($theProductOrder->unit == $productOrder->unit
&& ((!$this->isInvoicePrice() && $theProductOrder->price == $productOrder->price)
|| ($this->isInvoicePrice() && $theProductOrder->invoice_price == $productOrder->invoice_price)
)) {
&& $theProductOrder->price == $productOrder->price
&& $theProductOrder->invoice_price == $productOrder->invoice_price) {

$theProductOrder->quantity += $productOrder->quantity;
$productOrderMatch = true;

Loading…
취소
저장