Hello.
Currently, we are working on developing the workflow. Our aim is to integrate a new custom action that requires UI into our existing custom step. Consequently, our custom step will have the following defined actions:
<property name="actions">
<util:list>
<ref bean="editaction"/>
<ref bean="customaction"/>
</util:list>
</property>
This setup is functioning properly. However, there's an issue when accepting the item and completing the "editaction". It initiates a new claim_task with the action_id: "customaction" but fails to delete the previous action. Consequently, an error occurs because when searching for claimtasks related to a specific workflow item, it identifies two claimtasks, resulting in an error.
I am uncertain whether this is a bug or if it is not permissible to declare two actions that require UI in the same step. Thanks