return svc_external id and title as label instead of svcnum
authorivan <ivan>
Tue, 19 Feb 2008 03:17:41 +0000 (03:17 +0000)
committerivan <ivan>
Tue, 19 Feb 2008 03:17:41 +0000 (03:17 +0000)
FS/FS/svc_external.pm

index f4911aa..45b4ef9 100644 (file)
@@ -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;
   }
 }