阅读:2608
回复:4
|
请问结束流程有事件吗
.net 10.4版本
图片:微信图片_20181025082223.png 结束流程有没有类似这种if (this.ActionContext.ActivityCode == "Activity2" && MvcPostValue.Command == "Submit")事件。 业务过程:提交单据的时候,会占用预算,假如这个流程被废弃不用了,这部分预算需要释放出来,需要有个事件来让我写代码来操作。 |
最新喜欢:实名用户_6... |
1楼#
发布于:2018-10-25 08:31
前台结束流程方法
$.MvcSheet.FinishInstance = function (actionControl) { } 后台结束流程的函数,你重载一下就可以写你的逻辑了。 public override void FinishInstance(MvcPostValue MvcPostValue, MvcResult MvcResult) { base.FinishInstance(MvcPostValue, MvcResult); } |
|
2楼#
发布于:2018-10-25 08:47
|
|
3楼#
发布于:2018-10-25 09:34
|
|
|
4楼#
发布于:2018-10-25 09:50
在流程图中也可以设置流程结束时调用业务方法
|
|