Explorar el Código

[backend] Documents : poids et description dans le PDF

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

+ 9
- 2
backend/views/document/download.php Ver fichero

@@ -64,7 +64,15 @@
<?php foreach($document->getProductsOrders() as $product): ?>
<?php foreach($product as $productOrder): ?>
<tr>
<td class="align-left"><?= Html::encode($productOrder->product->name) ?></td>
<td class="align-left">
<?= Html::encode($productOrder->product->name) ?>
<?php if($productOrder->unit == 'piece' && isset($productOrder->product->weight) && $productOrder->product->weight): ?>
<span class="weight"> / <?= $productOrder->product->weight ?> g</span>
<?php endif; ?>
<?php if(strlen($productOrder->product->description)): ?>
<br /><small><?= Html::encode($productOrder->product->description) ?></small>
<?php endif; ?>
</td>
<?php if(Yii::$app->controller->getClass() != 'DeliveryNote'): ?>
<td class="align-center"><?= Price::format($productOrder->getPrice()) ?></td>
<?php endif; ?>
@@ -76,7 +84,6 @@
<?php endif; ?>
<td class="align-center"><?= Price::format($productOrder->getPrice() * $productOrder->quantity) ?></td>
<?php endif; ?>

</tr>
<?php endforeach; ?>
<?php endforeach; ?>

Cargando…
Cancelar
Guardar