diff options
author | ivan <ivan> | 2011-11-16 01:38:28 +0000 |
---|---|---|
committer | ivan <ivan> | 2011-11-16 01:38:28 +0000 |
commit | 4729e88b237440079cc727e9b0dbb52da44de727 (patch) | |
tree | f16af17ffdd67e15624cedfd9e28d50a57de58eb /httemplate | |
parent | 806c6d4a749b1855e5aff96c45d60fb8b83ef364 (diff) |
make sure not to pull up anything per-service / finish optimizing bulk service view (cust_pkg-large_pkg_size), RT#15154
Diffstat (limited to 'httemplate')
-rw-r--r-- | httemplate/view/cust_main/packages/services.html | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/httemplate/view/cust_main/packages/services.html b/httemplate/view/cust_main/packages/services.html index 20b321483..5f458e635 100644 --- a/httemplate/view/cust_main/packages/services.html +++ b/httemplate/view/cust_main/packages/services.html @@ -10,7 +10,10 @@ function clearhint_search_cust_svc(obj, str) { } </SCRIPT> -% foreach my $part_svc ( $cust_pkg->part_svc ) { +% foreach my $part_svc ( $cust_pkg->part_svc( +% 'summarize_size' => $opt{'cust_pkg-large_pkg_size'} +% ) ) +% { % my $num_cust_svc = $cust_pkg->num_cust_svc( $part_svc->svcpart ); |