關於K2.net 2003 多slots的問題!!!

  • 13 September 2010
  • 1 reply
  • 1 view

Badge

我目前正在用k2.net 2003在製作一個流程,流程目前會有同一個關卡同時作發散的動作,舉例而言,A,B,C,E,F五個關卡,當destination user到A關卡並且apply後,會同時分散到B及C關卡(各自不同的流程),B,E跟C,F時使用不同的角色完成其子流程,最後再彙整至D關卡,這功能是我目前可以完成的。但是當我利用GotoActivity及Redirect想要指定退件時,卻會發生其中一個slot(一個流程)消失的問題,只剩下另外一條流程,想試問大家是否有人有implement類似這樣的需求?


A -----> B ------> E


       |                    |


       |                    |


       |                    |---------> D


       |                    |


       |                    |


       |                    |


       |----->C----->F


 


 


 


1 reply

Badge +13

GotoActivity will kill all parallel routes so you should not use GotoActivity for your solution.


You'll need to draw lines that allows you to go from activity B to F for example.


Redirect should not void the parallel routes.

Reply