From 6145063b291a18aa9699295d373ccefad627f12e Mon Sep 17 00:00:00 2001 From: Ivan Kohler Date: Sat, 26 Aug 2017 14:17:55 -0700 Subject: [PATCH] referral count search, RT#75757 --- FS/FS/cust_main/Search.pm | 6 +++--- httemplate/search/report_cust_main.html | 7 +++++++ 2 files changed, 10 insertions(+), 3 deletions(-) diff --git a/FS/FS/cust_main/Search.pm b/FS/FS/cust_main/Search.pm index e69e5f22d..6d7a9b218 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 81d5d5891..54e1bb6e3 100755 --- a/httemplate/search/report_cust_main.html +++ b/httemplate/search/report_cust_main.html @@ -344,6 +344,13 @@ <% mt('Search historical addresses') %> + <& /elements/tr-input-text.html, + label => emt('At least this many referrals'), + field => 'with_referrals', + size => 4, + maxlength => 4, + &> +
-- 2.11.0