35 lines
966 B
Python
35 lines
966 B
Python
# -*- coding: utf-8 -*-
|
|
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
|
{
|
|
'name': '机企猫智能工厂 需求计划',
|
|
'version': '1.0',
|
|
'summary': '智能工厂计划管理',
|
|
'sequence': 1,
|
|
'description': """
|
|
在本模块,支持齐套检查与下达生产
|
|
""",
|
|
'category': 'sf',
|
|
'website': 'https://www.sf.jikimo.com',
|
|
'depends': ['sf_plan','jikimo_printing'],
|
|
'data': [
|
|
'security/ir.model.access.csv',
|
|
'views/demand_plan_info.xml.xml',
|
|
'views/demand_plan.xml',
|
|
'wizard/sf_demand_plan_print_wizard_view.xml',
|
|
],
|
|
'demo': [
|
|
],
|
|
'assets': {
|
|
'web.assets_qweb': [
|
|
],
|
|
'web.assets_backend': [
|
|
'sf_demand_plan/static/src/scss/style.css',
|
|
'sf_demand_plan/static/src/js/print_demand.js',
|
|
]
|
|
},
|
|
'license': 'LGPL-3',
|
|
'installable': True,
|
|
'application': False,
|
|
'auto_install': False,
|
|
}
|