From 076ed513607ac55a6a9e9c7d7f8576ddf5a2a167 Mon Sep 17 00:00:00 2001 From: ancha-odoo Date: Thu, 2 Jul 2026 18:31:13 +0530 Subject: [PATCH 01/14] [ADD] estate: initial module setup Add the basic structure for the estate module as part of the Odoo Server Framework 101 training. --- estate/__init__.py | 0 estate/__manifest__.py | 8 ++++++++ 2 files changed, 8 insertions(+) create mode 100644 estate/__init__.py create mode 100644 estate/__manifest__.py diff --git a/estate/__init__.py b/estate/__init__.py new file mode 100644 index 00000000000..e69de29bb2d diff --git a/estate/__manifest__.py b/estate/__manifest__.py new file mode 100644 index 00000000000..a3085249a3b --- /dev/null +++ b/estate/__manifest__.py @@ -0,0 +1,8 @@ +{ + "name":"estate", + "category":"", + "depends":[ + "base", + ], + "application":True, +} \ No newline at end of file From d23e87109d8b8d6d3f989dc13891508c3d49bfef Mon Sep 17 00:00:00 2001 From: ancha-odoo Date: Fri, 3 Jul 2026 10:24:53 +0530 Subject: [PATCH 02/14] [LINT] Fix Code Formatting --- .gitignore | 1 + estate/__manifest__.py | 12 ++++++------ 2 files changed, 7 insertions(+), 6 deletions(-) diff --git a/.gitignore b/.gitignore index b6e47617de1..c7aef879c48 100644 --- a/.gitignore +++ b/.gitignore @@ -26,6 +26,7 @@ share/python-wheels/ .installed.cfg *.egg MANIFEST +*.xml # PyInstaller # Usually these files are written by a python script from a template diff --git a/estate/__manifest__.py b/estate/__manifest__.py index a3085249a3b..ee0b7ba579d 100644 --- a/estate/__manifest__.py +++ b/estate/__manifest__.py @@ -1,8 +1,8 @@ { - "name":"estate", - "category":"", - "depends":[ - "base", + "name": "estate", + "category": "", + "depends": [ + "base", ], - "application":True, -} \ No newline at end of file + "application": True, +} From b48be1316e1f35ebf57ae448557aa9f39711f8ab Mon Sep 17 00:00:00 2001 From: ancha-odoo Date: Fri, 3 Jul 2026 11:01:11 +0530 Subject: [PATCH 03/14] [IMP] estate: add missing author and license to manifest --- estate/__manifest__.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/estate/__manifest__.py b/estate/__manifest__.py index ee0b7ba579d..252e94ab51d 100644 --- a/estate/__manifest__.py +++ b/estate/__manifest__.py @@ -5,4 +5,6 @@ "base", ], "application": True, + "author": "Ansh Chamriya", + "license": "LGPL-3", } From e27c9fc32495d742887214b480f09d91530c8df6 Mon Sep 17 00:00:00 2001 From: ancha-odoo Date: Fri, 3 Jul 2026 14:48:16 +0530 Subject: [PATCH 04/14] [ADD] estate: create estate_property model and configure initial fields Setup and authenticated DB to have the estate_property table created schema with initial fields for the same --- estate/__init__.py | 1 + estate/models/__init__.py | 1 + estate/models/estate_property.py | 28 ++++++++++++++++++++++++++++ 3 files changed, 30 insertions(+) create mode 100644 estate/models/__init__.py create mode 100644 estate/models/estate_property.py diff --git a/estate/__init__.py b/estate/__init__.py index e69de29bb2d..0650744f6bc 100644 --- a/estate/__init__.py +++ b/estate/__init__.py @@ -0,0 +1 @@ +from . import models diff --git a/estate/models/__init__.py b/estate/models/__init__.py new file mode 100644 index 00000000000..5e1963c9d2f --- /dev/null +++ b/estate/models/__init__.py @@ -0,0 +1 @@ +from . import estate_property diff --git a/estate/models/estate_property.py b/estate/models/estate_property.py new file mode 100644 index 00000000000..4014cf64104 --- /dev/null +++ b/estate/models/estate_property.py @@ -0,0 +1,28 @@ +from odoo import models, fields + + +class EstateProperty(models.Model): + _name = "estate.property" + _description = "Real Estate Property" + + name = fields.Char(required=True) + description = fields.Text() + postcode = fields.Char() + date_availability = fields.Date() + expected_price = fields.Float(required=True) + selling_price = fields.Float() + bedrooms = fields.Integer() + living_area = fields.Integer() + facades = fields.Integer() + garage = fields.Boolean() + garden = fields.Boolean() + garden_area = fields.Integer() + garden_orientation = fields.Selection( + [ + ("north", "North"), + ("south", "South"), + ("east", "East"), + ("west", "West"), + ], + string="Garden Orientation", + ) From 13997f0f4b34ab70233088303783a6df2fadb5b3 Mon Sep 17 00:00:00 2001 From: ancha-odoo Date: Fri, 3 Jul 2026 15:19:08 +0530 Subject: [PATCH 05/14] [IMP] estate: load access control rules to manifest this would configure the access of the estate property table and more. We can add the rule row in the csv file --- estate/__manifest__.py | 3 +++ estate/security/ir.model.access.csv | 2 ++ 2 files changed, 5 insertions(+) create mode 100644 estate/security/ir.model.access.csv diff --git a/estate/__manifest__.py b/estate/__manifest__.py index 252e94ab51d..04f54516079 100644 --- a/estate/__manifest__.py +++ b/estate/__manifest__.py @@ -7,4 +7,7 @@ "application": True, "author": "Ansh Chamriya", "license": "LGPL-3", + "data": [ + "security/ir.model.access.csv", + ], } diff --git a/estate/security/ir.model.access.csv b/estate/security/ir.model.access.csv new file mode 100644 index 00000000000..32389642d4f --- /dev/null +++ b/estate/security/ir.model.access.csv @@ -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 From 63d7e807359a16d009d3421c3e9a2650adcd45a9 Mon Sep 17 00:00:00 2001 From: ancha-odoo Date: Mon, 6 Jul 2026 10:23:25 +0530 Subject: [PATCH 06/14] [IMP] estate: add first user interface - add window action for estate.property - create Real Estate menu hierarchy - register XML views in the manifest - add active and state fields - configure default values and field attributes --- .gitignore | 1 - estate/__manifest__.py | 4 +--- estate/models/estate_property.py | 23 +++++++++++++++++++---- estate/views/estate_property_views.xml | 25 +++++++++++++++++++++++++ 4 files changed, 45 insertions(+), 8 deletions(-) create mode 100644 estate/views/estate_property_views.xml diff --git a/.gitignore b/.gitignore index c7aef879c48..b6e47617de1 100644 --- a/.gitignore +++ b/.gitignore @@ -26,7 +26,6 @@ share/python-wheels/ .installed.cfg *.egg MANIFEST -*.xml # PyInstaller # Usually these files are written by a python script from a template diff --git a/estate/__manifest__.py b/estate/__manifest__.py index 04f54516079..c8dcfe6e18a 100644 --- a/estate/__manifest__.py +++ b/estate/__manifest__.py @@ -7,7 +7,5 @@ "application": True, "author": "Ansh Chamriya", "license": "LGPL-3", - "data": [ - "security/ir.model.access.csv", - ], + "data": ["security/ir.model.access.csv", "views/estate_property_views.xml"], } diff --git a/estate/models/estate_property.py b/estate/models/estate_property.py index 4014cf64104..24bfbd8037c 100644 --- a/estate/models/estate_property.py +++ b/estate/models/estate_property.py @@ -1,3 +1,5 @@ +from email.policy import default + from odoo import models, fields @@ -5,13 +7,13 @@ class EstateProperty(models.Model): _name = "estate.property" _description = "Real Estate Property" - name = fields.Char(required=True) + name = fields.Char(required=True, default="Unknown") description = fields.Text() postcode = fields.Char() - date_availability = fields.Date() + date_availability = fields.Date(copy=False) expected_price = fields.Float(required=True) - selling_price = fields.Float() - bedrooms = fields.Integer() + selling_price = fields.Float(readonly=True, copy=False) + bedrooms = fields.Integer(default=2) living_area = fields.Integer() facades = fields.Integer() garage = fields.Boolean() @@ -26,3 +28,16 @@ class EstateProperty(models.Model): ], string="Garden Orientation", ) + active = fields.Boolean(default=True) + state = fields.Selection( + [ + ("new", "New"), + ("offer_received", "Offer Received"), + ("offer_accepted", "Offer Accepted"), + ("sold", "Sold"), + ("cancelled", "Cancelled"), + ], + required=True, + copy=False, + default="new", + ) diff --git a/estate/views/estate_property_views.xml b/estate/views/estate_property_views.xml new file mode 100644 index 00000000000..e65443a82c3 --- /dev/null +++ b/estate/views/estate_property_views.xml @@ -0,0 +1,25 @@ + + + + + Properties + estate.property + list,form + + + + + + + + + + + + \ No newline at end of file From 5a323bf2f6f20cc412f427915939c12ea0fb5c14 Mon Sep 17 00:00:00 2001 From: ancha-odoo Date: Mon, 6 Jul 2026 10:30:34 +0530 Subject: [PATCH 07/14] [LINT] estate:remove unused imports --- estate/models/estate_property.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/estate/models/estate_property.py b/estate/models/estate_property.py index 24bfbd8037c..1badc0636c4 100644 --- a/estate/models/estate_property.py +++ b/estate/models/estate_property.py @@ -1,5 +1,3 @@ -from email.policy import default - from odoo import models, fields From 84072b33c59ea113d44fe08f435849c1b710dd5e Mon Sep 17 00:00:00 2001 From: ancha-odoo Date: Fri, 3 Jul 2026 11:01:11 +0530 Subject: [PATCH 08/14] [IMP] estate: add missing author and license to manifest --- .idea/.gitignore | 10 ++++++++++ .idea/tutorials.iml | 14 ++++++++++++++ 2 files changed, 24 insertions(+) create mode 100644 .idea/.gitignore create mode 100644 .idea/tutorials.iml diff --git a/.idea/.gitignore b/.idea/.gitignore new file mode 100644 index 00000000000..30cf57ed7cb --- /dev/null +++ b/.idea/.gitignore @@ -0,0 +1,10 @@ +# Default ignored files +/shelf/ +/workspace.xml +# Editor-based HTTP Client requests +/httpRequests/ +# Ignored default folder with query files +/queries/ +# Datasource local storage ignored files +/dataSources/ +/dataSources.local.xml diff --git a/.idea/tutorials.iml b/.idea/tutorials.iml new file mode 100644 index 00000000000..78f129fc905 --- /dev/null +++ b/.idea/tutorials.iml @@ -0,0 +1,14 @@ + + + + + + + + \ No newline at end of file From cc8b8c92318584772779e4ae3da683125f386c61 Mon Sep 17 00:00:00 2001 From: ancha-odoo Date: Mon, 6 Jul 2026 10:23:25 +0530 Subject: [PATCH 09/14] [IMP] estate: add first user interface - add window action for estate.property - create Real Estate menu hierarchy - register XML views in the manifest - add active and state fields - configure default values and field attributes --- estate/models/estate_property.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/estate/models/estate_property.py b/estate/models/estate_property.py index 1badc0636c4..24bfbd8037c 100644 --- a/estate/models/estate_property.py +++ b/estate/models/estate_property.py @@ -1,3 +1,5 @@ +from email.policy import default + from odoo import models, fields From ba8b5a010f0a21e13e8d38118d98651dd663b9a5 Mon Sep 17 00:00:00 2001 From: ancha-odoo Date: Mon, 6 Jul 2026 16:42:02 +0530 Subject: [PATCH 10/14] [LINT] estate: remove unwanted imports --- .idea/dataSources.xml | 19 +++++++++++++++++++ .idea/db-forest-config.xml | 10 ++++++++++ .../inspectionProfiles/profiles_settings.xml | 6 ++++++ .idea/misc.xml | 6 ++++++ .idea/pyLspTools.xml | 6 ++++++ .idea/vcs.xml | 7 +++++++ estate/models/estate_property.py | 2 -- 7 files changed, 54 insertions(+), 2 deletions(-) create mode 100644 .idea/dataSources.xml create mode 100644 .idea/db-forest-config.xml create mode 100644 .idea/inspectionProfiles/profiles_settings.xml create mode 100644 .idea/misc.xml create mode 100644 .idea/pyLspTools.xml create mode 100644 .idea/vcs.xml diff --git a/.idea/dataSources.xml b/.idea/dataSources.xml new file mode 100644 index 00000000000..1e59295c123 --- /dev/null +++ b/.idea/dataSources.xml @@ -0,0 +1,19 @@ + + + + + postgresql + true + org.postgresql.Driver + jdbc:postgresql://localhost:5432/rd-demo + $ProjectFileDir$ + + + postgresql + true + org.postgresql.Driver + jdbc:postgresql://localhost:5432/rd-demo + $ProjectFileDir$ + + + \ No newline at end of file diff --git a/.idea/db-forest-config.xml b/.idea/db-forest-config.xml new file mode 100644 index 00000000000..1081971d433 --- /dev/null +++ b/.idea/db-forest-config.xml @@ -0,0 +1,10 @@ + + + + . + ---------------------------------------- + 1:0:11627c50-9ae8-4ec2-a4bb-86b1796a5561 + 2:0:e142a364-9a9b-4b98-b680-d9cc590913a8 + . + + \ No newline at end of file diff --git a/.idea/inspectionProfiles/profiles_settings.xml b/.idea/inspectionProfiles/profiles_settings.xml new file mode 100644 index 00000000000..105ce2da2d6 --- /dev/null +++ b/.idea/inspectionProfiles/profiles_settings.xml @@ -0,0 +1,6 @@ + + + + \ No newline at end of file diff --git a/.idea/misc.xml b/.idea/misc.xml new file mode 100644 index 00000000000..7f95f45e8e7 --- /dev/null +++ b/.idea/misc.xml @@ -0,0 +1,6 @@ + + + + + \ No newline at end of file diff --git a/.idea/pyLspTools.xml b/.idea/pyLspTools.xml new file mode 100644 index 00000000000..0a5598d6fbe --- /dev/null +++ b/.idea/pyLspTools.xml @@ -0,0 +1,6 @@ + + + + + \ No newline at end of file diff --git a/.idea/vcs.xml b/.idea/vcs.xml new file mode 100644 index 00000000000..924d857ee04 --- /dev/null +++ b/.idea/vcs.xml @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff --git a/estate/models/estate_property.py b/estate/models/estate_property.py index 24bfbd8037c..1badc0636c4 100644 --- a/estate/models/estate_property.py +++ b/estate/models/estate_property.py @@ -1,5 +1,3 @@ -from email.policy import default - from odoo import models, fields From e1c3eabe23feec0c439884ab9e7634a558b26ca9 Mon Sep 17 00:00:00 2001 From: ancha-odoo Date: Tue, 7 Jul 2026 17:38:33 +0530 Subject: [PATCH 11/14] [IMP] estate: implement property UI with menus, actions, and views - Window action for properties - Root and submenu entries - List view for property records - Form view for property details - Search view with filters and group by options --- estate/views/estate_property_views.xml | 76 ++++++++++++++++++++++++++ 1 file changed, 76 insertions(+) diff --git a/estate/views/estate_property_views.xml b/estate/views/estate_property_views.xml index e65443a82c3..30eb283509f 100644 --- a/estate/views/estate_property_views.xml +++ b/estate/views/estate_property_views.xml @@ -7,6 +7,9 @@ list,form + + + @@ -22,4 +25,77 @@ + + + + + + + estate.property.list + estate.property + + + + + + + + + + + + + + + + + estate.property.list + estate.property + +
+ + + + + + + + + + + + + + + + + + + + + +
+
+
+ + + + estate.property.search + estate.property + + + + + + + + + + + + + \ No newline at end of file From ef8a0114036b0417b267016946ac8c49ee86c32f Mon Sep 17 00:00:00 2001 From: ancha-odoo Date: Wed, 8 Jul 2026 15:05:24 +0530 Subject: [PATCH 12/14] [IMP] estate: add property relations and offers Implement relational fields for the estate module by adding: - Property types and tags - Property offers - One2many and Many2one relationships - Offer management from the property form - Configuration menus for property types and tags --- .idea/vcs.xml | 10 +++ estate/models/__init__.py | 3 +- estate/models/estate_property.py | 11 +++ estate/models/estate_property_offers.py | 15 ++++ estate/models/estate_property_tags.py | 8 ++ estate/models/estate_property_type.py | 8 ++ estate/security/ir.model.access.csv | 3 + estate/views/estate_property_views.xml | 102 ++++++++++++++++++++++-- 8 files changed, 152 insertions(+), 8 deletions(-) create mode 100644 estate/models/estate_property_offers.py create mode 100644 estate/models/estate_property_tags.py create mode 100644 estate/models/estate_property_type.py diff --git a/.idea/vcs.xml b/.idea/vcs.xml index 924d857ee04..182b4ed5efb 100644 --- a/.idea/vcs.xml +++ b/.idea/vcs.xml @@ -1,5 +1,15 @@ + + + diff --git a/estate/models/__init__.py b/estate/models/__init__.py index 5e1963c9d2f..d309a1b1d24 100644 --- a/estate/models/__init__.py +++ b/estate/models/__init__.py @@ -1 +1,2 @@ -from . import estate_property +from . import estate_property,estate_property_type,estate_property_tags,estate_property_offers + diff --git a/estate/models/estate_property.py b/estate/models/estate_property.py index 1badc0636c4..dadb159b37f 100644 --- a/estate/models/estate_property.py +++ b/estate/models/estate_property.py @@ -6,7 +6,15 @@ class EstateProperty(models.Model): _description = "Real Estate Property" name = fields.Char(required=True, default="Unknown") + property_type_id = fields.Many2one("estate.property.type", string="Type") description = fields.Text() + tag_ids = fields.Many2many("estate.property.tags", string="Tags") + salesman_id = fields.Many2one( + "res.partner", string="Salesman", default=lambda self: self.env.user.id + ) + buyer_id = fields.Many2one( + "res.users", string="Buyer", default=lambda self: self.env.user.id, copy=False + ) postcode = fields.Char() date_availability = fields.Date(copy=False) expected_price = fields.Float(required=True) @@ -39,3 +47,6 @@ class EstateProperty(models.Model): copy=False, default="new", ) + offer_ids = fields.One2many( + "estate.property.offers", "property_id", string="Offers" + ) diff --git a/estate/models/estate_property_offers.py b/estate/models/estate_property_offers.py new file mode 100644 index 00000000000..ec1028ce57b --- /dev/null +++ b/estate/models/estate_property_offers.py @@ -0,0 +1,15 @@ +from odoo import models, fields + + +class EstatePropertyOffers(models.Model): + _name = "estate.property.offers" + _description = "Property Offers" + + price = fields.Float(string="Price") + status = fields.Selection( + [("accepted", "Accepted"), ("refused", "Refused")], + string="Status", + copy="False", + ) + partner_id = fields.Many2one("res.partner", string="Customer", required=True) + property_id = fields.Many2one("estate.property", string="Property", required=True) diff --git a/estate/models/estate_property_tags.py b/estate/models/estate_property_tags.py new file mode 100644 index 00000000000..526e6171ff8 --- /dev/null +++ b/estate/models/estate_property_tags.py @@ -0,0 +1,8 @@ +from odoo import models, fields + + +class EstatePropertyTags(models.Model): + _name = 'estate.property.tags' + _description = 'Estate Property Tags' + + name = fields.Char(string="Name",required=True) \ No newline at end of file diff --git a/estate/models/estate_property_type.py b/estate/models/estate_property_type.py new file mode 100644 index 00000000000..f8f0e80b7de --- /dev/null +++ b/estate/models/estate_property_type.py @@ -0,0 +1,8 @@ +from odoo import models, fields + + +class EstatePropertyType(models.Model): + _name = 'estate.property.type' + _description = 'Types of estate property' + + name = fields.Char(string="Name",required=True) diff --git a/estate/security/ir.model.access.csv b/estate/security/ir.model.access.csv index 32389642d4f..b5aab1d26ee 100644 --- a/estate/security/ir.model.access.csv +++ b/estate/security/ir.model.access.csv @@ -1,2 +1,5 @@ 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 +access_estate_property_type,estate.property.type,model_estate_property_type,,1,1,1,1 +access_estate_property_tag,estate.property.tag,model_estate_property_tags,,1,1,1,1 +access_estate_property_offer,estate.property.offer,model_estate_property_offers,base.group_user,1,1,1,1 diff --git a/estate/views/estate_property_views.xml b/estate/views/estate_property_views.xml index 30eb283509f..3211ff76879 100644 --- a/estate/views/estate_property_views.xml +++ b/estate/views/estate_property_views.xml @@ -7,8 +7,19 @@ list,form - + + Property Types + estate.property.type + list,form + + + + Property Tags + estate.property.tags + list,form + + - - + + + + - + @@ -36,6 +49,7 @@ + @@ -46,10 +60,10 @@ - + - estate.property.list + estate.property.form estate.property
@@ -58,6 +72,8 @@ + + @@ -73,12 +89,27 @@ + + + + + + + + + + + + + + +
- + estate.property.search estate.property @@ -97,5 +128,62 @@ + + + estate.property.type.list + estate.property.type + + + + + + + + + + + + estate.property.type.form + estate.property.type + +
+ + + + + +
+
+
+ + + + estate.property.offers.list + estate.property.offers + + + + + + + + + + + + estate.property.offers.form + estate.property.offers + +
+ + + + + + + +
+
+
\ No newline at end of file From 4a9cc26a6a73828ee483782ed803ef6a59bb8814 Mon Sep 17 00:00:00 2001 From: ancha-odoo Date: Wed, 8 Jul 2026 15:19:19 +0530 Subject: [PATCH 13/14] [LINT] estate: Fix code formatting --- estate/models/__init__.py | 8 ++++++-- estate/models/estate_property_tags.py | 6 +++--- estate/models/estate_property_type.py | 8 ++++---- 3 files changed, 13 insertions(+), 9 deletions(-) diff --git a/estate/models/__init__.py b/estate/models/__init__.py index d309a1b1d24..e34761630d1 100644 --- a/estate/models/__init__.py +++ b/estate/models/__init__.py @@ -1,2 +1,6 @@ -from . import estate_property,estate_property_type,estate_property_tags,estate_property_offers - +from . import ( + estate_property, + estate_property_type, + estate_property_tags, + estate_property_offers, +) diff --git a/estate/models/estate_property_tags.py b/estate/models/estate_property_tags.py index 526e6171ff8..e915d7fdfdd 100644 --- a/estate/models/estate_property_tags.py +++ b/estate/models/estate_property_tags.py @@ -2,7 +2,7 @@ class EstatePropertyTags(models.Model): - _name = 'estate.property.tags' - _description = 'Estate Property Tags' + _name = "estate.property.tags" + _description = "Estate Property Tags" - name = fields.Char(string="Name",required=True) \ No newline at end of file + name = fields.Char(string="Name", required=True) diff --git a/estate/models/estate_property_type.py b/estate/models/estate_property_type.py index f8f0e80b7de..d9de5ffc651 100644 --- a/estate/models/estate_property_type.py +++ b/estate/models/estate_property_type.py @@ -2,7 +2,7 @@ class EstatePropertyType(models.Model): - _name = 'estate.property.type' - _description = 'Types of estate property' - - name = fields.Char(string="Name",required=True) + _name = "estate.property.type" + _description = "Types of estate property" + + name = fields.Char(string="Name", required=True) From 513980069f5b496c31ba61ec616c079035f606c1 Mon Sep 17 00:00:00 2001 From: ancha-odoo Date: Wed, 8 Jul 2026 15:30:51 +0530 Subject: [PATCH 14/14] [IMP] estate: add groups to the security records of property tag and property offer models --- estate/security/ir.model.access.csv | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/estate/security/ir.model.access.csv b/estate/security/ir.model.access.csv index b5aab1d26ee..0a3f912bc06 100644 --- a/estate/security/ir.model.access.csv +++ b/estate/security/ir.model.access.csv @@ -1,5 +1,5 @@ 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 -access_estate_property_type,estate.property.type,model_estate_property_type,,1,1,1,1 -access_estate_property_tag,estate.property.tag,model_estate_property_tags,,1,1,1,1 +access_estate_property_type,estate.property.type,model_estate_property_type,base.group_user,1,1,1,1 +access_estate_property_tag,estate.property.tag,model_estate_property_tags,base.group_user,1,1,1,1 access_estate_property_offer,estate.property.offer,model_estate_property_offers,base.group_user,1,1,1,1