Skip to content

Commit 0ebeb91

Browse files
author
Muhammad Amir Nazir
committed
Update
1 parent dbf5cb5 commit 0ebeb91

File tree

5 files changed

+12
-11
lines changed

5 files changed

+12
-11
lines changed

__manifest__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
'depends': ['base'], # Depends on the base Odoo module
1818
'data': [
1919
'security/ir.model.access.csv',
20-
'views/setup_assist_views.xml',
20+
'views/odoo_setup_assistant_views.xml',
2121
# Add security CSV if specific groups beyond base.group_system are needed later
2222
],
2323
'installable': True,

checkers/system_checks.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,4 +108,5 @@ def get_all_dependency_statuses(self):
108108
"found": found_sys,
109109
"status": "OK" if not missing_sys else "ISSUES"
110110
}
111-
}
111+
}
112+

models/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
# -*- coding: utf-8 -*-
2-
from . import setup_assist_wizard
2+
from . import odoo_setup_assistant_wizard

security/ir.model.access.csv

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
id,name,model_id:id,group_id:id,perm_read,perm_write,perm_create,perm_unlink
2-
access_setup_assist_wizard,setup_assist.setup_assist_wizard,model_setup_assist_wizard,base.group_system,1,1,1,1
2+
access_odoo_setup_assistant_wizard,odoo_setup_assistant.odoo_setup_assistant_wizard,model_odoo_setup_assistant_wizard,base.group_system,1,1,1,1

views/setup_assist_views.xml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<odoo>
33
<data>
4-
<record id="view_setup_assist_wizard_form" model="ir.ui.view">
4+
<record id="view_odoo_setup_assistant_wizard_form" model="ir.ui.view">
55
<field name="name">setup.assist.wizard.form</field>
66
<field name="model">setup.assist.wizard</field>
77
<field name="arch" type="xml">
@@ -111,7 +111,7 @@
111111
</field>
112112
</record>
113113

114-
<record id="action_setup_assist_check" model="ir.actions.act_window">
114+
<record id="action_odoo_setup_assistant_check" model="ir.actions.act_window">
115115
<field name="name">Odoo Setup Assistant</field>
116116
<field name="res_model">setup.assist.wizard</field>
117117
<field name="view_mode">form</field>
@@ -127,17 +127,17 @@
127127
</record>
128128

129129
<menuitem
130-
id="menu_setup_assist_root"
130+
id="menu_odoo_setup_assistant_root"
131131
name="Odoo Setup Assistant"
132-
web_icon="setup_assist,static/description/icon.png"
132+
web_icon="odoo_setup_assistant,static/description/icon.png"
133133
sequence="200"
134134
groups="base.group_system"/>
135135

136136
<menuitem
137-
id="menu_setup_assist_run_diagnostics"
137+
id="menu_odoo_setup_assistant_run_diagnostics"
138138
name="Run Diagnostics"
139-
parent="menu_setup_assist_root"
140-
action="action_setup_assist_check"
139+
parent="menu_odoo_setup_assistant_root"
140+
action="action_odoo_setup_assistant_check"
141141
sequence="10"/>
142142
</data>
143143
</odoo>

0 commit comments

Comments
 (0)