壹佰网|ERP100 - 企业信息化知识门户

 找回密码
 注册

QQ登录

只需一步,快速开始

查看: 558|回复: 0

年度结转后总账与明细账对帐不平

[复制链接]
发表于 2012/9/19 11:11:52 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。如果您注册时有任何问题请联系客服QQ: 83569622  。

您需要 登录 才可以下载或查看,没有帐号?注册

x
问题现象:1. 上年结转过来的数据,总帐与明细帐对帐不平;
2. 经查总帐数据是对的,明细不对,数据导入后可以从对帐错误报告中看对错误的科目;
3. 经我部检查发现,113101科目对不平的部份原因可能在于上年计算汇兑损益的这笔业务的数据没有转过来,导致对帐不平;其他科目原因不明;
问题版本:其他
问题模块:总账
问题原因:是由于用户在2004年做过客户和供应商的手工两清,而且有的记录还不对应,造成结转到新的年度后出错。
解决方案:(1)将2004年两清记录全部清空,重新结转,在2005年手工两清,一定要保证金额对应;
(2)按余额结转;
(3)在2005年后台数据库能够找到50多条差异记录在2004年中有对应的记录,可以相应修改,但剩余80多条记录是没有对应关系的。 执行如下脚本可以查询到相应记录:(执行前请做好备份,需要把脚本中对应的账套号改过来)
use ufdata_006_2005
select isnull(a.mb,0) as mb,(isnull(b.md,0)-isnull(b.mc,0)) as md,b.ccode,b.ccus_id,b.csup_id
into tmp01
from ( select (case when cbegind_c='借' then mb else -mb end) as mb,ccode,ccus_id,csup_id
       from gl_accass where iperiod=1 and (ccus_id is not null or csup_id is not null) ) a
right join ( select sum(md) as md,sum(mc) as mc,ccode,ccus_id,csup_id
             from gl_accvouch where iperiod=0 and (ccus_id is not null or csup_id is not null)
             group by ccode,ccus_id,csup_id) b
on a.ccode=b.ccode and isnull(a.ccus_id,0)=isnull(b.ccus_id,0) and isnull(a.csup_id,0)=isnull(b.csup_id,0)
where isnull(a.mb,0)<>(isnull(b.md,0)-isnull(b.mc,0))

alter table tmp01 add auto_id int IDENTITY (1,1)

select a.auto_id,b.i_id
into tmp02
from tmp01 a
left join (select (case when isnull(md,0)<>0 then md else -mc end) as m1 ,*
           from ufdata_006_2004..gl_accvouch where nfrat=0 and iflagperson is not null ) b
on a.ccode=b.ccode and isnull(a.ccus_id,0)=isnull(b.ccus_id,0) and isnull(a.csup_id,0)=isnull(b.csup_id,0)

该贴已经同步到 chenchenjie的微博
您需要登录后才可以回帖 登录 | 注册

本版积分规则

QQ|Archiver|小黑屋|手机版|壹佰网 ERP100 ( 京ICP备19053597号-2 )

Copyright © 2005-2012 北京海之大网络技术有限责任公司 服务器托管由互联互通
手机:13911575376
网站技术点击发送消息给对方83569622   广告&合作 点击发送消息给对方27675401   点击发送消息给对方634043306   咨询及人才点击发送消息给对方138011526

GMT+8, 2025/11/30 02:41 , Processed in 0.010829 second(s), 14 queries , File On.

Powered by Discuz! X3.4

Copyright © 2001-2020, Tencent Cloud.

快速回复 返回顶部 返回列表