From 1f9a58cc56d632d51b949d2a289bd3c54164100e Mon Sep 17 00:00:00 2001 From: dhsha-odoo Date: Fri, 8 May 2026 15:43:52 +0530 Subject: [PATCH 1/3] [ADD] real_estate: added real_estate module Added the basic structure for the new module by creating the and files. --- estate/__init__.py | 0 estate/__manifest__.py | 6 ++++++ 2 files changed, 6 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..c5cfc9f4d86 --- /dev/null +++ b/estate/__manifest__.py @@ -0,0 +1,6 @@ +# __manifest__.py + +{ + 'name': 'estate', + 'version': '1.0', +} \ No newline at end of file From a68a6e4e6ec90c25765a6ebc7503650d66219a86 Mon Sep 17 00:00:00 2001 From: dhsha-odoo Date: Fri, 8 May 2026 18:55:36 +0530 Subject: [PATCH 2/3] [IMP] real_estate: update module manifest metadata --- estate/__manifest__.py | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/estate/__manifest__.py b/estate/__manifest__.py index c5cfc9f4d86..b5b4a9d9eb6 100644 --- a/estate/__manifest__.py +++ b/estate/__manifest__.py @@ -1,6 +1,12 @@ -# __manifest__.py - { - 'name': 'estate', - 'version': '1.0', + "name": "estate", + "version": "1.0", + "summary": "Estate management", + "description": "Estate management", + "author": "Odoo S.A.", + "website": "https://www.odoo.com/", + "category": "Uncategorized", # Module category in Odoo apps + "depends": ["base"], # Required dependency modules + "installable": True, # Allows module installation + "application": True, # Shows as main application } \ No newline at end of file From f88f23996eeeec0208807af53d7503e4d320112e Mon Sep 17 00:00:00 2001 From: dhsha-odoo Date: Mon, 11 May 2026 18:48:12 +0530 Subject: [PATCH 3/3] [ADD] real_estate: add ORM model EstateProperty Created a basic Odoo model with fields: title, description, postcode, expected price, bedrooms, active. --- estate/__init__.py | 1 + estate/models/__init__.py | 1 + estate/models/estate_property.py | 13 +++++++++++++ 3 files changed, 15 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..9a7e03eded3 100644 --- a/estate/__init__.py +++ b/estate/__init__.py @@ -0,0 +1 @@ +from . import models \ No newline at end of file diff --git a/estate/models/__init__.py b/estate/models/__init__.py new file mode 100644 index 00000000000..f4c8fd6db6d --- /dev/null +++ b/estate/models/__init__.py @@ -0,0 +1 @@ +from . import estate_property \ No newline at end of file diff --git a/estate/models/estate_property.py b/estate/models/estate_property.py new file mode 100644 index 00000000000..868ab64b1a6 --- /dev/null +++ b/estate/models/estate_property.py @@ -0,0 +1,13 @@ +from odoo import fields, models + + +class EstateProperty(models.Model): + _name = "estate.property" + _description = "Real Estate Property" + + name = fields.Char(string="Title", required=True) + description = fields.Text(string="Description") + postcode = fields.Char(string="Postcode") + expected_price = fields.Float() + bedrooms = fields.Integer() + active = fields.Boolean(default=True) \ No newline at end of file