diff options
| author | Ivan Kohler <ivan@freeside.biz> | 2012-05-08 21:53:19 -0700 |
|---|---|---|
| committer | Ivan Kohler <ivan@freeside.biz> | 2012-05-08 21:53:19 -0700 |
| commit | 4541332ec8410303ebe630ce5fd37cf5bf8c6719 (patch) | |
| tree | 3aef0e709f5636b15cff1f31e9e6cf00969a4c11 /httemplate | |
| parent | acd68a24195f6e2bd65d58833047256fafba6e13 (diff) | |
remove agent_svcid from cust_svc->label and instead put it explicity in customer package/service view & service search results, RT#17619
Diffstat (limited to 'httemplate')
| -rw-r--r-- | httemplate/elements/tr-cust_svc.html | 2 | ||||
| -rw-r--r-- | httemplate/search/cust_svc.html | 5 |
2 files changed, 5 insertions, 2 deletions
diff --git a/httemplate/elements/tr-cust_svc.html b/httemplate/elements/tr-cust_svc.html index ca5de86b4..1ca22f6d4 100644 --- a/httemplate/elements/tr-cust_svc.html +++ b/httemplate/elements/tr-cust_svc.html @@ -24,7 +24,7 @@ Usage: <TD ALIGN="right" VALIGN="top"><% FS::UI::Web::svc_link($m, $part_svc, $cust_svc) %></TD> - <TD STYLE="padding-bottom:0px"><B><% + <TD STYLE="padding-bottom:0px"><B><% $cust_svc->agent_svcid ? $cust_svc->agent_svcid.': ' : '' %><% FS::UI::Web::svc_label_link($m, $part_svc, $cust_svc) %></B></TD> <TD ALIGN="right"><% FS::UI::Web::svc_export_links($m, $part_svc, $cust_svc) %> diff --git a/httemplate/search/cust_svc.html b/httemplate/search/cust_svc.html index 585431eb4..2adcbd76f 100644 --- a/httemplate/search/cust_svc.html +++ b/httemplate/search/cust_svc.html @@ -13,7 +13,10 @@ sub { #$_[0]->svc. ': '. $_[0]->label; my($label, $value, $svcdb) = $_[0]->label; - "$label: $value"; + my $id = $_[0]->agent_svcid + ? $_[0]->agent_svcid.': ' + : ''; + "$label: $id$value"; }, # package? \&FS::UI::Web::cust_fields, |
