问题现象: | 在库存管理的按存货可释放查询里有二个存货被占用,但无法释放,导致现在想做正常的材料出库单无法填制,系统提示可用量不足 |
问题原因: | 由于这两个存货记录所对应的销售订单2005090-02上记载的累计预留数有错误,使得该单据被认为已经释放完毕,不可以再释放。 |
解决方案: | 请在查询分析器中针对错误帐套执行下面语句进行更改,然后再在释放的时候选择“按订单匹配”即可: update a set iprekeeptotquantity=b.iq,iprekeeptotnum=b.inum from so_sodetails a inner join (select sum(iquantity) as iq,sum(inum) as inum,isodid from currentstock where cinvcode in (select cinvcode from inventory where csrpolicy='lp') group by isodid) b on a.isosid=b.isodid where isnull(iprekeeptotquantity,0)<>isnull(iq,0) |
相关补丁: | |
版本: | 8.61 |
模块: | 库存管理 |
产品: | U861--供应链--库存管理 |
问题名称: | 在订单预留中存货不能释放 |
最后更新: | 2006-05-10 00:00:00 |