From f8bc4ff155bc7051eadf86525e9697d7af27985b Mon Sep 17 00:00:00 2001 From: akya-odoo Date: Thu, 1 Aug 2024 14:55:19 +0530 Subject: [PATCH] [ADD] estate: Added new real estate property management module The new module includes: - Model: estate.property with fields such as name, description, selling_price, availability_date, bedrooms, state, and active. - Views: Tree and form views for managing estate properties. - Security: Access rights defined in ir.model.access.csv. --- estate/__manifest__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/estate/__manifest__.py b/estate/__manifest__.py index f012fb044c..bead822724 100644 --- a/estate/__manifest__.py +++ b/estate/__manifest__.py @@ -12,5 +12,5 @@ ], 'installable': True, 'application': True, - 'license':'AGPL-3' + 'license': 'AGPL-3' }