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

I'm trying to constraint the domain of a many 2 one field using an external id (The XML id).

I want to be able to choose product which are variant of a specific product template.

#This piece of code doesn't work
the_field = fields.Many2one('product.product', domain = [('product_tmpl_id','=', "ref('the_package.the_external_id')")])


The code above doesn't work for some reason. But I've been able to look in the database to resolve the external id and it's 56. With that knowledge, I've been able to hardcode the following line and make everything work.


#This piece of code works, but it's hardcoded

the_field = fields.Many2one('product.product', domain = [('product_tmpl_id','=', 56)])

How can I do to solve this using the External id and not the hardcoded id in database?


EDIT: I cannot access all the self variables (self.env, self.pool, ...) since I'm in a static context. 

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

I've found the solution to my problem with the help of Kinner Vachhani.

I simply needed to create a function which will return the domain filter like this:

@api.model
def _get_domain(self):

    ids = self.env.ref('the_package.the_external_id').ids
return [('product_tmpl_id','=', ids)]

the_field = fields.Many2one('product.product', required=False,   domain = _get_picking_product_domain)
Ảnh đại diện
Huỷ bỏ
Câu trả lời hay nhất

You can get res_id (resource id) by searching ir_model_data. 

E.g 
imd_obj = self.pool['ir.model.data']
ext_ids = imd_obj._get_id('module_name', 'external_identifier')


Ảnh đại diện
Huỷ bỏ
Bài viết liên quan Trả lời Lượt xem Hoạt động
0
thg 6 16
2496
0
thg 2 25
18
2
thg 3 16
9845
0
thg 3 15
3510
1
thg 3 15
3370