You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
600 B
18 lines
600 B
<?xml version="1.0" encoding="utf-8"?>
|
|
<odoo>
|
|
<data>
|
|
|
|
<template id="report_invoice_customized" inherit_id="account.report_invoice_document">
|
|
<xpath expr="//tr[hasclass('border-black')]" position="after">
|
|
<tr>
|
|
<td>Discount</td>
|
|
<td class="text-right">
|
|
<span t-field="o.amount_discount"
|
|
t-options='{"widget": "monetary", "display_currency": "o.currency_id"}'/>
|
|
</td>
|
|
</tr>
|
|
</xpath>
|
|
</template>
|
|
|
|
</data>
|
|
</odoo>
|