40 lines
1.0 KiB
Python
40 lines
1.0 KiB
Python
# -*- coding: utf-8 -*-
|
|
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
|
{
|
|
'name': '机企猫智能工厂 刀具管理',
|
|
'version': '1.0',
|
|
'summary': '智能工厂刀具管理',
|
|
'sequence': 1,
|
|
'description': """
|
|
在本模块,定义了主要的角色、菜单、基础业务对象
|
|
""",
|
|
'category': 'sf',
|
|
'website': 'https://www.sf.jikimo.com',
|
|
'depends': ['sf_manufacturing'],
|
|
'data': [
|
|
'security/group_security.xml',
|
|
'security/ir.model.access.csv',
|
|
'wizard/wizard_view.xml',
|
|
'views/tool_base_views.xml',
|
|
'views/mrp_workcenter_views.xml',
|
|
'views/sf_maintenance_equipment.xml',
|
|
'views/menu_view.xml',
|
|
'views/tool_material_search.xml',
|
|
],
|
|
'demo': [
|
|
],
|
|
'post_init_hook': '_post_install',
|
|
'assets': {
|
|
|
|
'web.assets_qweb': [
|
|
],
|
|
'web.assets_backend': [
|
|
]
|
|
|
|
},
|
|
'license': 'LGPL-3',
|
|
'installable': True,
|
|
'application': False,
|
|
'auto_install': False,
|
|
}
|