[freeside-commits] branch FREESIDE_3_BRANCH updated. 6145063b291a18aa9699295d373ccefad627f12e
Ivan
ivan at 420.am
Sat Aug 26 14:17:57 PDT 2017
The branch, FREESIDE_3_BRANCH has been updated
via 6145063b291a18aa9699295d373ccefad627f12e (commit)
from aea440fb2771e2a79fc565ae0ab5f78c086e2750 (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 6145063b291a18aa9699295d373ccefad627f12e
Author: Ivan Kohler <ivan at freeside.biz>
Date: Sat Aug 26 14:17:55 2017 -0700
referral count search, RT#75757
diff --git a/FS/FS/cust_main/Search.pm b/FS/FS/cust_main/Search.pm
index e69e5f2..6d7a9b2 100644
--- a/FS/FS/cust_main/Search.pm
+++ b/FS/FS/cust_main/Search.pm
@@ -884,10 +884,10 @@ sub search {
##
# with referrals
##
- if ( $params->{'with_referrals'} ) {
+ if ( $params->{'with_referrals'} =~ /^\s*(\d+)\s*$/ ) {
push @where,
- ' EXISTS ( SELECT 1 FROM cust_main AS referred_cust_main
- WHERE cust_main.custnum = referred_cust_main.referral_custnum )';
+ " $1 <= ( SELECT COUNT(*) FROM cust_main AS referred_cust_main
+ WHERE cust_main.custnum = referred_cust_main.referral_custnum )";
}
##
diff --git a/httemplate/search/report_cust_main.html b/httemplate/search/report_cust_main.html
index 81d5d58..54e1bb6 100755
--- a/httemplate/search/report_cust_main.html
+++ b/httemplate/search/report_cust_main.html
@@ -344,6 +344,13 @@
<TH ALIGN="right" VALIGN="center"><% mt('Search historical addresses') %></TH>
<TD><INPUT TYPE="checkbox" NAME="location_history" VALUE="1"></TD>
+ <& /elements/tr-input-text.html,
+ label => emt('At least this many referrals'),
+ field => 'with_referrals',
+ size => 4,
+ maxlength => 4,
+ &>
+
</TABLE>
<BR>
-----------------------------------------------------------------------
Summary of changes:
FS/FS/cust_main/Search.pm | 6 +++---
httemplate/search/report_cust_main.html | 7 +++++++
2 files changed, 10 insertions(+), 3 deletions(-)
More information about the freeside-commits
mailing list