diff options
author | Mark Wells <mark@freeside.biz> | 2016-03-31 17:06:05 -0700 |
---|---|---|
committer | Mark Wells <mark@freeside.biz> | 2016-03-31 17:06:36 -0700 |
commit | 1d09c1581a1291c6bf77d601b960d841238d0894 (patch) | |
tree | 731fbca657ec2a77fcc8ff0326db3938681623c1 /FS/FS | |
parent | fee90e01f8fa5ee58153b558b3a2129982bee1cb (diff) |
change svc_fiber label back to showing OLT information, #35260
Diffstat (limited to 'FS/FS')
-rw-r--r-- | FS/FS/svc_fiber.pm | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/FS/FS/svc_fiber.pm b/FS/FS/svc_fiber.pm index 41df2d5df..1428daa1d 100644 --- a/FS/FS/svc_fiber.pm +++ b/FS/FS/svc_fiber.pm @@ -187,14 +187,15 @@ sub search_sql { =item label -Returns a description of this fiber service containing the circuit ID -and the ONT serial number. +Returns a description of this fiber service containing the ONT serial number +and the OLT name and port location. =cut sub label { my $self = shift; - $self->ont_serial . ' @ ' . $self->circuit_id; + $self->ont_serial . ' @ ' . $self->fiber_olt->description . ' ' . + join('-', $self->shelf, $self->card, $self->olt_port); } # nothing special for insert, delete, or replace |