update: 19.0 compatibility for odoomates accounting modules

- All manifest versions updated to 19.0.1.0.0
- Renamed all <tree> view tags to <list> (19.0 requirement)
- Renamed tree,form to list,form in view_mode fields
- Removed account.chart.template views (AbstractModel in 19.0)
- Fixed xpath /tree/ to /list/ in account_journal.xml for payment methods
- Modules: om_account_accountant, accounting_pdf_reports,
  om_account_budget, om_recurring_payments, om_account_daily_reports

🤖 assisted by claude
This commit is contained in:
Ernad Husremovic 2026-03-09 16:58:26 +01:00
parent 5f0082b0ee
commit 788ea7113e
18 changed files with 52 additions and 132 deletions

View file

@ -26,10 +26,10 @@
<field name="name">account.payment.method</field>
<field name="model">account.payment.method</field>
<field name="arch" type="xml">
<tree string="Payment Methods" create="0" edit="0" delete="0">
<list string="Payment Methods" create="0" edit="0" delete="0">
<field name="name"/>
<field name="payment_type"/>
</tree>
</list>
</field>
</record>
@ -50,7 +50,7 @@
<record id="action_account_payment_method" model="ir.actions.act_window">
<field name="name">Payment Methods</field>
<field name="res_model">account.payment.method</field>
<field name="view_mode">tree,form</field>
<field name="view_mode">list,form</field>
</record>
<menuitem id="menu_account_payment_method"