Feedback 1597: "Rabatt verstecken" funktioniert nicht
parent
54d27f5069
commit
4533f77cc2
|
|
@ -13,6 +13,7 @@
|
|||
'account_invoicing',
|
||||
'report_intrastat',
|
||||
'dp_reports',
|
||||
'dp_sale_hide_discount',
|
||||
],
|
||||
'data': [
|
||||
'reports/invoice.xml',
|
||||
|
|
|
|||
|
|
@ -163,7 +163,7 @@
|
|||
<span t-field="invoice_line.price_unit"/>
|
||||
</td>
|
||||
<td class="text-right" t-if="discount_is_set">
|
||||
<span t-field="invoice_line.discount"/>
|
||||
<span t-if="not invoice_line.hide_discount" t-field="invoice_line.discount"/>
|
||||
</td>
|
||||
<td class="text-right">
|
||||
<span t-field="invoice_line.price_subtotal"/>
|
||||
|
|
|
|||
|
|
@ -13,6 +13,7 @@
|
|||
'dp_reports',
|
||||
'sale',
|
||||
'dp_sale_delivery_date',
|
||||
'dp_sale_hide_discount',
|
||||
],
|
||||
'data': [
|
||||
'reports/sale.xml',
|
||||
|
|
|
|||
|
|
@ -125,7 +125,7 @@
|
|||
<span t-field="order_line.price_unit"/>
|
||||
</td>
|
||||
<td rowspan="2" class="text-right" t-if="discount_is_set">
|
||||
<span t-field="order_line.discount"/>
|
||||
<span t-if="not order_line.hide_discount" t-field="order_line.discount"/>
|
||||
</td>
|
||||
<td rowspan="2" class="text-right">
|
||||
<span t-field="order_line.price_subtotal"/>
|
||||
|
|
|
|||
Loading…
Reference in New Issue