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">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>