合并企业版代码(未测试,先提交到测试分支)
This commit is contained in:
37
quality/__manifest__.py
Normal file
37
quality/__manifest__.py
Normal file
@@ -0,0 +1,37 @@
|
||||
|
||||
# -*- encoding: utf-8 -*-
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
{
|
||||
'name': 'Quality Base',
|
||||
'version': '1.0',
|
||||
'category': 'Manufacturing/Quality',
|
||||
'sequence': 50,
|
||||
'summary': 'Basic Feature for Quality',
|
||||
'depends': ['stock'],
|
||||
'description': """
|
||||
Quality Base
|
||||
===============
|
||||
* Define quality points that will generate quality checks on pickings,
|
||||
manufacturing orders or work orders (quality_mrp)
|
||||
* Quality alerts can be created independently or related to quality checks
|
||||
* Possibility to add a measure to the quality check with a min/max tolerance
|
||||
* Define your stages for the quality alerts
|
||||
""",
|
||||
'data': [
|
||||
'security/quality.xml',
|
||||
'security/ir.model.access.csv',
|
||||
'data/mail_alias_data.xml',
|
||||
'data/quality_data.xml',
|
||||
'views/quality_views.xml',
|
||||
],
|
||||
'license': 'OEEL-1',
|
||||
'assets': {
|
||||
'web.assets_backend': [
|
||||
'quality/static/src/**/*',
|
||||
],
|
||||
'web.qunit_suite_tests': [
|
||||
'quality/static/tests/*.js',
|
||||
],
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user