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.
19 lines
764 B
19 lines
764 B
<?xml version="1.0" encoding="utf-8"?>
|
|
<odoo>
|
|
<!--Inherited Template for sale order report-->
|
|
<template id="report_saleorder_customized"
|
|
inherit_id="sale.report_saleorder_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>Total Discount</td>
|
|
<td class="text-right">
|
|
<span t-field="doc.amount_discount"
|
|
t-options='{"widget": "monetary", "display_currency": doc.pricelist_id.currency_id}'/>
|
|
</td>
|
|
</tr>
|
|
</xpath>
|
|
</template>
|
|
</odoo>
|
|
|