发布时间:2022-11-29 16:24:00 访问数:681
【问题现象】:
T3升级T+,T+只能查询到升级上来的科目,凭证升级不了;升级工具界面凭证选项置灰无法勾选。
【解决方案】:
方法1、使用账套主管登入【系统管理】将【总账】模块启用,注意登陆时,选择最早的会计年度
方法2、执行下面脚本在UFSystem..UA_Account_sub添加一行记录总账启用时间
if not exists(select 1 from UFSystem..UA_Account_sub where cAcc_id = '001' and cSub_ID='GL' AND iYear=9999 )
begin
INSERT INTO [UFSystem].[dbo].[UA_Account_sub]
([cAcc_Id],[iYear],[cSub_Id],[bIsDelete],[bClosing],[iModiPeri],[dSubSysUsed])
VALUES ('001',9999,'GL',0,0,0,'2005-01-01')
End