From: ivan Date: Tue, 19 Feb 2008 03:17:42 +0000 (+0000) Subject: return svc_external id and title as label instead of svcnum X-Git-Tag: freeside_1_7_3rc1~94 X-Git-Url: http://git.freeside.biz/gitweb/?a=commitdiff_plain;h=995e6ac8c97475ca84c9b14041c557f7c04ba4e2;p=freeside.git return svc_external id and title as label instead of svcnum --- diff --git a/FS/FS/svc_external.pm b/FS/FS/svc_external.pm index f4911aa63..45b4ef953 100644 --- a/FS/FS/svc_external.pm +++ b/FS/FS/svc_external.pm @@ -85,7 +85,8 @@ sub label { sprintf('%010d', $self->id). '-'. substr('0000000000'.uc($self->title), -10); } else { - $self->SUPER::label; + #$self->SUPER::label; + $self->id. ' - '. $self->title; } }