原因分析:此问题是由于2010年总账的启用时间在accinformation表和ua_account_sub中为2010-3-1导致。
问题解答:
1、做好帐套备份
2、反结账用友软件反记账方法">反记账到期初
3、对帐套执行脚本修改accinformation表中的总账建账日期为一月份(注意脚本中的帐套号,本地是005帐套)use UFDAT+A_005_2010update accinformation set cvalue='2010-01-01' where csysid='gl' and cid=01update gl_mend set bflag=0 where iperiod=1 or iperiod=2
4、进入系统库,找到帐套号为005、2010年、iyear=9999的记录,将对应的总账(gl)的启用时间改为2010-1-1use UFSystemupdate ua_account_sub set dsubsysused='2010-01-01 00:00:00.000' where cacc_id=005 and iyear='9999' and csub_id='gl'
5、重新记账结账