redesign tz_report_production (total weight)

develop
Andreas Osim 2019-03-21 16:06:24 +01:00
parent daf86b24b1
commit 995c8a7a7b
1 changed files with 12 additions and 2 deletions

View File

@ -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,8 +289,8 @@
Unterschrift: ____________________
</p>
</t>
</div>
-->
</div>
</div>
</t>
</template>