summaryrefslogtreecommitdiff
path: root/httemplate
diff options
context:
space:
mode:
authorIvan Kohler <ivan@freeside.biz>2016-02-09 22:40:50 -0800
committerIvan Kohler <ivan@freeside.biz>2016-02-09 22:40:50 -0800
commitba56e454035928299203d26ab5f57698ac80657e (patch)
tree04d17d72e5cff1d5cdc886ed92eaa043ea3ac1f8 /httemplate
parent5fd8c24bf8752b0198ff3daf9f1290332e53caf2 (diff)
optimize Reports->Customers->List Customers, RT#20173FREESIDE_3_BRANCH_40236
Diffstat (limited to 'httemplate')
-rwxr-xr-xhttemplate/search/cust_main.cgi4
1 files changed, 3 insertions, 1 deletions
diff --git a/httemplate/search/cust_main.cgi b/httemplate/search/cust_main.cgi
index b70bb9ae9..aca255885 100755
--- a/httemplate/search/cust_main.cgi
+++ b/httemplate/search/cust_main.cgi
@@ -237,7 +237,7 @@
% my $part_pkg = $_->part_pkg;
%
% my $pkg_comment = $part_pkg->pkg_comment(nopkgpart => 1);
-% my $show = $curuser->default_customer_view =~ /^(jumbo|packages)$/
+% my $show = $default_customer_view =~ /^(jumbo|packages)$/
% ? ''
% : ';show=packages';
% my $frag = "cust_pkg$pkgnum"; #hack for IE ignoring real #fragment
@@ -320,6 +320,8 @@ my $maxrecords = $conf->config('maxsearchrecordsperpage');
# summarize more than this many services of the same svcpart
my $large_pkg_size = $conf->config('cust_pkg-large_pkg_size') || 0;
+my $default_customer_view = $curuser->default_customer_view;
+
my $limit = '';
$limit .= "LIMIT $maxrecords" if $maxrecords;