在采购订单openerp中显示已购买的已确认产品

时间:2014-03-05 06:07:30

标签: openerp

我为产品添加了新状态(PENDING,CONFIRMED)。我需要在采购订单中仅显示要购买的CONFIRMED产品。不过,我已经尝试过对此没有明确的想法。

1 个答案:

答案 0 :(得分:0)

您可以继承视图并使用域名[('status','=','确认')]

<field name="product_id" on_change="onchange_product_id(parent.pricelist_id,product_id,0,False,parent.partner_id, parent.date_order,parent.fiscal_position,date_planned,name,price_unit,context)" domain="[('state','=','confirmed')]" />