增加质检模块
This commit is contained in:
29
quality_mrp_workorder/__manifest__.py
Normal file
29
quality_mrp_workorder/__manifest__.py
Normal file
@@ -0,0 +1,29 @@
|
||||
# -*- encoding: utf-8 -*-
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
{
|
||||
'name': 'MRP features for Quality Control',
|
||||
'version': '1.0',
|
||||
'category': 'Manufacturing/Quality',
|
||||
'sequence': 50,
|
||||
'summary': 'Quality Management with MRP',
|
||||
'depends': ['quality_control', 'mrp_workorder', 'barcodes'],
|
||||
'description': """
|
||||
Adds Quality Control to workorders.
|
||||
""",
|
||||
"data": [
|
||||
'views/quality_views.xml',
|
||||
'views/mrp_workorder_views.xml',
|
||||
'report/worksheet_custom_report_templates.xml',
|
||||
],
|
||||
"demo": [
|
||||
'data/mrp_workorder_demo.xml'
|
||||
],
|
||||
'assets': {
|
||||
'web.assets_backend': [
|
||||
'quality_mrp_workorder/static/src/**/*.xml',
|
||||
],
|
||||
},
|
||||
'auto_install': True,
|
||||
'license': 'OEEL-1',
|
||||
}
|
||||
Reference in New Issue
Block a user