问题现象: |
在“存货档案”内“批次管理”,在此批次未全部出库前,取消了“批次管理”,导致对该类产品做不了“零出库控制”。举例说明: 对存货编码B084产品,批号为0001,的产品数量10个,出库了5个,还剩5个,此时取消了批次管理。如对B084进行零出库控制,库存实际数还有5个,但填制发货单发货3个时,系统会提示库存不足出不了库。现不对B084进行零出库控制,库存实际数还有5个,填制发货单发货3个时,可以出库,但在查销售现存量时可看到B084 批号为0001库存数为5个,另B084 无批号库存数为-3。 |
问题原因: |
取消批次管理时,系统没将现存量表中的批次现存量改为非批次现存量 |
解决方案: |
1、删除当前现存量表中已改为非批次的存货的记录。 delete from currentstock where autoid in(select currentstock.autoid from currentstock inner join inventory on currentstock.cinvcode=inventory.cinvcode where cbatch<>'' and binvbatch=0) 2、将与已改为非批次的存货的相关联单据的批次置空 update rdrecords set cbatch=null from rdrecords inner join inventory on rdrecords.cinvcode=inventory.cinvcode where binvbatch=0 update transvouchs set ctvbatch=null from transvouchs inner join inventory on transvouchs.cinvcode=inventory.cinvcode where binvbatch=0 update dispatchlists set cbatch=null from dispatchlists inner join inventory on dispatchlists.cinvcode=inventory.cinvcode where binvbatch=0 update salebillvouchs set cbatch=null from salebillvouchs inner join inventory on salebillvouchs.cinvcode=inventory.cinvcode where binvbatch=0 update pu_arrivalvouchs set cbatch=null from pu_arrivalvouchs inner join inventory on pu_arrivalvouchs.cinvcode=inventory.cinvcode where binvbatch=0 3、执行整理现存量 【提示】 虽然系统允许修改批次标志,但当该存货批次结存不为零时,将会出现所述错误。最后是在批次结存及相关出入库业务已经完成后再该批次标志。 |
相关补丁: |
|
版本: |
8.50sp |
模块: |
库存管理 |
产品: |
U850--供应链--库存管理 |
问题名称: |
批次管理不能出库 |
最后更新: |
2006-03-06 00:00:00 |