码迷,mamicode.com
首页 > 其他好文 > 详细

生产源库位和目的库位动态过滤

时间:2015-09-18 13:39:31      阅读:339      评论:0      收藏:0      [点我收藏+]

标签:

  实施过程中,碰到一个问题,希望生产计划人员不能看到除生产以外的其他内部库位,但缺又不能影响生产人员在仓库的正常接收货。

  首先想到的是用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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!