This question has been flagged
1 Reply
7459 Views

how can we unlink records from one2many without deleting ?

Avatar
Discard
Best Answer

Hi,

First your relation field should be not required. So you can update the relation field by False to unlink association.

Example, to unlink association between an pos.order and all one2many lines:

self.env['pos.order.line'].serach([('order_id','=', order_id)]).write({'order_id':False})

Best regards.


Avatar
Discard