Files
test/sf_warehouse/__manifest__.py
2023-12-17 10:48:51 +08:00

41 lines
1.1 KiB
Python
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# -*- 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', 'web', 'sf_base'],
'data': [
'security/sf_stock_security.xml',
'security/ir.model.access.csv',
'views/view.xml',
'views/shelf_location.xml',
'views/change_stock_move_views.xml',
],
'demo': [
],
'assets': {
'web.assets_qweb': [
],
'web.assets_backend': [
# 'sf_warehouse/static/src/js/vanilla-masker.min.js',
'sf_warehouse/static/src/css/kanban_color_change.scss',
'sf_warehouse/static/src/js/custom_kanban_controller.js',
'sf_warehouse/static/src/xml/custom_kanban_controller.xml',
]
},
'license': 'LGPL-3',
'installable': True,
'application': False,
'auto_install': False,
}