This question has been flagged
1 Reply
2118 Views

how to prevent the relocation without serial number on the articles

Avatar
Discard
Best Answer

You inherit class stock_transfer_details_items(), from module stock, and replace:

lot_id = fields.Many2one('stock.production.lot', 'Lot/Serial Number')

by

lot_id = fields.Many2one('stock.production.lot', 'Lot/Serial Number', required=True)

Avatar
Discard