Files
stock-logistics-warehouse/stock_location_tray/__manifest__.py
Guewen Baconnier 4ad48463c2 Add stock_location_tray
Extracted from stock_vertical_lift
(https://github.com/OCA/stock-logistics-warehouse/pull/633)

Add tray types to stock locations, automatically generates
sub-locations. Present them nicely with a custom widget.
2021-08-17 11:54:32 +07:00

27 lines
813 B
Python

# Copyright 2019 Camptocamp SA
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
{
'name': 'Location Trays',
'summary': 'Organize a location as a matrix of cells',
'version': '12.0.1.0.0',
'category': 'Stock',
'author': 'Camptocamp, Odoo Community Association (OCA)',
'license': 'AGPL-3',
'depends': [
'stock',
'base_sparse_field',
],
'website': 'https://github.com/OCA/stock-logistics-warehouse',
'demo': [
'demo/stock_location_tray_type_demo.xml',
'demo/stock_location_demo.xml',
],
'data': [
'views/stock_location_views.xml',
'views/stock_location_tray_type_views.xml',
'views/stock_location_tray_templates.xml',
'security/ir.model.access.csv',
],
'installable': True,
}