Reputation: 11
I'm new to Odoo and I've created a new folder "custom_addons" in Odoo folder. Inside of that, I've created a folder with the name of my module "gen_doc" with the files __init__.py
and __manifest__.py
. There is my code:
manifest.py :
# -*- coding: utf-8 -*-
# Part of Odoo. See LICENSE file for full copyright and licensing details.
{
'name': 'Document Generator',
'version': '1.0',
'summary': 'Employee Document Generator',
'sequence': -50,
'description': """Employee Document Generator""",
'author': 'Mendim',
'company': 'HEC',
'website':'',
'license': 'LGPL-3',
'category': 'Management Employee',
'depends':[
],
'data':[
],
'application': True,
}
I have added the custom_addons path in the conf file but when I restart Odoo and update the list I'm not seeing my module. It's like nothing is happening. Thank you in advance.
Upvotes: 0
Views: 499
Reputation: 341
For adding a new module you should do these steps:
Upvotes: 2