22 lines
803 B
Python
22 lines
803 B
Python
{
|
|
'name': 'Subcontract Generate Lot',
|
|
'version': '1.0',
|
|
'category': 'Inventory/Manufacturing',
|
|
'summary': 'Auto-generate lot numbers for subcontract moves',
|
|
'description': """
|
|
Auto-generates lot numbers for subcontract moves using the standard product lot sequence.
|
|
This functionality was extracted from the legacy 'product_lot_sequence_per_product' module
|
|
to coexist with Odoo 19's native lot per product feature.
|
|
""",
|
|
'depends': ['base', 'stock', 'mrp', 'mrp_subcontracting'],
|
|
'data': [
|
|
'security/ir.model.access.csv',
|
|
'views/stock_picking_views.xml',
|
|
'views/stock_move_views.xml',
|
|
'wizard/subcontract_lot_generator_views.xml',
|
|
],
|
|
'installable': True,
|
|
'application': False,
|
|
'license': 'LGPL-3',
|
|
}
|