KIS的会计期间当年的没法更改,但实际业务中往往是需要更改的,经过一天的测试,终于成功实现修改了,现将修改过程分享给大家:

实例:刚开的账套,开账时设了按自然月作会计期间,现要修改为每月的25号为期末,26号当下一期的期初。

第一 、先要确保没有凭证是跨期的,也就是说,要改的当期凭证不能有26号的,要将凭证改26号之前时间或删除。

第二、备份账套文件,改这个很容易出问题的,一定要备份好账套。

第三、改数据库,在SQL查询运行如下代码: update t_systemprofile set FValue='0' where FKey='PeriodByMonth' and FValue='1' update t_systemprofile set FValue = '010101260226032604260526062607260826092610261126' where FValue ='010102010301040105010601070108010901100111011201'

update t_systemprofile set FValue = 0 where FCategory = 'GL' and FKey='Closed'

第四、进入系统参数设置修改会计期间。

进入帐套管理->帐套->属性设置->会计期间->更改,设置所需的启动年份和日期

第五、改数据库,在SQL查询运行如下代码:

update t_systemprofile set FValue = 1 where FCategory = 'GL' and FKey='Closed'