KIS专业版存货核算期末结账时提示存在未审核的单据
服务热线:400-665-0027
新购有特价、金蝶老客户升级金蝶云产品可以享受5折优惠,送手机、送话费,好礼不断!
存货核算期末结账时,有时系统会提示:本期存在未审核的库存单据,不能结账。但在系统中查询时,又没有找到未审核的单据。
遇到这种情况,原因有可能是存在有单据异常,如:有单据头,但没有单据体,且单据头是未审核状态。
处理方法如下:
1 备份单据
select * into icstockbill250723 from icstockbill
2 查找本期未审核的单据
select * from icstockbill where fdate>='2025-07-01' and fdate<='2025-07-31' and fstatus='0' and fcancellation='0'
------2025-07-01 及 2025-07-31 为当期要结账期间的起始及结束日期
3 删除异常单据
delete from icstockbill where fdate>='2025-07-01' and fdate<='2025-07-31' and fstatus='0' and fcancellation='0'
上述步骤执行完成后,就可以正常结账了

