Explorar el Código

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

refactoring
Guillaume hace 4 años
padre
commit
59bac725b5
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. +1
    -1
      backend/views/document/download.php

+ 1
- 1
backend/views/document/download.php Ver fichero

@@ -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): ?>

Cargando…
Cancelar
Guardar