stock_lot.py 789 B

123456789101112131415161718
  1. # -*- coding: utf-8 -*-
  2. # Part of Odoo. See LICENSE file for full copyright and licensing details.
  3. from odoo import models, _
  4. from odoo.exceptions import UserError
  5. class StockLot(models.Model):
  6. _inherit = 'stock.lot'
  7. def _check_create(self):
  8. active_mo_id = self.env.context.get('active_mo_id')
  9. if active_mo_id:
  10. active_mo = self.env['mrp.production'].browse(active_mo_id)
  11. if not active_mo.picking_type_id.use_create_components_lots:
  12. raise UserError(_('You are not allowed to create or edit a lot or serial number for the components with the operation type "Manufacturing". To change this, go on the operation type and tick the box "Create New Lots/Serial Numbers for Components".'))
  13. return super()._check_create()