mirror of
https://github.com/bringout/oca-ocb-sale.git
synced 2026-04-26 18:52:02 +02:00
9 lines
257 B
Python
9 lines
257 B
Python
from odoo import fields, models
|
|
|
|
|
|
class StockReference(models.Model):
|
|
_inherit = 'stock.reference'
|
|
|
|
pos_order_ids = fields.Many2many(
|
|
'pos.order', 'stock_reference_pos_order_rel', 'reference_id',
|
|
'pos_order_id', string="PoS Orders")
|