瀏覽代碼

[backend] Documents : correction problème quantités (rapport aux unités)

refactoring
Guillaume 4 年之前
父節點
當前提交
59bac725b5
共有 1 個檔案被更改,包括 1 行新增1 行删除
  1. +1
    -1
      backend/views/document/download.php

+ 1
- 1
backend/views/document/download.php 查看文件

@@ -68,7 +68,7 @@
<?php if(Yii::$app->controller->getClass() != 'DeliveryNote'): ?>
<td class="align-center"><?= Price::format($productOrder->getPrice()) ?></td>
<?php endif; ?>
<td class="align-center"><?= $productOrder->quantity ?></td>
<td class="align-center"><?= $productOrder->quantity * Product::$unitsArray[$productOrder->unit]['coefficient'] ?></td>
<td class="align-center"><?= Product::strUnit($productOrder->unit, 'wording') ?></td>
<?php if(Yii::$app->controller->getClass() != 'DeliveryNote'): ?>
<?php if(GlobalParam::getCurrentProducer()->taxRate->value != 0): ?>

Loading…
取消
儲存