123456789101112131415161718192021222324252627282930313233343536373839 |
- {
- 'name': "Demo",
- 'summary': """
- demos""",
- 'author': "ZCDM 开发",
- 'website': "http://www.zcdmdata.com",
- 'sequence': 9999,
- # Categories can be used to filter modules in modules listing
- # Check https://github.com/odoo/odoo/blob/master/openerp/addons/base/module/module_data.xml
- # for the full list
- 'category': '',
- 'version': '0.1',
- 'installable': True,
- 'application': True,
- # any module necessary for this one to work correctly
- 'depends': [
- 'web',
- 'archives',
- 'jc_supply_chain'
- ],
- # always loaded
- 'data': [
- 'security/ir.model.access.csv',
- 'views/analyse.xml',
- 'security/groups_menu.xml', # 放在最后面
- ],
- 'qweb': [ ],
- # only loaded in demonstration mode
- 'demo': [
- # 'demo/demo.xml',
- ],
- }
|