Process Management

Moderator: crythias

Locked
rmueller
Znuny newbie
Posts: 10
Joined: 20 Apr 2010, 11:36
Znuny Version: 5.0.x

Process Management

Post by rmueller »

Hi all

I like to create a proccess which creates child tickets based on several condition. So far I have the following setup:

DynamicField_optionA as checkbox
DynamicField_optionB as checkbox
DynamicField_optionC as checkbox

Process
A dialog for the customer where he can check or uncheck the options (DynamicFields)
A dialog where an agent can approve the request
A Transaction and TA to bring the the ticket to the approval step
A Transaction to check if the request was approved
A Tranaction Actions to create the new ticket and to assign the value of the DynamicField_optionX

GenericAgent
To remove the created tickets with an unchecked option.

How can I create new tickets only for the options which had been checked. Is this possible within the process management modul?

Thanks for every hint.

Cheers,
Reto
RStraub
Znuny guru
Posts: 2210
Joined: 13 Mar 2014, 09:16
Znuny Version: 6.0.14
Real Name: Rolf Straub

Re: Process Management

Post by RStraub »

So you are already able to create new tickes via transition actions?

To do so only for tickets with a "checked" option, just create two transitions:
- One that filters on "checked" and creates a ticket
- One that filters on "unchecked" and does not create a ticket

Both can start on the same Activity and end on the same Activity.
Currently using: OTRS 6.0.14 -- MariaDB -- Ubuntu 16 LTS
Locked