odoo-modules/odoo-bringout-odoomates-om_account_accountant/om_account_accountant/views/account_group.xml
Ernad Husremovic 788ea7113e 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
2026-03-09 16:58:26 +01:00

16 lines
530 B
XML

<?xml version="1.0" encoding="utf-8" ?>
<odoo>
<record id="action_account_group_action" model="ir.actions.act_window">
<field name="name">Account Groups</field>
<field name="type">ir.actions.act_window</field>
<field name="res_model">account.group</field>
<field name="view_mode">list,form</field>
</record>
<menuitem id="menu_account_group"
action="action_account_group_action"
sequence="50"
parent="account.account_account_menu"/>
</odoo>