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