继承原生库存模块,为位置模型增加库区库位等字段

This commit is contained in:
mgw
2023-07-04 20:05:59 +08:00
parent 4199a86264
commit 0d7c269c3b
7 changed files with 221 additions and 0 deletions

View File

@@ -0,0 +1,35 @@
# -*- coding: utf-8 -*-
# Part of Odoo. See LICENSE file for full copyright and licensing details.
{
'name': '机企猫智能工厂 库存管理',
'version': '1.0',
'summary': '智能工厂库存管理',
'sequence': 1,
'description': """
在本模块升级了odoo原生的库存模块
""",
'category': 'sf',
'website': 'https://www.sf.jikimo.com',
'depends': ['stock', ],
'data': [
#'security/group_security.xml',
# 'security/ir.model.access.csv',
'views/view.xml',
],
'demo': [
],
'assets': {
'web.assets_qweb': [
],
'web.assets_backend':[
# 'sf_tool_management/static/src/change.scss'
]
},
'license': 'LGPL-3',
'installable': True,
'application': False,
'auto_install': False,
}