Hi, I want to add or create a new filter/search option in the Odoo financial reports.
For example, in the Odoo financial report Balance Sheet, i tried to inherit the existing template and add a new filterlike this example:
<?xml version="1.0" encoding="UTF-8" ?>
<templates>
<t t-name="l10n_ve_reports.AccountReportCurrencySelect" t-inherit="account_reports.AccountReportFiltersCustomizable">
<xpath expr="//div[@id='filter_extra_options']" position="after">
<div id="multi_currency_selection">
<p>My EXAMPLE</p>
</div>
</xpath>
</t>
</templates>
I added my example as above, and put it on __manifest__ . py, but nothing changed in all my templates.
I want to add a new dropdown to select a currency, but for now, I just want to be able to display a dropdown.
Can someone help me with this? Thanks before hand.
Did you add it successfully ?