[FIX] sale_layout: invoice report

Put uos in same td tag than qty to avoid shift with header (one more cell)
Fixes #5515
This commit is contained in:
Cédric Pigeon 2015-02-27 23:12:14 +01:00 committed by Martin Trigaux
parent 9284679abe
commit dc41a9b645
1 changed files with 2 additions and 2 deletions

View File

@ -11,8 +11,8 @@
<t t-foreach="p['lines']" t-as="l">
<tr>
<td><span t-field="l.name"/></td>
<td><span t-field="l.quantity"/></td>
<td groups="product.group_uom"><span t-field="l.uos_id"/></td>
<td><span t-field="l.quantity"/>
<span t-field="l.uos_id" groups="product.group_uom"/></td>
<td class="text-right">
<span t-field="l.price_unit"/>
</td>