1
0
forked from Mapan/odoo17e
odoo17e-kedaikipas58/addons/stock_enterprise/__manifest__.py
2024-12-10 09:04:09 +07:00

24 lines
693 B
Python

# -*- coding: utf-8 -*-
# Part of Odoo. See LICENSE file for full copyright and licensing details.
{
'name': "Stock enterprise",
'version': "1.0",
'category': 'Inventory/Inventory',
'summary': "Advanced features for Stock",
'description': """
Contains the enterprise views for Stock management
""",
'depends': ['stock', 'web_cohort', 'web_map'],
'data': [
'security/ir.model.access.csv',
'security/stock_enterprise_security.xml',
'views/stock_move_views.xml',
'views/stock_picking_map_views.xml',
'report/stock_report_views.xml',
],
'installable': True,
'auto_install': ['stock'],
'license': 'OEEL-1',
}