Hi folks,
On Odoo 17,
I would like to know how to show bank informations on invoices.
IBAN
SWIFT/BIC
Is there any "how to" do this ?
Thanks ! =)
Hi folks,
On Odoo 17,
I would like to know how to show bank informations on invoices.
IBAN
SWIFT/BIC
Is there any "how to" do this ?
Thanks ! =)
Hi,
The items displayed on the invoice are specified in the report_invoice_document template from the account module: https://github.com/odoo/odoo/blob/17.0/addons/account/views/report_invoice.xml.
So you would need to extend this template to add your account details.
<template id="invoice_report_view_bank_details" inherit_id="account.report_invoice_document">
<xpath expr="//div[hasclass('clearfix')]" position="after">
<dl id="bank_account" t-foreach="doc.company_id.bank_ids" t-as="ba" class="dl-horizontal text-muted">
<dt>Bank:</dt>
<dd><span t-field="ba.bank_id.name"/></dd>
</dl>
</xpath>
</template>
Regards
Also I've been testing with the demo database in Odoo17 and it is shown by default, and not using the workaround that Ray proposes.
Crea un account oggi per scoprire funzionalità esclusive ed entrare a far parte della nostra fantastica community!
Registrati| Post correlati | Risposte | Visualizzazioni | Attività | |
|---|---|---|---|---|
|
1
ott 25
|
5257 | |||
|
2
feb 25
|
4357 | |||
|
2
giu 24
|
5010 | |||
|
1
giu 24
|
6472 | |||
|
1
ago 23
|
5579 |
1. Use the live chat to ask your questions.
2. The operator answers within a few minutes.