Files
test/sf_bpm_api/__manifest__.py
jinling.yang c3a7a6c4d6 工序增加唯一编码,是否重复,排序;用xml代码生成CNC加工的标准工序;
产品增加模型类型对象和加工的面,包括胚料增加的尺寸
2022-10-25 17:30:13 +08:00

30 lines
784 B
Python

# -*- coding: utf-8 -*-
# Part of Odoo. See LICENSE file for full copyright and licensing details.
{
'name': '机企猫智能工厂 API模块',
'version': '1.0',
'summary': '智能工厂API模块',
'sequence': 1,
'description': """
在本模块,接收业务平台订单
""",
'category': 'sf',
'website': 'https://www.sf.cs.jikimo.com',
'depends': ['sale', 'sf_base', 'mrp'],
'data': [
'security/group_security.xml',
'security/ir.model.access.csv',
'data/product_data.xml',
'data/process_data.xml',
'views/product_template_view.xml',
'views/sale_order_view.xml'
],
'demo': [
],
'qweb': [
],
'installable': True,
'application': False,
'auto_install': False,
}