I'm new to Odoo and have been learning to build a module using the documentation here: https://www.odoo.com/documentation/10.0/howtos/backend.html#build-an-odoo-module . My question is, how do I access this module from the front end? It is the addons folder with all of the downloaded apps. Logged in as the administrator with the developer-mode activated, I can't see any way to add modules. If I look at the Apps page I see "Update Apps List", but I am not sure if this is the same as modules, and either way it has no effect.
Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:
- CRM
- e-Commerce
- Accounting
- Inventory
- PoS
- Project management
- MRP
This question has been flagged
Make sure the created custom module is present in the addons folder.( eg:/opt/odoo10/odoo/addons in Ubuntu). Now start the server from the terminal using the following command:
./odoo-bin
then login as admin user and activate developer mode. Then goto the 'Apps' menu and click "Update apps list" option.
Then remove the "Apps" filter from the filter box and verify if your module is appearing. If yes Go ahead and install it.
Note: Make sure you have the below line in your __manifest__.py file. The module created from ./odoo-bin scaffold <module name> <where to put it> won't have these lines in its __manifest__.py. So check that also.
'demo': [ 'demo/demo.xml', ],
'installable': True,
'application': False,
'auto_install': False,
'qweb': [], }
Hai
\ how to install custom modules
I think this will help you more.
That worked, thank you so much!
Welcome
Enjoying the discussion? Don't just read, join in!
Create an account today to enjoy exclusive features and engage with our awesome community!
Sign up