问题现象: | 在总帐中进行客户往来两清的时候,只能进行手动两清。用总帐系统的自动两清不起作用 两清的时候的可选择科目编码为2131的进行测试 |
问题原因: | 数据问题 |
解决方案: | 是由于在gl_accvouch表中存在ccus_id的小写的客户编码造成的,需要将这些字段转换成对应的大写字母解决此问题。 查询出此问题的语句: select ccus_id,ccode,* from gl_accvouch where ccus_id collate Chinese_PRC_CS_AS_WS <> Upper(ccus_id) and ibook=1 and iflagperson is null and iflag is null and ccode='2131' 解决此问题的语句: update gl_accvouch set ccus_id=Upper(ccus_id) where ccus_id collate Chinese_PRC_CS_AS_WS <> Upper(ccus_id) and ibook=1 and iflagperson is null and iflag is null and ccode='2131' 之后即可自动两清成功。 |
相关补丁: | |
版本: | 8.50sp |
模块: | 总账 |
产品: | U850--财务会计--总账 |
问题名称: | 客户往来自动两清不起作用 |
最后更新: | 2006-05-22 00:00:00 |