Files
test/sf_tool_management/__manifest__.py
2024-01-05 14:10:43 +08:00

40 lines
1013 B
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/menu_view.xml',
'views/tool_material_search.xml',
],
'demo': [
],
'post_init_hook': '_post_install',
'assets': {
'web.assets_qweb': [
],
'web.assets_backend': [
'sf_tool_management/static/src/change.scss'
]
},
'license': 'LGPL-3',
'installable': True,
'application': False,
'auto_install': False,
}