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
Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:
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
You can try this:
self.env['sale.order'].browse(record_to_change_id).state = 'test'
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.
Create an account today to enjoy exclusive features and engage with our awesome community!
Sign upRelated Posts | Replies | Views | Activity | |
---|---|---|---|---|
|
0
Oct 22
|
1074 | ||
|
0
Apr 20
|
1523 | ||
|
0
Oct 24
|
134 | ||
|
1
Jul 20
|
2293 | ||
|
0
May 20
|
2497 |