查询单据的审批流信息:以其他入库单为例
--查询单据和相关审批流信息 rdrecord08是其他入库单
declare @单据号 varchar(100)
set @单据号='20231231008'
select * from RdRecord08 where dDate between '2023-12-01'and '2023-12-31'and cCode=@单据号
select *from Table_Task ,RdRecord08 where ExtendField3=@单据号 and RdRecord08.id=table_task.cVoucherID
select * from WF_ActiveFlow ,RdRecord08 where VoucherCode=@单据号 and RdRecord08.id=WF_ActiveFlow.VoucherId
select * from WFAudit ,RdRecord08 where VoucherCode=@单据号 and RdRecord08.id=WFAudit.VoucherId
清除审批流
-- 取消审批流恢复到初始状态
declare @单据编号 varchar(100), @序列号 varchar(100)
set @单据编号='20231231008';set @序列号='1000031468 '
update RdRecord08 set iverifystate='0',iswfcontrolled='1'
where cSource='库存'and dDate between '2023-12-01'and '2023-12-31' and cCode=@单据编号
delete Table_Task where ExtendField3=@单据编号 and @序列号=table_task.cVoucherID
DELETE WF_ActiveFlow WHERE VoucherCode=@单据编号 and @序列号=WF_ActiveFlow.VoucherId
delete WFAudit where VoucherCode=@单据编号 and @序列号=WFAudit.VoucherId
—
注:
工作流调用自动终审业务,无法通过上述清除审批。可以通过清除审核人,然后删除单据处理。
目前自动调用终审,无法弃审,待发现解决