ok
This commit is contained in:
parent
2a95e71a39
commit
c12a1742d0
23
addons/foo/__manifest__.py
Normal file
23
addons/foo/__manifest__.py
Normal file
@ -0,0 +1,23 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
# https://www.odoo.com/documentation/18.0/developer/reference/backend/module.html
|
||||
{
|
||||
'name': 'Foo',
|
||||
'summary': """Foo custom addon""",
|
||||
'description': """Foo module description""",
|
||||
'author': 'minhng.info',
|
||||
'maintainer': 'minhng.info',
|
||||
'website': 'https://minhng.info',
|
||||
'category': 'Uncategorized', # https://github.com/odoo/odoo/blob/18.0/odoo/addons/base/data/ir_module_category_data.xml
|
||||
'version': '0.1',
|
||||
'depends': [
|
||||
'sale',
|
||||
'hr',
|
||||
],
|
||||
'data': [],
|
||||
'demo': [],
|
||||
'css': [],
|
||||
# 'qweb': ['static/src/xml/*.xml'],
|
||||
'installable': True,
|
||||
'auto_install': False,
|
||||
'application': True,
|
||||
}
|
||||
Loading…
Reference in New Issue
Block a user