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.
39 lines
1.5 KiB
39 lines
1.5 KiB
<?xml version="1.0" encoding="utf-8" ?>
|
|
<odoo>
|
|
<template id="invoice_report_view_amount_in_words"
|
|
inherit_id="account.report_invoice_document">
|
|
<xpath expr="//div[@class='clearfix']" position="after">
|
|
<div style="font-size:15px; padding-top:15px; padding-bottom:15px;">
|
|
<span>
|
|
<strong>Amount in Words (Total) :</strong>
|
|
</span>
|
|
<span t-field="o.number_to_words"/>
|
|
</div>
|
|
</xpath>
|
|
</template>
|
|
|
|
<template id="purchase_report_view_amount_in_words"
|
|
inherit_id="purchase.report_purchaseorder_document">
|
|
<xpath expr="//div[@class='row justify-content-end']" position="after">
|
|
<div style="font-size:15px; padding-top:15px; padding-bottom:15px;">
|
|
<span>
|
|
<strong>Amount in Words (Total) :</strong>
|
|
</span>
|
|
<span t-field="o.number_to_words"/>
|
|
</div>
|
|
</xpath>
|
|
</template>
|
|
|
|
<template id="sale_report_view_amount_in_words"
|
|
inherit_id="sale.report_saleorder_document">
|
|
<xpath expr="//div[@class='clearfix']" position="after">
|
|
<div style="font-size:15px; padding-top:15px; padding-bottom:15px;">
|
|
<span>
|
|
<strong>Amount in Words (Total) :</strong>
|
|
</span>
|
|
<span t-field="doc.number_to_words"/>
|
|
</div>
|
|
</xpath>
|
|
</template>
|
|
|
|
</odoo>
|
|
|