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.
 
 
 
 
 

20 lines
656 B

<?xml version="1.0" encoding="utf-8"?>
<odoo>
<data>
<template id="report_invoice_customized" inherit_id="account.report_invoice_document">
<xpath expr="//span[@t-field='line.discount']" position="replace">
<span t-esc="'%.2f'%(line.discount)"/>
</xpath>
<xpath expr="//tr[hasclass('is-subtotal')]" position="after">
<tr>
<td>Discount</td>
<td class="text-right">
<span t-field="o.amount_discount"/>
</td>
</tr>
</xpath>
</template>
</data>
</odoo>