correction printout deliveryslip

develop
Andreas Osim 2018-10-22 12:30:57 +02:00
parent 1ddfd06773
commit f871e94789
1 changed files with 2 additions and 2 deletions

View File

@ -212,7 +212,7 @@
<span t-field="move_line.package_id"/> <span t-field="move_line.package_id"/>
</t> </t>
</td> </td>
<t t-if="has_serial_number"> <t t-if="has_serial_number and any([move_line.product_id.can_be_sold_unconfigured for move_line in o.move_line_ids])">
<td class="text-center"> <td class="text-center">
<table width="100%"> <table width="100%">
<tr> <tr>
@ -220,7 +220,7 @@
<span t-field="move_line.lot_id" t-if="move_line.product_id.can_be_sold_unconfigured"/> <span t-field="move_line.lot_id" t-if="move_line.product_id.can_be_sold_unconfigured"/>
</td> </td>
<td name="lot_qty"> <td name="lot_qty">
<t t-if="move_line.product_qty"> <t t-if="move_line.product_qty and move_line.product_id.can_be_sold_unconfigured">
<span t-esc="o._formatLang(move_line.product_qty).strip('0').strip(',').strip('.')"/> <span t-esc="o._formatLang(move_line.product_qty).strip('0').strip(',').strip('.')"/>
</t> </t>
</td> </td>