Availability |
Odoo Online
Odoo.sh
On Premise
|
Lines of code | 27 |
Technical Name |
custom_addon_path_display |
License | AGPL-3 |
Community
Enterprise
Odoo.sh
Addon Path in Odoo
The Addon Path in Odoo refers to the file system directory where an Odoo module (addon) is physically stored. It is essential for locating the source code of a module and verifying its installation.
How to Check Addon Path
To find the Addon Path for a specific module, follow these steps:
- Go to the Apps menu in your Odoo instance.
- Locate the module you want to inspect and open its form view.
- Look for the Addon Path field, which will display the directory where the module is stored (e.g.,
/opt/odoo/addons/sale_management
).
If the Addon Path field is not visible, you can implement it programmatically using a custom Odoo module.
Example of Addon Path
Suppose you have installed the sale_management module. Its Addon Path might look like this:
/opt/odoo/addons/sale_management
This indicates that the sale_management module is stored in the /opt/odoo/addons
directory on the server.

Please log in to comment on this module