İçereği Atla
Menü
Bu soru işaretlendi
1 Cevapla
4874 Görünümler

I want to read the one2many field values (Child table) in create method. while I am trying it returns the table object. unable to read the one2many field value through looping  

Avatar
Vazgeç
En İyi Yanıt

Hello Yognandam,

You can access the values for the one2many field after the super call of the create method.

For example, if we want to access the values of order_line(one2many) in the create method of Sale Order then we can write the super method like this:

@api.model

def create(self, vals):

    res = super(SaleOrder, self).create(vals)

    if res.order_line:

        for line in res.order_line:

              print(line)

    return res

Thanks

Regards,




Email:      odoo@aktivsoftware.com  

Skype: kalpeshmaheshwari

   

Avatar
Vazgeç
Üretici

It is saved as new records. I want to update the old record

İlgili Gönderiler Cevaplar Görünümler Aktivite
1
Oca 25
1720
2
Eyl 22
9451
2
Nis 22
4481
0
Tem 21
7158
5
Ağu 20
18917