diff options
author | ivan <ivan> | 2011-11-16 00:47:00 +0000 |
---|---|---|
committer | ivan <ivan> | 2011-11-16 00:47:00 +0000 |
commit | db53e3e2958a14e711cc4cddb1e62bb61fe0c7ca (patch) | |
tree | 50f3d7102a4040d6b0c05d19aea5577f5f034d88 | |
parent | dbfc122560cb38f69500c9128e965ff1e5684efc (diff) |
don't check overlimit status in bulk service view, RT#15154
-rw-r--r-- | httemplate/view/cust_main/packages/services.html | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/httemplate/view/cust_main/packages/services.html b/httemplate/view/cust_main/packages/services.html index 4151e0649..20b321483 100644 --- a/httemplate/view/cust_main/packages/services.html +++ b/httemplate/view/cust_main/packages/services.html @@ -15,8 +15,8 @@ function clearhint_search_cust_svc(obj, str) { % my $num_cust_svc = $cust_pkg->num_cust_svc( $part_svc->svcpart ); % if ( $opt{'cust_pkg-large_pkg_size'} > 0 and -% $opt{'cust_pkg-large_pkg_size'} <= $num_cust_svc ) { -% # summarize +% $opt{'cust_pkg-large_pkg_size'} <= $num_cust_svc ) { # summarize +% <TR> <TD ALIGN="right" VALIGN="top"> % my $href="${p}search/cust_pkg_svc.html?svcpart=".$part_svc->svcpart. @@ -42,8 +42,9 @@ function clearhint_search_cust_svc(obj, str) { </TD> </TR> % } #$hint -% } -% else { # don't summarize +% +% } else { # don't summarize +% % foreach my $cust_svc ( @{ $part_svc->cust_pkg_svc } ) { % if ( $cust_pkg->getfield('cancel') > 0 ) { <& /elements/tr-cust_svc_cancel.html, |