cancel
Showing results for 
Search instead for 
Did you mean: 

Standard Loop BPMN activiti

nabilblk
Champ in-the-making
Champ in-the-making
Hi every one ,

I want to test the artifact standard loop .

Here is my technical process :



<userTask  name="Saisie Line Item" id="SaisieLineItem" activiti:form="com/xxxx/activiti/forms/remiseItem.form">
          <humanPerformer>
      <resourceAssignmentExpression>
               <formalExpression>kermit</formalExpression>
           </resourceAssignmentExpression>
      </humanPerformer>
            <standardLoopCharacteristics>
                <loopCondition xsi:type="tFormalExpression">${continue}</loopCondition>
            </standardLoopCharacteristics>
</userTask>
….
….


and the code for the form remiseItem.form is :

<h1>remise Item</h1>

<p>Line Item:
</p>
<p>
           <b>Remettant:</b> <input type="text" name="remettant" value="" />
</p>
<p>           
          <b>Nbre Cheques:</b>  <input type="text" name="nbrCheque" value="" />
</p>
<p>
          <b>Montant:</b>  <input type="text" name="montant" value="" />
</p>
<p>
          <b>Numero Remise:</b> <input type="text" name="NumRemise" value="" />
</p>
<p>
<b>Continue ?</b><br/>
<input type="radio" name="continue" value="true" /> Yes <br/>
<input type="radio" name="continue" value="false" checked="true"/> No <br/>
<input type="hidden" name="continue_type" value="Boolean"/>
</p>

When i run my process and explore the task , the Loop didn't work.

thanks for help
Nabil
10 REPLIES 10

martin_grofcik
Confirmed Champ
Confirmed Champ
Hi.

Did you try to make multiinstance task/subprocess asynchronous?

Regards
Martin