为何专业版kis系统删除凭证刷新后凭证依然存在。
售后技术专线:4006-6500-28
新购有特价、金蝶老客户升级金蝶云产品可以享受5折优惠,送手机、送话费,好礼不断!
【问题描述】
专业版删除凭证刷新后凭证依然存在。
【原因分析】
有问题的凭证被打上了机制凭证标志导致。
【解决方案】
可参考以下脚本执行处理:
--标红处需更改实际的年度、期间、凭证号
update a set FInternalInd=null
from t_Voucher a
inner join t_VoucherEntry b on a.FVoucherID=b.FVoucherID
where FYear=2025 and FPeriod=3 and FNumber in ('填写凭证号')
update b set FInternalInd=null
from t_Voucher a
inner join t_VoucherEntry b on a.FVoucherID=b.FVoucherID
where FYear=2025 and FPeriod=3 and FNumber in ('填写凭证号')
【注意事项】
正式账套执行脚本前请先做好备份,建议待在测试账套中核实无误后再在正式账套中执行。