diff options
author | Christopher Burger <burgerc@freeside.biz> | 2017-06-27 13:58:13 -0400 |
---|---|---|
committer | Christopher Burger <burgerc@freeside.biz> | 2017-06-27 13:58:13 -0400 |
commit | fda233be92d8f0b22a77ce9682e6a10bf8553586 (patch) | |
tree | df17a519315d590c34e8492248561826a576fe77 | |
parent | b35525aa2582072e01d9a62f125e6803b5d3cb34 (diff) |
RT# 76303 - added tag options to payments, batch payments, and statement billing event types
-rw-r--r-- | FS/FS/part_event/Condition/has_cust_tag.pm | 9 | ||||
-rw-r--r-- | FS/FS/part_event/Condition/hasnt_cust_tag.pm | 9 |
2 files changed, 12 insertions, 6 deletions
diff --git a/FS/FS/part_event/Condition/has_cust_tag.pm b/FS/FS/part_event/Condition/has_cust_tag.pm index 79bf2d303..8a2df1479 100644 --- a/FS/FS/part_event/Condition/has_cust_tag.pm +++ b/FS/FS/part_event/Condition/has_cust_tag.pm @@ -10,9 +10,12 @@ sub description { } sub eventtable_hashref { - { 'cust_main' => 1, - 'cust_bill' => 1, - 'cust_pkg' => 1, + { 'cust_main' => 1, + 'cust_bill' => 1, + 'cust_pkg' => 1, + 'cust_pay' => 1, + 'cust_pay_batch' => 1, + 'cust_statement' => 1, }; } diff --git a/FS/FS/part_event/Condition/hasnt_cust_tag.pm b/FS/FS/part_event/Condition/hasnt_cust_tag.pm index e56151d26..d69f1b18e 100644 --- a/FS/FS/part_event/Condition/hasnt_cust_tag.pm +++ b/FS/FS/part_event/Condition/hasnt_cust_tag.pm @@ -9,9 +9,12 @@ sub description { } sub eventtable_hashref { - { 'cust_main' => 1, - 'cust_bill' => 1, - 'cust_pkg' => 1, + { 'cust_main' => 1, + 'cust_bill' => 1, + 'cust_pkg' => 1, + 'cust_pay' => 1, + 'cust_pay_batch' => 1, + 'cust_statement' => 1, }; } |