固定资产计提折旧后不能在折旧分配中显示或者生成凭证

问题场景:

计提完折旧后不能在折旧分配表显示相关数据,也不能生成凭证A01A02A03

解决思路及办法:

检查修改数据后“最后一次分配折旧的期间”值是否为计提月份-1,如是不是就更新修改值。

B01

操作步骤:

1、更新“最后一次分配折旧的期间”值为5;

select * from accinformation where cSysID=’fa’ and cType=’ddate’
select * from accinformation where cSysID=’fa’ and cID=04

select * from accinformation where cSysID=’fa’ and cID=51

select * into accinformation_20170710 from accinformation

update accinformation set cValue=5 where cSysID=’fa’ and cID=51

2、在固定资产选项—-取消勾选“折旧信息”最后一项—–确定退出固定资产模块—–再进选项勾选确认;B02

3、重新计提折旧就能正常显示“折旧分配表”及生成凭证。B03