mirror of
https://github.com/bringout/oca-ocb-mrp.git
synced 2026-04-21 13:12:06 +02:00
9 lines
266 B
Python
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")
|