[ADD] account_payment_method_report_invoice

This commit is contained in:
Boris Gallet
2024-02-09 10:47:18 +01:00
commit ca652e9a74
10 changed files with 1456 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
<?xml version="1.0" encoding="UTF-8"?>
<odoo>
<template id="payment_method_report_invoice_document" name="Payment method on invoice document" inherit_id="account.report_invoice_document" priority="40">
<xpath expr="//t[@t-set='payment_term_details']" position="before">
<t t-if="o.payment_mode_id">
<p>
Payment Method : <span t-field="o.payment_mode_id"/>
</p>
</t>
</xpath>
</template>
</odoo>