Skip to Content
Menu
This question has been flagged
4 Replies
5598 Views

Hi, am working on odoo 12 with ubuntu 18.04 running through a droplet from digitalocean, am trying to create a new module using pycharm for coding  and filezilla for connecting with odoo , when i finish coding on pycharm i copy the manifest.py file to custom addons on filezilla so that it can be read on odoo and it shows no error while transfer but the new module doesn't show on odoo.
i've tried those commands on the access console: service odoo-server stop, service odoo-server restart,service postgresql restart , service odoo-server start , but unfortunately nothing change.

thanks..

Avatar
Discard
Best Answer

Hi,

 

Please check below url

https://levelup.gitconnected.com/creating-a-new-application-in-odoo-12-d05991bf05b0

https://www.cybrosys.com/blog/how-to-create-module-in-odoo12


Thanks

Aswini iWesabe


Avatar
Discard
Best Answer

Hello Madonna, 

Firstly make sure that __manifest__.py file should be present inside your custom module. 
for example your module name is ABC then __manifest__.py should be present inside ABC directory. 

Second after placing the module; you need to enable the developer mode; then inside apps menu you will get an option "Update App List". click on this option to show your module in app list. 

https://prnt.sc/rj623l


Also make sure __init__.py also present inside your module

because __manifest__.py stores all the information of the module and helps to show module in an App list

Thanks

Anisha Bahukhandi

Technical Content Writer

Webkul Softwares

Avatar
Discard
Best Answer

Hi,

Make sure that not only the __manifest__.py but the entire custom module is moved to filezilla. And ensure that your custom add-on path is specified in the .conf file.
Your module should be in a correct structure including the __init__.py file. After restarting the service try to update the app list from Apps.

Refer Odoo official documentation

https://www.odoo.com/documentation/13.0/howtos/backend.html

Also refer following blogs

https://www.cybrosys.com/blog/how-to-create-module-in-odoo12

https://www.cybrosys.com/blog/how-to-install-custom-modules-in-odoo

Regards

Avatar
Discard