diff options
| author | Jonathan Prykop <jonathan@freeside.biz> | 2015-06-01 16:03:29 -0500 | 
|---|---|---|
| committer | Jonathan Prykop <jonathan@freeside.biz> | 2015-06-01 16:18:24 -0500 | 
| commit | 5d6ffe026e7ac113f619adf4db7561312bf4c72e (patch) | |
| tree | dc4726089f873a4a53fe5c566b97212304e07983 | |
| parent | 6884c3436738cb0b7682b642097716fe2ac5a4e1 (diff) | |
RT#32226: Disable bulk order link under provisioning link for svc_phone
| -rw-r--r-- | httemplate/view/cust_main/packages/services.html | 3 | 
1 files changed, 2 insertions, 1 deletions
diff --git a/httemplate/view/cust_main/packages/services.html b/httemplate/view/cust_main/packages/services.html index d7644b7de..39055f49a 100644 --- a/httemplate/view/cust_main/packages/services.html +++ b/httemplate/view/cust_main/packages/services.html @@ -10,6 +10,7 @@ function clearhint_search_cust_svc(obj, str) {  }      </SCRIPT> +%  my $showdidlink = browse_received_did_inventory($cust_pkg->custnum);  %  foreach my $part_svc (  %    $cust_pkg->part_svc(  %      'summarize_size'    => $opt{'cust_pkg-large_pkg_size'}, @@ -97,7 +98,7 @@ function clearhint_search_cust_svc(obj, str) {  %             local $opt{'num_avail'} = $part_svc->num_avail;                <BR><% svc_provision_link($cust_pkg, $part_svc, \%opt, $curuser) %>  %           } -%           if (browse_received_did_inventory($cust_pkg->custnum)) { +%           if ($showdidlink) {                <BR><A HREF="<%$p%>browse/did_order.html?custnum=<%$cust_pkg->custnum%>"><% mt('Browse Received DID Inventory') |h %></A>   %           }  %       }  | 
