【问题描述】
旗舰版凭证在凭证查询里显示空白,双击进入凭证也是空白
【原因分析】
原因:凭证缺失凭证体表t_VoucherEntry表数据。
【解决方案】
可参考以下脚本执行处理:
declare @sql varchar(max)
set @sql = replace(( replace( (replace( (replace( (convert(varchar(100),getdate(),121)),char(32),”)) ,char(45),” )), char(58),”)) ,char(46),”)
set @sql = ‘temp_t_Voucher_’ + @sql
set @sql = ‘select * into ‘ + @sql
+ ‘ from t_Voucher where FVoucherID not in (select FVoucherID from t_VoucherEntry)’
exec (@sql)
go
delete from t_Voucher where FVoucherID not in (select FVoucherID from t_VoucherEntry)
go
【注意事项】
正式账套执行脚本前请先做好备份,建议待在测试账套中核实无误后再在正式账套中执行。