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
|
2666 | |||
|
0
4月 20
|
3189 | |||
|
0
10月 24
|
189 | |||
|
1
7月 20
|
4159 | |||
|
0
5月 20
|
4433 |
1. Use the live chat to ask your questions.
2. The operator answers within a few minutes.