服务热线:022-26677809 , 13821206318
坚守“用户之友”的初心,做“专业的奋斗者”,始终坚持“持续创新”
首页 > 知识库 > 正文

系统提示有效凭证分录数为0,不能生成凭证

- 浏览:1583 - 发布时间:2008-01-08 00:00:00.0
问题版本: 806-U8.61 问题模块: 8-应收应付
所属行业: 0-通用 问题状态: 1-UU通注册用户
关 键 字: 有效凭证分录数为0 适用产品: U861--财务会计--应收款管理
补 丁 号: 开放状态: 0-UU通注册用户
原问题号: 提交时间: 2008-1-8
问题名称: 系统提示有效凭证分录数为0,不能生成凭证
问题现象: 应收中现结发票不能制单,系统就提示有效凭证分录数为0,不能生成凭证。
原因分析: 用户数据ap_detail表中idamount、idamount_f、icamount、icamount_f、bPrePay等字段的默认值丢失。导致生成凭证不成功。
解决方案: 1、请参照正常的帐套如演示帐套,将这些字段丢的失默认值在sql企业管理器表设计中添加上去; 2、参照执行如下语句将idamount、idamount_f为空的更新为0 update ap_detail set idamount=0 where idamount is null update ap_detail set idamount_f=0 where idamount_f is null update ap_detail set icamount=0 where icamount is null up