1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
@ScripConditions = (
{
Name => 'On Forward', # loc
Description => 'Whenever a ticket or transaction is forwarded', # loc
ApplicableTransTypes => 'Forward Transaction,Forward Ticket',
ExecModule => 'AnyTransaction', },
{
Name => 'On Forward Ticket', # loc
Description => 'Whenever a ticket is forwarded', # loc
ApplicableTransTypes => 'Forward Ticket',
ExecModule => 'AnyTransaction', },
{
Name => 'On Forward Transaction', # loc
Description => 'Whenever a transaction is forwarded', # loc
ApplicableTransTypes => 'Forward Transaction',
ExecModule => 'AnyTransaction', },
);
|