This question has been flagged

I installed a Magento Connector from a git repo and added the branches to the addons folder as the instructions said. I restart the server, log in to Odoo and Update Apps and don't see it. All the articles I've seen talk about a Update Modules button but I don't see that in this version (10). What am I doing wrong? 

Avatar
Discard
Best Answer

Hi Tracy,

As per your questions, I think you are missing one of below points:

(1) Make sure you have mentioned custom addons_path in odoo server config file.

(2) Check in module, there must be __manifest__.py file. May be you have downloaded module for Odoo V9 and there is __openerp__.py file.

(3) Check in  module __manifest__.py file: There are below 2 value must be True:

 - Application : True

 - Installable : True

(4) Remove below field from module __manifest__.py file if exists:

 - css : []

 - images: []

 - demo : []

 - price : --

 - currency : --

Hope this will help you to resolve this issue.

Thanks!

Avatar
Discard