43 lines
1.1 KiB
Python
43 lines
1.1 KiB
Python
# -*- coding: utf-8 -*-
|
|
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
|
{
|
|
'name': '机企猫智能工厂 对接机床',
|
|
'version': '1.0',
|
|
'summary': 'sf_machine_connect',
|
|
'sequence': 10,
|
|
'description': """
|
|
这是一个连接机床的模块
|
|
====================
|
|
""",
|
|
'category': 'sf',
|
|
'author': 'jikimo',
|
|
'website': 'https://sf.cs.jikimo.com',
|
|
'depends': ['sf_base', 'sf_manufacturing', 'barcodes', ],
|
|
'data': [
|
|
# 定义权限组放在最上面
|
|
# 权限组
|
|
'security/ir.model.access.csv',
|
|
'wizard/up_select.xml',
|
|
'views/default_delivery.xml',
|
|
'views/ftp_button.xml',
|
|
|
|
'views/compensation.xml',
|
|
|
|
'views/SfWorkOrderBarcodes.xml',
|
|
'views/WorkCenterBarcodes.xml',
|
|
'views/Stock_picking_Barcodes.xml',
|
|
'views/machine_monitor.xml',
|
|
'views/machine_info_present.xml',
|
|
'views/delivery_record.xml',
|
|
|
|
],
|
|
|
|
'assets': {
|
|
},
|
|
|
|
'installable': True,
|
|
'application': True,
|
|
# 'auto_install': False,
|
|
'license': 'LGPL-3',
|
|
}
|