Skip to content

Commit 1fd9b0b

Browse files
committed
[ADD] estate: Add UI components (menus, views, actions)
Chapter 5 – Built initial UI components including menus, views, and actions.
1 parent 458d930 commit 1fd9b0b

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

estate/__manifest__.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
{
2-
'name': "Real Estate",
2+
'name': 'Real Estate',
33
'version': '1.0',
44
'depends': ['base'],
5-
'author': "Harsh Tiwari",
5+
'author': 'Harsh Tiwari',
66
'category': 'Category',
77
'application': True,
88
'description': """
99
Description text
1010
""",
1111
'license': 'LGPL-3',
1212
'data': [
13-
'views/estate_menus.xml',
1413
'views/estate_property_views.xml',
15-
'security/ir.model.access.csv'
14+
'security/ir.model.access.csv',
15+
'views/estate_menus.xml',
1616
]
1717
}
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-
"estate.access_estate_property","access_estate_property","estate.model_estate_property","base.group_user",1,0,0,0
2+
"estate.access_estate_property","access_estate_property","estate.model_estate_property","base.group_user",1,1,1,1

estate/views/estate_menus.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,4 @@
1212
name="Configuration"
1313
parent="estate_menu_root"
1414
action="action_estate_configure" />
15-
</odoo>
15+
</odoo>

estate/views/estate_property_views.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,4 +31,4 @@
3131
</p>
3232
</field>
3333
</record>
34-
</odoo>
34+
</odoo>

0 commit comments

Comments
 (0)