[freeside-commits] branch FREESIDE_4_BRANCH updated. 713396647226e3c2c9479f52f262460d41678ddd
Christopher Burger
burgerc at 420.am
Wed Jul 12 08:45:55 PDT 2017
The branch, FREESIDE_4_BRANCH has been updated
via 713396647226e3c2c9479f52f262460d41678ddd (commit)
from 01e645f8e1c8a15f68b6be0164e419bff19a134d (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit 713396647226e3c2c9479f52f262460d41678ddd
Author: Christopher Burger <burgerc at freeside.biz>
Date: Tue Jun 27 13:58:13 2017 -0400
RT# 76303 - added tag options to payments, batch payments, and statement billing event types
diff --git a/FS/FS/part_event/Condition/has_cust_tag.pm b/FS/FS/part_event/Condition/has_cust_tag.pm
index 79bf2d3..8a2df14 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 e56151d..d69f1b1 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,
};
}
-----------------------------------------------------------------------
Summary of changes:
FS/FS/part_event/Condition/has_cust_tag.pm | 9 ++++++---
FS/FS/part_event/Condition/hasnt_cust_tag.pm | 9 ++++++---
2 files changed, 12 insertions(+), 6 deletions(-)
More information about the freeside-commits
mailing list