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

I'm trying to extend super class field domain with "or" or "and" condition, so for "and" condition I'm trying to do something like this:

class MyClass (models.Model):
     _inherit = 'super_class'
    
    super_class_field = fields.Many2one(domain.append('type', '=','my_type'))

but it doesn't work. I've tried to find solution for "or" condition but I can't find a way to get existing field domain.

Ảnh đại diện
Huỷ bỏ
Câu trả lời hay nhất

I think that you can't do it like that and you need to define to complete domain to override on the inherited field, no partial domain override here. You only could do that on specific methods overrides like search on the target model but also you can't be sure that the domain you are trying to override will be related to the field definition. Better use a complete field domain override

Ảnh đại diện
Huỷ bỏ
Tác giả

That's what I was afraid of... thanks for your help

Bài viết liên quan Trả lời Lượt xem Hoạt động
2
thg 12 20
5546
0
thg 4 16
3241
1
thg 5 24
6352
0
thg 1 24
1589
1
thg 7 23
4390