stock_restrict_source_location/__manifest__.py
2026-02-13 14:37:52 +07:00

24 lines
804 B
Python

{
'name': 'Restrict Stock Pick Source Location',
'version': '19.0.1.0.0',
'summary': 'Restrict stock picking to exact source location',
'description': """
This module restricts the selection of source location/quant in stock moves to strictly match
the source location of the picking, preventing selection from child locations.
""",
'author': 'Antigravity',
'category': 'Inventory/Inventory',
'depends': ['stock', 'stock_picking_type_m2m', 'mrp'],
'data': [
'views/stock_move_line_views.xml',
],
'assets': {
'web.assets_backend': [
'stock_restrict_source_location/static/src/js/stock_move_line_x2_many_field_patch.js',
],
},
'installable': True,
'application': False,
'license': 'LGPL-3',
}