Zum Inhalt springen
Menü
Sie müssen registriert sein, um mit der Community zu interagieren.
Diese Frage wurde gekennzeichnet
2 Antworten
985 Ansichten

I have 2 Bank accounts in my company. Odoo Automatically adds both in the footer. Is there a way to select/exclude on of the accounts?

Thanks.

Avatar
Verwerfen
Beste Antwort

Either use any other Document Layout than DIN5008 (Settings -> General Settings --> Companies --> Document Layout -> Configure Document Layout), or extend l10n_din5008.external_layout_din5008 so it doesn't loop over the first two but only the first bank, i.e.

<t t-foreach="company.partner_id.bank_ids[:1]" t-as="bank">

instead of

<t t-foreach="company.partner_id.bank_ids[:2]" t-as="bank">

(https://github.com/odoo/odoo/blob/18.0/addons/l10n_din5008/report/din5008_report.xml#L140)


Note: You could change the template in Settings -> Technical --> User Interface -> Views - but, any upgrade of the module l10n_din5008 will reset it to its original state again (hence, the template should be extended in a custom module rather than directly in Odoo).

Avatar
Verwerfen
Verknüpfte Beiträge Antworten Ansichten Aktivität
4
Dez. 23
15484
1
März 15
5314
2
Juni 25
2679
5
Nov. 24
32666
4
Mai 24
6569