From 3494f5d21108d1fb56f6c9f541f1ba0ba2c56c3b Mon Sep 17 00:00:00 2001 From: shadi-odoo Date: Fri, 3 Jul 2026 16:10:25 +0530 Subject: [PATCH 1/2] [ADD] estate: add new module Provide the required manifest metadata so the module can be recognized and installed correctly by Odoo. The metadata also ensures the module is properly categorized and ready for future development. --- 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..8a02e81f661 --- /dev/null +++ b/estate/__manifest__.py @@ -0,0 +1,6 @@ +{ + "name":"Real Estate", + "author":"Disha Shah(SHADI)", + "description":"""Training module for real estate""", + "category":"tutorials" +} \ No newline at end of file From f22996195e04033f790876ec2f4392eb1a578b03 Mon Sep 17 00:00:00 2001 From: shadi-odoo Date: Fri, 3 Jul 2026 16:32:08 +0530 Subject: [PATCH 2/2] [ADD] estate: add manifest configuration Add the remaining manifest metadata required for the module. Include the module version, base dependency, and application settings so the module can be installed and recognized as an Odoo application. --- estate/__manifest__.py | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) diff --git a/estate/__manifest__.py b/estate/__manifest__.py index 8a02e81f661..3caededdec8 100644 --- a/estate/__manifest__.py +++ b/estate/__manifest__.py @@ -1,6 +1,11 @@ { - "name":"Real Estate", - "author":"Disha Shah(SHADI)", - "description":"""Training module for real estate""", - "category":"tutorials" -} \ No newline at end of file + 'name':'Real Estate', + 'version':'1.0', + 'category':'tutorials', + 'depends':['base'], + 'installable':True, + 'application':True, + 'author':'Disha Shah(SHADI)', + 'description':"""Training module for real estate""", + 'license':'LPGL-3', +}