Skip to content

Commit

Permalink
[FIX] mgmtsystem: manifest version
Browse files Browse the repository at this point in the history
  • Loading branch information
EdgarRetes committed Oct 9, 2024
1 parent 41c681a commit 38a51e9
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion mgmtsystem/__manifest__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

{
"name": "Management System",
"version": "17.0.1.0.0",
"version": "18.0.1.0.0",
"author": "Savoir-faire Linux,Odoo Community Association (OCA)",
"website": "https://github.com/OCA/management-system",
"license": "AGPL-3",
Expand Down
12 changes: 6 additions & 6 deletions mgmtsystem/views/mgmtsystem_system.xml
Original file line number Diff line number Diff line change
Expand Up @@ -13,22 +13,22 @@
</field>
</record>

<record model="ir.ui.view" id="system_tree">
<field name="name">mgmtsystem_system_tree</field>
<record model="ir.ui.view" id="system_list">
<field name="name">mgmtsystem_system_list</field>
<field name="model">mgmtsystem.system</field>
<field name="arch" type="xml">
<tree>
<list>
<field name="name" />
<field name="company_id" groups="base.group_multi_company" />
</tree>
</list>
</field>
</record>

<record id="system_action" model="ir.actions.act_window">
<field name="name">Management Systems</field>
<field name="res_model">mgmtsystem.system</field>
<field name="view_mode">tree,form</field>
<field name="view_id" ref="system_tree" />
<field name="view_mode">list,form</field>
<field name="view_id" ref="system_list" />
</record>

<menuitem
Expand Down

0 comments on commit 38a51e9

Please sign in to comment.