mirror of
https://github.com/OCA/stock-logistics-warehouse.git
synced 2025-01-21 14:27:28 +02:00
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.
27 lines
813 B
Python
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,
|
|
}
|