【问题现象】:
科目档案中220101科目余额显示借方,实际是负债科目,科目余额是贷方

【解决方案】:
备份好账套数据,选择账套库,执行脚本:
update AA_Account set dcdirection =653 where code =‘22210101’
注:通用脚本如下:
修改某个科目的余额方向为借方(652代表余额方向为借方,653代表余额方向为贷方):
update AA_Account set dcdirection =652 where code =‘科目编码’
修改某个科目的余额方向为贷方(652代表余额方向为借方,653代表余额方向为贷方):
update AA_Account set dcdirection =653 where code =‘科目编码’
切记备份好账套数据再操作!
作者:熊嘉颖