解决方案_结账提示本期尚有因清理而预提了折旧的卡片问题
金蝶云社区-Mr_Kobo
Mr_Kobo
0人赞赏了该文章 1,343次浏览 未经作者许可,禁止转载编辑于2016年01月31日 11:14:40
临时解决方案:--修改状态让其结账update t_fa_facurcard setfhascleared=0where fcompanyid in(select fid fromt_org_company where fnumber='公司编码')and fid in(select FCURCARDID fromt_fa_clearbillentry where FENTRYID in(select fid from t_fa_clearbillwhere fcompanyid in(select fid fromt_org_company where fnumber='公司编码')and FPERIODID in(select fid fromt_bd_period where fnumber=201505))) --期间
--结完账后执行以下脚本update t_fa_famoncard setfhascleared=2where fcompanyid in(select fid fromt_org_company where fnumber='公司编码')and FfaPERIODID in(select fid from t_bd_period where fnumber=期间)and ffacurcardid in(select FCURCARDID fromt_fa_clearbillentry where FENTRYID in(select fid from t_fa_clearbillwhere fcompanyid in(select fid fromt_org_company where fnumber='公司编码')and FPERIODID in(select fid fromt_bd_period where fnumber=期间)))--替换公司编码和期间,从2015年5期结账到2015年6期的话,脚本里的期间就全部是201505
后续建议更新固定资产最新补丁彻底解决问题。