存货中明细账查询的凭证号不正确
- 浏览:1009 - 发布时间:2007-05-28 13:50:00.0
问题版本: |
49-用友通标准版10.1PLUS2 |
问题模块: |
1-总账 |
所属行业: |
0-通用 |
问题状态: |
1-UU通注册用户 |
关 键 字: |
明细账查询的凭证号不正确 |
适用产品: |
|
补 丁 号: |
|
开放状态: |
0-UU通注册用户 |
原问题号: |
|
提交时间: |
2007-5-28 13:50:00 |
问题名称: |
存货中明细账查询的凭证号不正确 |
问题现象: |
总账模块与核算模块连用的账套,出入库单在核算里生成凭证,现在,在核算的账表查看明细账,在这里表页上看到的凭证号与总账模块中的凭证号(菜单中的凭证)不一样,特别是入库单. |
原因分析: |
有上一年的凭证的外部凭证号和本年度的外部凭证号相同,把相同的改为不同。执行如下语句 if not exists(select * from gl_accvouch where right(coutid,3)='AAA') update gl_accVouch set coutid=coutid+'AAA',coutno_id=coutno_id+'AAA' where (iperiod=21 or iPeriod=0) and not coutid is null |
解决方案: |
执行如下语句 if not exists(select * from gl_accvouch where right(coutid,3)='AAA') update gl_accVouch set coutid=coutid+'AAA',coutno_id=coutno_id+'AAA' where (iperiod=21 or iPeriod=0) and not coutid is null | |