Skip to Content
Menu
This question has been flagged
1 Reply
3343 Views

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
Discard
Best Answer

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
Discard
Author

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

Related Posts Replies Views Activity
2
Sep 22
7896
2
Apr 22
2461
0
Jul 21
5324
5
Aug 20
16302
2
Jun 20
6536