45 lines
1.3 KiB
Python
45 lines
1.3 KiB
Python
# -*- coding: utf-8 -*-
|
||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||
{
|
||
'name': '机企猫智能工厂 质量管理',
|
||
'version': '1.0',
|
||
'summary': 'sf_quality',
|
||
'sequence': 16,
|
||
'description': """
|
||
这是一个用于机企猫质量管理的模块
|
||
====================
|
||
""",
|
||
'category': 'sf',
|
||
'author': 'jikimo',
|
||
'website': 'https://sf.cs.jikimo.com',
|
||
# 此处依赖sf_manufacturing是因为我要重写其中的一个字段operation_id的string,故需要sf_manufacturing先安装
|
||
'depends': ['quality_control', 'web_widget_model_viewer', 'sf_manufacturing','jikimo_attachment_viewer', 'jikimo_confirm_dialog'],
|
||
'data': [
|
||
'security/ir.model.access.csv',
|
||
'data/check_standards.xml',
|
||
'data/documents_data.xml',
|
||
'data/insepection_report_template.xml',
|
||
'data/report_actions.xml',
|
||
'views/view.xml',
|
||
'views/quality_cnc_test_view.xml',
|
||
'views/mrp_workorder.xml',
|
||
'views/quality_check_view.xml',
|
||
'views/quality_company.xml',
|
||
'wizard/check_picking_wizard_view.xml',
|
||
],
|
||
|
||
'assets': {
|
||
|
||
'web.assets_qweb': [
|
||
],
|
||
'web.assets_backend': [
|
||
],
|
||
|
||
},
|
||
|
||
'installable': True,
|
||
'application': True,
|
||
# 'auto_install': False,
|
||
'license': 'LGPL-3',
|
||
}
|