Skip to Content
Menu
Musisz się zarejestrować, aby móc wchodzić w interakcje z tą społecznością.
To pytanie dostało ostrzeżenie
1732 Widoki

I want to pass the added data to this product table or to another one2many field in which automatically shows the data already entered in the table
 productt_ids
class DiningRoom(models.Model):

    _name = 'dining.room'
    _order = 'create_date desc'

    

  product_ids = fields.One2many('dining.room.order', 'order_id', string='Productos', required=True, copy=True, store=True)
    
Awatar
Odrzuć