如果满足条件,WF4 转到或运行活动

发布于 2024-12-08 09:39:27 字数 300 浏览 0 评论 0原文

我有一个带有一系列活动的 WF4。

  1. CalculateTaxesActivityCreateOrderActivityCreditCardAuthorizationActivity

  2. ​ 以及另外 10 个活动...

我需要不终止、取消或中止,而是从 CreditCardAuthorizationActivity 移动到工作流程末尾的“SendReply”消息(如果上述活动中满足某些条件)。

我正在使用 VS2010 中的工作流设计器。

谢谢!

I have a WF4 with a Sequence of Activities.

  1. CalculateTaxesActivity
  2. CreateOrderActivity
  3. CreditCardAuthorizationActivity
    and 10 more Activities...

I need to not terminate, cancel or abort but to move from the CreditCardAuthorizationActivity to the "SendReply" message at the End of the Workflow if certain conditions are met within the mentioned Activity.

I'm using the Workflow Designer in VS2010.

Thanks!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

老娘不死你永远是小三 2024-12-15 09:39:27

您无法跳转到工作流程中其他位置的随机活动。

但是,您可以做的是创建一个类似于活动的自定义序列并添加逻辑,以便它可以跳过活动或返回并重新执行。尽管每个容器负责其子级的执行,但它仅限于其直接子级。

使用流程图,您还可以跳过所有地方,但您必须在工作流程中显式地建模事物,您无法进行未提前编程的切换。

You can't jump to a random activity somewhere else in the workflow.

What you can do however is create a custom Sequence like activity and add logic so it can skip activities or go back and re-execute. It is restricted to its direct children though as each container is responsible for the execution of its childeren.

With a flowchart you can also jump all over the place but you do have to explicitly model things in your workflow, you can't make a switch you didn't program in advance.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文