Hello,
I would like to add module real Estate in odoo apps, there is 3 module in this app, can i integrate them in the same repository ?
Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:
- CRM
- e-Commerce
- Accounting
- Inventory
- PoS
- Project
- MRP
This question has been flagged
Hi,
Yes, you can integrate all three Real Estate modules into the same repository. To do this, create a main folder in your repository, then add each module as a separate subfolder within it. Place the respective module files in their corresponding subfolders, ensuring each has the proper Odoo module structure. Finally, commit and push the entire structure to your Git repository. This setup keeps all related modules organized in one place, making them easier to manage and deploy together.
Hope this helps.
Yes, you can integrate multiple Odoo modules (such as Real Estate modules) into the same repository. Here's how:
1. Organize the Repository :
- Place all modules in a single directory, such as 'custom_addons', with each module in its own folder ('estate_module_1 ', 'estate_module_2 ', etc.).
2. Ensure Module Independence :
- Each module should have its own '__manifest__.py ', '__init__.py ', models, and views. This ensures that each module operates independently while residing in the same repository.
3. Handle Dependencies :
- If any modules depend on others, declare these dependencies in the '__manifest__.py ' file under the 'depends ' key. This ensures proper loading and integration.
4. Configure Odoo :
- Add the custom directory ('custom_addons ') to your Odoo configuration file ( 'odoo.conf ') in the 'addons_path '.
5. Install and Manage :
- Once structured, install all modules through the Odoo apps interface and manage them easily within the same repository.
This approach ensures modular organization, easy dependency management, and seamless deployment of multiple Real Estate modules in a single repository.
Hi,
You can add all the 3 apps into your repository and register the repository in the odoo apps page, once you scan your repository, all the 3 apps will be listed in the odoo store and 3 apps
And if 3rd app depends on 2nd and 1st, when you download the 3rd app, all the 3 apps will be downloaded from the store
For example, if you download this app from the odoo store: https://apps.odoo.com/apps/modules/17.0/om_account_accountant
all of its dependent app in the repository will also be downloaded:
Thanks
Hello,
Can you help me pls. when i published the module, there is 2 app published separatly not 1.
Enjoying the discussion? Don't just read, join in!
Create an account today to enjoy exclusive features and engage with our awesome community!
Sign upRelated Posts | Replies | Views | Activity | |
---|---|---|---|---|
|
1
Jan 25
|
753 | ||
|
1
Nov 24
|
954 | ||
|
2
Sep 24
|
738 | ||
|
0
Aug 24
|
1006 | ||
|
1
Aug 24
|
733 |
Thank you so much.