Hi,
I have form of One2many field and when entered values in it and click on Save then windows going to loading/Refresh and then values disappeared. I enter values for 10 record in same time.But if I entered for 3 or 5 or 8 then this was save and showed successfully. What is the issue here? I am using Odoo V9 and linux mint 17.
Thanks in advance for any help.
Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:
- CRM
- e-Commerce
- Kế toán
- Tồn kho
- PoS
- Project
- MRP
Câu hỏi này đã bị gắn cờ
could you please mension the code you tried ..
I have override the write method. There is no issue in code.
@api.multi
def write(self, values):
result_val_dict = {}
upadte_values_dict = {}
for record in self:
if values.get("Results", None):
#some adding in other model fields
.....
values.update(upadte_values_dict)
res = super(MyModel, self).write(values)
return res
I have use print statements and loggrer method execute successfully.
Bạn có hứng thú với cuộc thảo luận không? Đừng chỉ đọc, hãy tham gia nhé!
Tạo tài khoản ngay hôm nay để tận hưởng các tính năng độc đáo và tham gia cộng đồng tuyệt vời của chúng tôi!
Đăng kýBài viết liên quan | Trả lời | Lượt xem | Hoạt động | |
---|---|---|---|---|
write method in odoo 12
Đã xử lý
|
|
1
thg 7 19
|
4485 | |
|
1
thg 6 23
|
1876 | ||
|
2
thg 4 19
|
2694 | ||
|
1
thg 4 22
|
4701 | ||
|
1
thg 4 20
|
7224 |
For adding values I use tab or enter key to move in next field. When I typed slow it saved on speedy typing its not saved.
I found the problem. When entering values fast, response of request for "search-read" send by browser are not return back by the server and by click "Save" button request for "write" also is in pending so that’s why my changes are not save. What is solution about that server response problem?