删除凭证的时候提示凭证发送的通知单已勾稽或已被通知单确认

栏目:eas cloud知识作者:金蝶来源:金蝶云社区发布:2024-09-22浏览:1

删除凭证的时候提示凭证发送的通知单已勾稽或已被通知单确认

[操作步骤]

--查询该凭证是否生成有往来通知单

select * from T_CSL_Requisition a where a.FSrcCompanyID in (select fid from T_ORG_Company where fnumber='发出方公司编码') --即需要删除凭证的公司的编码

and a.FVchNumber='凭证编码'

and a.FVoucherID='来源凭证id'

and a.fperiod=期间编码


--备注:来源凭证id通过下面的第一步 查询要删除的凭证fid 获得。期间编码,格式:201601


如果上一步中没有查到通知单记录。


说明是凭证后台辅助账的勾稽状态没有及时更新过来。执行下面的操作


--第一步查询要删除凭证的fid

select fid from t_gl_voucher a where a.fnumber='要删除的凭证号'

and a.FCompanyID in (select fid from T_ORG_Company where fnumber='公司编码')

and a.FPeriodID in (select fid from t_bd_period where fnumber='期间编码')--凭证所在的会计期间 比如

201501表示2015年第一期


--第二步 查询该凭证的分录的fid

select fid from t_gl_voucherentry a where a.fbillid='第一步查询到的fid'

and a.FAccountID =(select fid from t_bd_accountview where fnumber='凭证中往来科目的编码' and fcompanyid in (select fid from T_ORG_Company where fnumber='公司编码'))


--第三步 更改辅助账的勾稽状态

update T_GL_VoucherAssistRecord set FReqCheckStatus=1

where fentryid='第二步查询到的分录fid'


删除凭证的时候提示凭证发送的通知单已勾稽或已被通知单确认

[操作步骤]--查询该凭证是否生成有往来通知单select * from T_CSL_Requisition a where a.FSrcCompanyID in (select fid from T...
点击下载文档
确认删除?
回到顶部
客服QQ
  • 客服QQ点击这里给我发消息