标签:
实施过程中,碰到一个问题,希望生产计划人员不能看到除生产以外的其他内部库位,但缺又不能影响生产人员在仓库的正常接收货。
首先想到的是用rule来控制对库位的访问,rule的对象不能是mrp.production只能是stock.location,否则对location_src_id 和location_dest_id的限制不起作用。
只能用stock.location的rule来限制,但这样的问题是,虽然生产看不到其他内部库位了,却不能从其他库位,接收,发送物料了。
于是,二开了跟权限组挂钩的库位控制模块,实现了在库位设置中可以指定管理权限组的设置,然后再在生产单的库位处,利用动态domain来实现对库位的动态过滤。
然后在生产重载fields_view_get方法,实现对库位的动态过滤:
1 if not context:context={} 2 res = super(qunar_mrp,self).fields_view_get(cr,uid,view_id,view_type,context=context,toolbar=toolbar,submenu=submenu) 3 doc = etree.XML(res[‘arch‘]) 4 nodes = doc.xpath("//field[@name=‘location_src_id‘]") 5 ids = self._get_default_location_ids(cr,uid,context) 6 for node in nodes: 7 node.set(‘domain‘,"[(‘usage‘,‘=‘,‘internal‘),(‘id‘,‘in‘,"+str(ids)+")]") 8 9 dnodes = doc.xpath("//field[@name=‘location_dest_id‘]") 10 for node in dnodes: 11 node.set(‘domain‘,"[(‘usage‘,‘=‘,‘internal‘),(‘id‘,‘in‘,"+str(ids)+")]") 12 13 res[‘arch‘] = etree.tostring(doc) 14 return res
实现的效果如下:
标签:
原文地址:http://www.cnblogs.com/kfx2007/p/4818795.html