我遇到这个问题,任何人都可以帮忙吗? 我想在stock.pack.operation中获取某个pick_id的当前产品列表。 我通过表单视图使用上下文传递picking_id。 当我尝试设置选择字段时,我什么都没有,但是当我尝试使用Char字段时,它可以工作。
以下是代码:
def _default_products_list(self):
active_id = self.env.context.get('default_picking_id', []) or []
vals=[]
for record in self.env['stock.pack.operation'].search([('picking_id','=',active_id)]):
vals.extend([(record.product_id.name,record.product_id.name)])
return vals
name = fields.Char(string='test', required=True, default=_default_products_list)
product = fields.Selection(_default_products_list, string="Product")
答案 0 :(得分:0)
您可以使用many2one
并添加filter
以仅显示当前picking_id
中的产品:
@api.onchange('picking_id')
def on_change_picking_id(self):
""" add domain to product id to show only product that are in the current picking"""
if self.picking_id:
# i'm not in my compute i forget how to get list of ids from picking_id
picking_product_ids = self.picking_id.mapped('move_lines.product_id').ids
return {'domain': {'product_id': [('id', 'in', picking_product_ids)]}}
else:
# remove domain to show all products
return {'domain': {'product_id': []}}