34 lines
895 B
Python
34 lines
895 B
Python
# -*- coding: utf-8 -*-
|
|
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
|
{
|
|
'name': '机企猫智能工厂 采购到货通知',
|
|
'version': '1.1',
|
|
'summary': '智能工厂计划管理',
|
|
'sequence': 1,
|
|
'description': """
|
|
在本模块,支持采购到货通知
|
|
""",
|
|
'category': 'sf',
|
|
'website': 'https://www.sf.jikimo.com',
|
|
'depends': ['jikimo_purchase_request', 'quality_control', 'sf_manufacturing'],
|
|
'data': [
|
|
'views/product_category.xml',
|
|
'views/purchase_view.xml',
|
|
'wizard/purchase_confirm_wizard_view.xml',
|
|
'security/ir.model.access.csv',
|
|
],
|
|
'demo': [
|
|
],
|
|
'assets': {
|
|
'web.assets_qweb': [
|
|
],
|
|
'web.assets_backend': [
|
|
|
|
]
|
|
},
|
|
'license': 'LGPL-3',
|
|
'installable': True,
|
|
'application': False,
|
|
'auto_install': False,
|
|
}
|