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 /FS | |
| 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 'FS')
| -rw-r--r-- | FS/FS/cust_svc.pm | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/FS/FS/cust_svc.pm b/FS/FS/cust_svc.pm index 1ae46fb4a..ff8ba9f5c 100644 --- a/FS/FS/cust_svc.pm +++ b/FS/FS/cust_svc.pm @@ -439,12 +439,9 @@ sub svc_label_long { shift->_svc_label('label_long', @_); } sub _svc_label { my( $self, $method, $svc_x ) = ( shift, shift, shift ); - my $identifier = $svc_x->$method(@_); - $identifier = '['.$self->agent_svcid.']'. $identifier if $self->agent_svcid; - ( $self->part_svc->svc, - $identifier, + $svc_x->$method(@_), $self->part_svc->svcdb, $self->svcnum ); |
