mirror of
https://gitlab.com/flectra-community/bank-payment.git
synced 2024-11-22 13:42:07 +00:00
18 lines
572 B
XML
18 lines
572 B
XML
<?xml version="1.0" encoding="utf-8" ?>
|
|
<flectra>
|
|
<template id="report_sale_payment_mode" inherit_id="sale.report_saleorder_document">
|
|
<xpath
|
|
expr="//p[@t-if='not is_html_empty(doc.payment_term_id.note)']"
|
|
position="after"
|
|
>
|
|
<p
|
|
t-if="not is_html_empty(doc.payment_mode_id.note)"
|
|
id="payment_mode_note"
|
|
>
|
|
<strong>Payment Mode:</strong>
|
|
<span t-field="doc.payment_mode_id.note" />
|
|
</p>
|
|
</xpath>
|
|
</template>
|
|
</flectra>
|