summaryrefslogtreecommitdiff
path: root/FS
diff options
context:
space:
mode:
authorChristopher Burger <burgerc@freeside.biz>2017-06-27 13:58:13 -0400
committerChristopher Burger <burgerc@freeside.biz>2017-07-12 15:01:22 -0400
commitf794618852978efcb4d135d8748c9b34f8b0ab5e (patch)
treef1c5a04ece9babc96e1795c8b41a1fe46b52a758 /FS
parent14e9d4f4927bb71ab3ca6f368fb11f0e40cf1bf9 (diff)
RT# 76303 - added tag options to payments, batch payments, and statement billing event types
Diffstat (limited to 'FS')
-rw-r--r--FS/FS/part_event/Condition/has_cust_tag.pm9
-rw-r--r--FS/FS/part_event/Condition/hasnt_cust_tag.pm9
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 cde933881..ea56bcd34 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,
};
}