In Odoo module is contained in its own directory within the server/bin/addons
directory in the server installation.
profile_module name, in which we put an empty __init__.py file (as every directory Python imports must contain .py file like in below code -
1- __init__.py
2- __openerp__.py
3- idea.py
4-model.py
5 addons/
6 - idea/
7-demo/
8- i18n/
9- report/
10- security/
11- view/
12- wizard/
13- workflow/
14- __init__.py
15- __openerp__.py
16- idea.py
Note- You can declare your own addons directory in the configuration file of OpenERP using the addons_path option.
0 Comment(s)