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.
| 相关帖文 | 回复 | 查看 | 活动 | |
|---|---|---|---|---|
|
0
10月 22
|
2657 | |||
|
0
4月 20
|
3171 | |||
|
0
10月 24
|
189 | |||
|
1
7月 20
|
4138 | |||
|
0
5月 20
|
4418 |
1. Use the live chat to ask your questions.
2. The operator answers within a few minutes.