合并企业版代码(未测试,先提交到测试分支)

This commit is contained in:
qihao.gong@jikimo.com
2023-04-14 17:42:23 +08:00
parent 7a7b3d7126
commit d28525526a
1300 changed files with 513579 additions and 5426 deletions

37
quality/__manifest__.py Normal file
View 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',
],
}
}