39 lines
1.1 KiB
Python
39 lines
1.1 KiB
Python
# -*- coding: utf-8 -*-
|
|
{
|
|
'name': "jikimo_system_order",
|
|
|
|
'summary': """
|
|
系统工单""",
|
|
|
|
'description': """
|
|
用于处理针对系统的工作任务;
|
|
员工可以通过系统工单发起申请,由维护人员处理以后,填写处理结果。
|
|
""",
|
|
|
|
'author': "机企猫",
|
|
'website': "http://www.jikimo.com",
|
|
|
|
# Categories can be used to filter modules in modules listing
|
|
# Check https://github.com/odoo/odoo/blob/master/odoo/addons/base/module/module_data.xml
|
|
# for the full list
|
|
'category': 'Uncategorized',
|
|
'version': '0.1',
|
|
|
|
# any module necessary for this one to work correctly
|
|
'depends': ['base','mail'],
|
|
|
|
# always loaded
|
|
'data': [
|
|
'security/account_security.xml',
|
|
'security/ir.model.access.csv',
|
|
'wizard/order_wizard.xml',
|
|
'views/notice_user_config.xml',
|
|
'views/yizuo_system_order_view.xml',
|
|
'views/work_order_number.xml',
|
|
'views/res_config_settings_views.xml',
|
|
],
|
|
# only loaded in demonstration mode
|
|
'demo': [
|
|
'demo/demo.xml',
|
|
],
|
|
} |