服务热线:

400-665-0027

知识资讯
联系我们

电话:400-665-0027


您当前位置:首页 > 知识资讯  > 知识学习 > 正文知识学习
为何专业版kis系统删除凭证刷新后凭证依然存在。
服务热线:400-665-0027 新购有特价、金蝶老客户升级金蝶云产品可以享受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 ('填写凭证号')

【注意事项】
正式账套执行脚本前请先做好备份,建议待在测试账套中核实无误后再在正式账套中执行。