oca-ocb-mrp/odoo-bringout-oca-ocb-mrp/mrp/models/stock_reference.py
Ernad Husremovic 6e65e8c877 19.0 vanilla
2026-03-09 09:31:47 +01:00

9 lines
266 B
Python

from odoo import fields, models
class StockReference(models.Model):
_inherit = 'stock.reference'
production_ids = fields.Many2many(
'mrp.production', 'stock_reference_production_rel', 'reference_id',
'production_id', string="Productions")