redesign tz_report_production (total weight)
parent
daf86b24b1
commit
995c8a7a7b
|
|
@ -106,6 +106,7 @@
|
|||
-->
|
||||
<th class="text-right">Anzahl</th>
|
||||
<th class="text-right">Gewicht</th>
|
||||
<th class="text-right">Ges.Gew.</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody class="production-tbody">
|
||||
|
|
@ -163,6 +164,12 @@
|
|||
kg
|
||||
</t>
|
||||
</td>
|
||||
<td class="text-right">
|
||||
<t t-if="order_line.weight and order_line.product_uom_qty">
|
||||
<span t-esc="order_line.weight*order_line.product_uom_qty"/>
|
||||
kg
|
||||
</t>
|
||||
</td>
|
||||
<!--
|
||||
<td rowspan="2" class="text-right">
|
||||
<span t-if="order_line.hide_discount"
|
||||
|
|
@ -241,17 +248,20 @@
|
|||
</p>
|
||||
</div>
|
||||
|
||||
<!--
|
||||
<div class="row">
|
||||
<!--
|
||||
<p class="col-xs-12">
|
||||
<span t-field="o.note"/>
|
||||
</p>
|
||||
-->
|
||||
|
||||
<p class="col-xs-12">
|
||||
Gesamtgewicht:
|
||||
<span t-esc="round(o.weight_total, 2)"/>
|
||||
kg
|
||||
<br/>
|
||||
</p>
|
||||
<!--
|
||||
<p class="col-xs-12" t-if="o.incoterm.name">
|
||||
Lieferkonditionen:
|
||||
<span t-esc="o.incoterm.name"/>
|
||||
|
|
@ -279,9 +289,9 @@
|
|||
Unterschrift: ____________________
|
||||
</p>
|
||||
</t>
|
||||
</div>
|
||||
-->
|
||||
</div>
|
||||
</div>
|
||||
</t>
|
||||
</template>
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue