解决方案: |
各位好,请按如下方法解决此问题,谢谢配合!
1、做好账套备份。
2、删除已生成的凭证,取消核算管理结账,反结账到1月份。
3、查询分析器里找到对应账套,以001账套2012年度为例,执行如下语句:
use UFDATA_001_2012
delete St_Totalaccount where iMonth=1 go insert into St_Totalaccount(cWhCode,cInvCode,cBatch,cFree1,cFree2,iBeginQuantity,iMonth) select cWhCode,cInvCode,cBatchCode,cFree1,cFree2,SUM(ISNULL(iAInQuantity,0)-ISNULL(iAOutQuantity,0)),1 from dbo.IA_Subsidiary where iMonth = '0' group by cWhCode,cInvCode,cBatchCode,cFree1,cFree2 order by cInvcode
4、用2012年1月1日登录用友通,在核算下拉菜单里整理现存量。
5、核对业务数据无误后即可做后续业务。
|