This question has been flagged

How can I update a sale.order field without getting into the write() method?

If I want to change the state of the sale.order without this = write({'state', 'test'}) ?

Thank you

Avatar
Discard
Best Answer

You can try this:

     self.env['sale.order'].browse(record_to_change_id).state = 'test'

Avatar
Discard
Best Answer

Hi,

You can give compute method and return value to your field. It will show your value in the field and will not call write method.

Avatar
Discard