Merge branch 'master' of git.freeside.biz:/home/git/freeside
[freeside.git] / rt / etc / upgrade / 4.0.3 / content
1 use strict;
2 use warnings;
3
4 our @ScripConditions = (
5     {
6
7       Name                 => 'On Forward',                                # loc
8       Description          => 'Whenever a ticket or transaction is forwarded', # loc
9       ApplicableTransTypes => 'Forward Transaction,Forward Ticket',
10       ExecModule           => 'AnyTransaction', },
11
12     {
13
14       Name                 => 'On Forward Ticket',                         # loc
15       Description          => 'Whenever a ticket is forwarded',            # loc
16       ApplicableTransTypes => 'Forward Ticket',
17       ExecModule           => 'AnyTransaction', },
18
19     {
20
21       Name                 => 'On Forward Transaction',                    # loc
22       Description          => 'Whenever a transaction is forwarded',       # loc
23       ApplicableTransTypes => 'Forward Transaction',
24       ExecModule           => 'AnyTransaction', },
25
26 );