专业版Kis系统物料批号存在特殊字符,导致做销售出库选择批号后提示报错怎么解决。
服务热线:400-665-0027
新购有特价、金蝶老客户升级金蝶云产品可以享受5折优惠,送手机、送话费,好礼不断!
【原因分析】
账套初始化时,仓存初始数据引入时部分物料批次存在英文单引号,导致出库单保存报错。
【解决方案】
可参考以下脚本执行处理:
update ICInvInitial set FBatchNo=REPLACE(FBatchNo,'''','')
go
update ICBal set FBatchNo=REPLACE(FBatchNo,'''','')
go
update ICInvBal set FBatchNo=REPLACE(FBatchNo,'''','')
go
update ICStockBillEntry set FBatchNo=REPLACE(FBatchNo,'''','')
go
update ICInventory set FBatchNo=REPLACE(FBatchNo,'''','')
go
【注意事项】
正式账套执行脚本前请先做好备份,建议待在测试账套中核实无误后再在正式账套中执行。

