Bỏ qua để đến Nội dung
Menu
Câu hỏi này đã bị gắn cờ
3431 Lượt xem

Let's say a computed field depends on a relation, like this:

event_year = fields.Date(compute='_get_event_year', store=True)

fiscal_years = fields.One2many('account.fiscal.year')

@api.depends('fiscal_years')
def _get_event_year(self):
...

Is it ok to depend only on field fiscal_years, i.e. will the year will be changed anytime one dependent fiscal_year is updated or should we specify each field on the relation we wan't to listen to like for instance 'fiscal_years.year' ? If we would listen to several fields like ('fiscal_years.year', 'fiscal_years.month', ...) can we just keep 'fiscal_years' in the depends decorator or should we list all sub_fields ? 

Ảnh đại diện
Huỷ bỏ
Bài viết liên quan Trả lời Lượt xem Hoạt động
2
thg 4 16
8062
3
thg 8 15
5090
1
thg 1 24
6473
3
thg 7 25
8638
1
thg 5 25
932