Why is Odu not picking up my module?

Ive added the module directory to / home / deploy / host -addons. Running Odoo definitely knows about this:

2014-09-08 10: 50: 08.533 5198 INFO? openerp: addons paths: ['/ home / expand / odoo / local / data / add-ons / 8.0', and '/ home / expand / odoo/assemblies/8.0/OpenERP/ add-ons', u' / home / deploy / odoo / build / 8.0 / addons', u '/ home / deploy / host-addons']

There is nothing strange in the add-ons folder:

$ ls -dl /home/deploy/host-addons/**/* -rw-r--r-- 1 vagrant vagrant 24 Sep 8 03:30 /home/deploy/host-addons/test/__init__.py -rw-r--r-- 1 vagrant vagrant 275 Sep 8 03:31 /home/deploy/host-addons/test/__openerp__.py 

The contents are shown in the following example: http://odoo-80.readthedocs.org/en/latest/howtos/website.html

/ home / expand / host add-ons / test / __ __ INIT. RU

 __author__ = 'kitsunde' 

/ home / deploy / host add-ons / test / __ __ OpenERP. RU

 # -*- coding: utf-8 -*- { # The human-readable name of your module, displayed in the interface 'name': "Academy", # A more extensive description 'description': """ """, # Which modules must be installed for this one to work 'depends': ['base'], } 

Why doesn't Odu pick up an addon?

+7
python openerp openerp-8
source share
2 answers

Restarting the server or just clicking on the update does not update the list of installed modules. You should go to Settings → Users → Enable Specifications. Then a new option will appear that says “Update the list of modules” in the “Module” category on the left of the settings page.

enter image description here

+19
source share

I have a similar problem with Odoo v9, I'm trying to use the @ Kit-Sunde method, but I don’t see the Specifications box, but I found a way to show all the menus in this link , try the Odoo URL with the debug parameter as shown below:

127.0.0.1:8069/web? debugging

In this mood, you can see all the menus, and then go to settings > apps , and then click Refresh application list from the left side panel, now you can search for your module and not specify :)

+1
source share

All Articles