Procházet zdrojové kódy

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

refactoring
Guillaume Bourgeois před 2 roky
rodič
revize
cbab674a86
2 změnil soubory, kde provedl 3 přidání a 4 odebrání
  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 Zobrazit soubor

@@ -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 Zobrazit soubor

@@ -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;

Načítá se…
Zrušit
Uložit