mirror of
https://github.com/bringout/odoomates.git
synced 2026-04-24 00:32:02 +02:00
- 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
16 lines
530 B
XML
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>
|