1.金蝶KIS专业版,保存出入库单据时提示“不能保存已审核的单据”
备份账套后请参考如下方法处理:
第一,删除不匹配记录
Delete from ICStockBillEntry where Finterid not in (select Finterid
from ICStockBill)
Delete from ICStockBill where Finterid not in (select Finterid from
ICStockBillentry)
第二,更新单据最大号表中记录
Update icmaxnum set Fmaxnum=(select max(FInterID) from
ICStockBillEntry) where Ftablename='ICStockBill'