콘텐츠로 건너뛰기
메뉴
커뮤니티에 참여하려면 회원 가입을 하시기 바랍니다.
신고된 질문입니다
3 답글
4055 화면

Hello guys, I changing compute logic of a compute stored field but the field is not recomputed (the dependence not change, only the logic change). I need it stored. Is there away to achived it. Thank you guy so much.

아바타
취소
베스트 답변

This is all not accurate. 

In odoo17 the only thing you need to do is call the method and then commit.

for record in env['your.model'].search([]):
​record._your_compute_method()
​# you can also commit after each commit in case you have concurrency errors that are difficult to track down
env.cr.commit()


아바타
취소
베스트 답변

The following code works in v16:

model = env['your.model']
env.add_to_compute(model._fields['your_fields_to_recompute'], model.search([]))
model.recompute()

The following for v17:

model = env['your.model']
env.add_to_compute(model._fields['your_fields_to_recompute'], model.search([]))
model._recompute_recordset()


아바타
취소
베스트 답변

Hi,

If the dependencies are properly set for the stored computed field, the compute logic will get retrigerred whenever there is a change in the dependency.

After adding your new logic, if the re-computation is not properly working, make sure no dependencies are missed. If you are sure the dependencies are correctly given, then please update the question with the relevant codes.

Thanks

아바타
취소
관련 게시물 답글 화면 활동
Compute Fields 해결 완료
2
7월 24
1378
1
1월 24
1084
1
7월 22
1541
0
10월 24
14094
4
3월 24
10321