问题现象:总账—设置—选项中,未勾选上现金流量项目必录的选项,导致出现了个别凭证现金流量项目忘记录入的情况,如何过滤到未填制现金流量的凭证进行修改呢?目前T3系列的软件中查询现金流量的报表只有‘现金流量凭证明细表’和‘现金流量凭证统计表’没有现金流量凭证查询的报表,可以直接过滤出未未填制流量的凭证。 具体操作如下:建议在数据库中通过以下查询语句,过滤出每个会计期间中有那些凭证未录入现金流量,将这些凭证号记录后,再到填制凭证界面修改即可,每个会计期间使用两条查询语句,ino_id对应的就是凭证编号,iperiod对应的是会计期间,ccode对应的是会计科目。脚本中以会计期间10月为例,现金流量科目以库存现金科目1001和银行存款科目1002为例,如果有其他现金流量科目,可以相应调整脚本中的科目编码。 select * from gl_accvouch where ccode like ’1001%’ and iperiod=10 and ino_id? not in ( select distinct ino_id from GL_CashTable where iperiod=10) select * from gl_accvouch where ccode like ’1002%’? and iperiod=10 and ino_id? not in ( select distinct? ino_id from GL_CashTable where iperiod=10) 如有其它问题,请联系在线客服咨询.