diff options
author | ivan <ivan> | 2011-01-18 02:46:36 +0000 |
---|---|---|
committer | ivan <ivan> | 2011-01-18 02:46:36 +0000 |
commit | 8c5326a6dfb96630aad04c9abd7a5895f03b09e1 (patch) | |
tree | bae66d08d7ad155ff2df2094edfb4873dc46e54a /FS | |
parent | 12585f80aac73d6c5f2ee792f904affdb2cb6829 (diff) |
better export labeling for DID import, RT#11219
Diffstat (limited to 'FS')
-rw-r--r-- | FS/FS/part_export.pm | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/FS/FS/part_export.pm b/FS/FS/part_export.pm index 6f5aedc35..c0d3c54a2 100644 --- a/FS/FS/part_export.pm +++ b/FS/FS/part_export.pm @@ -177,6 +177,17 @@ sub check { $self->SUPER::check; } +=item label + +Returns a label for this export, "exportname||exportype (machine)". + +=cut + +sub label { + my $self = shift; + ($self->exportname || $self->exporttype ). ' ('. $self->machine. ')'; +} + #=item part_svc # #Returns the service definition (see L<FS::part_svc>) for this export. |