Files
stock-logistics-warehouse/stock_putaway_method/__manifest__.py
Alexandre Saunier 941162ee04 Putaway strategy: add module to restore the method field
The method field was removed in module 'stock' of Odoo 11. See
f2926823e8

Since the field is used by OCA modules such as stock_putaway_product
(eg. to add a 'per_product' method), the new stock_putaway_method module
is added to restore this feature if needed.
2021-07-06 16:42:53 -07:00

21 lines
570 B
Python

# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
{
'name': 'Putaway strategy method',
'summary': 'Add the putaway strategy method back, '
'removed from the stock module in Odoo 11',
'version': '11.0.1.0.0',
'category': 'Inventory',
'website': 'https://www.camptocamp.com',
'author': 'Camptocamp SA, '
'Odoo Community Association (OCA)',
'license': 'AGPL-3',
'depends': [
'product',
'stock'
],
'data': [
'views/product_strategy_views.xml'
],
'demo': []
}