新增卡片,满足需折旧条件,但计提折旧时提示,本期无卡片需要计提
问题:
新增的卡片,满足需折旧条件,但计提折旧时提示,本期无卡片需要计提
问题原因:
折旧政策里勾选了使用状态来控制是否需要计提,但是使用状态未勾选是否需要计提
解决方案:
需要将卡片删除,修改使用状态,勾选【计提折旧】后,重新引入使用状态,再重新新增卡片进行计提即可。
如上述问题排除后仍有问题,可参考下方方案:
--第一种场景:卡片本期没有折旧(折旧维护查不到)————根据卡片的折旧要素就不应该计提折旧,所以没有提上折旧,检查如下(1)卡片使用状态错误导致不提折旧(2)卡片的预计使用期间数等于卡片的已折旧期间数(3)卡片上的净值等于预计净残值
--第二种场景:卡片本期没有折旧(折旧维护查不到)————第一种情况检测了没有有问题,可能卡片重提标志异常了,执行下面语句:update t_fa_Facurcard set fisneedredepr=1 where fcompanyid in (select fid from t_org_company where fnumber='公司编码') and fnumber in('卡片编码1','卡片编码2')
--第三种场景:卡片本期没有折旧(折旧维护查不到)————前两种方法都无效,则进行以下查询:
--检查余额表(如果没有记录,提单说明余额表丢失)select * from t_Fa_Faaccountbalance where ffacurcardid in (select fid from t_Fa_FAcurcard where fcompanyid in (select fid from t_org_company where fnumber='公司编码') and fnumber in('卡片编码1','卡片编码2'))and fperiodid in (select fid from t_bd_period where fnumber='当期期间编码')【以上方法如果都不生效,提单处理】
--第四种场景:卡片折旧金额不正确————卡片之前做了变更单,但是没有变更生效,折旧金额不正确
--修改卡片的重提标志重新计算当期折旧即可update t_fa_Facurcard set fisneedredepr=1 where fcompanyid in (select fid from t_org_company where fnumber='公司编码') and fnumber in('卡片编码1','卡片编码2')
--第五种场景:卡片折旧金额不正确————卡片为初始化卡片,对应折旧政策为没有勾选上按剩余价值摊销(所以系统默认按照基于原值的平均年限法进行计算)
--如果客户一定要使用基于净值的方式,可以后台修改折旧政策勾选上初始化卡片按剩余价值摊销选项update t_fa_depreciationpolicy set finitoldasset = 1 where fnumber = '折旧政策编码'
--然后重提折旧update t_fa_Facurcard set fisneedredepr=1 where fcompanyid in (select fid from t_org_company where fnumber='公司编码') and fnumber in('卡片编码1','卡片编码2')
新增卡片,满足需折旧条件,但计提折旧时提示,本期无卡片需要计提
本文2024-09-16 22:09:30发表“eas cloud知识”栏目。
本文链接:https://wenku.my7c.com/article/kingdee-eas-46286.html