【求助】库存实现当月出入库汇总
-
想在按照库存查询的时候,对数据做一些处理,也现实当月该产品的 出入库数量
相关帖子: www.shine-it.net/viewthread.php?tid=1061根据前辈的提示,找到了、stock/product.py。
该文件定义了 一个calss,
源代码 就不用贴了!我在 cloumns 里添加了
'x_income_qty': fields.function(_product_available, method=True, type='float', string='Income', help="Quantities of products that are arrived in selected locations or all internal if none have been selected.", multi='qty_available'),
'x_outgone_qty': fields.function(_product_available, method=True, type='float', string='Outgone', help="Quantities of products that are left in selected locations or all internal if none have been selected.", multi='qty_available'),
分别表示 已经入库,和已经出库。
然后在 _product_available添加了
if f=='x_income_qty':
c.update({ 'states':('done'), 'what':('in',) })
if f=='x_outgone_qty':
c.update({ 'states':('done'), 'what':('out',) })
stock=self.get_product_available(cr,uid,ids,context=c)
把状态定义为done,表示已经完成的订单,逻辑上感觉没有什么问题,并且在view 里添加了相应的feild name
可惜得出的结果依然是0.
想请大侠们指教,也请几个都在做库存管理的朋友们一起看看!
谢谢了!