diff options
author | ivan <ivan> | 2011-11-16 01:38:32 +0000 |
---|---|---|
committer | ivan <ivan> | 2011-11-16 01:38:32 +0000 |
commit | 3c54c844c665ed108c7892a154fd3972fab1f3e5 (patch) | |
tree | 50ea95a94cf31b8ca4b0ad0d9ad8981b74b69eb6 /httemplate | |
parent | d0056e08303ccbffbcfcc69fc9a3aa4ed1b5b6fd (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 ); |