Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
2604af7
[ADD] added estate module
VIWAR-ODOO Feb 5, 2026
d82ef23
[FIX] delete test data
VIWAR-ODOO Feb 5, 2026
51763b2
[FIX] added application true and installable as true
VIWAR-ODOO Feb 5, 2026
dbcbc7a
[FIX] formate change of manifest file
VIWAR-ODOO Feb 5, 2026
1b9af85
[FIX] removed duplicate author fiels inthe manifest file
VIWAR-ODOO Feb 5, 2026
265e0f4
[FIX] style error removed white spaces
VIWAR-ODOO Feb 5, 2026
0aaabf0
[FIX] no newline error in style fixed removed extra comma
VIWAR-ODOO Feb 5, 2026
5a196fc
[FIX] formated code
VIWAR-ODOO Feb 5, 2026
e97eeb1
[FIX] style error
VIWAR-ODOO Feb 5, 2026
2e78623
[FIX] new line at end , fix error no new newline at the end
VIWAR-ODOO Feb 5, 2026
21041c2
[CLN] remove description
VIWAR-ODOO Feb 5, 2026
828ecf1
[FIX] restyle for test case eror
VIWAR-ODOO Feb 5, 2026
f0c774c
[ADD] added estate_property.py model
VIWAR-ODOO Feb 6, 2026
303bb9c
[ADD] init files for initializing
VIWAR-ODOO Feb 6, 2026
4ea41ec
[IMP] security
VIWAR-ODOO Feb 6, 2026
f40f9ba
[IMP] added the data field in the manifest to work the security
VIWAR-ODOO Feb 11, 2026
dee51b9
[IMP] security: changed access
VIWAR-ODOO Feb 11, 2026
bb82432
[REM] estate: removing the un used code, which i added during the set…
VIWAR-ODOO Feb 16, 2026
f91023f
[FIX] estate: updated the " to ' as per the coding guidelines
VIWAR-ODOO Feb 16, 2026
df965e3
[FIX] estate: changed the name to estate.property
VIWAR-ODOO Feb 16, 2026
5ae83d6
[FIX] estate: changed the name of the model and id that provides the …
VIWAR-ODOO Feb 16, 2026
f0b55e5
[ADD] estate: added basic action for our test model, this is hidden b…
VIWAR-ODOO Feb 16, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions estate/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
from . import models
16 changes: 16 additions & 0 deletions estate/__manifest__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
{
'name': 'Real Estate',
'version': '1.0',
'depends': ['base'],
'author': 'viwar-odoo',
'category': 'real estate',
'description': "real estate App.",
'data': [
'security/ir.model.access.csv',
'views/estate_property_views.xml',
],
'application': True,
'installable': True,
'license': 'LGPL-3',
'website': 'https://odoo.com',
}
1 change: 1 addition & 0 deletions estate/models/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
from . import estate_property
8 changes: 8 additions & 0 deletions estate/models/estate_property.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
from odoo import fields, models


class TestModel(models.Model):
_name = 'estate.property'
_description = "Test Model for real estate"

name = fields.Char()
2 changes: 2 additions & 0 deletions estate/security/ir.model.access.csv
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
id,name,model_id/id,group_id/id,perm_read,perm_write,perm_create,perm_unlink
access_estate_property,access_estate_property,model_estate_property,base.group_user,1,1,1,1
10 changes: 10 additions & 0 deletions estate/views/estate_property_views.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
<?xml version="1.0"?>
<odoo>
<data>
<record id='test_model_action' model='ir.actions.act_window'>
<field name='name'>estate_property</field>
<field name='res_model'>estate.property</field>
<field name='view_mode'>list,form</field>
</record>
</data>
</odoo>