summaryrefslogtreecommitdiff
path: root/FS/FS/Conf.pm
diff options
context:
space:
mode:
authorJonathan Prykop <jonathan@freeside.biz>2016-04-15 11:43:59 -0500
committerJonathan Prykop <jonathan@freeside.biz>2016-04-22 12:08:47 -0500
commit401aff3ec100c05c64f9eb0d003494758a3e74ee (patch)
treea360b39c2e480100c2e4a2f2d8a6596fe2c6e26f /FS/FS/Conf.pm
parentaa2b3ef7970a9ba5b5ac0806df05350c988a3997 (diff)
RT#29296: API stuff: Add new locations
Diffstat (limited to 'FS/FS/Conf.pm')
-rw-r--r--FS/FS/Conf.pm4
1 files changed, 2 insertions, 2 deletions
diff --git a/FS/FS/Conf.pm b/FS/FS/Conf.pm
index 2a5bffd..3796624 100644
--- a/FS/FS/Conf.pm
+++ b/FS/FS/Conf.pm
@@ -5333,7 +5333,7 @@ and customer address. Include units.',
my @part_export =
map { qsearch( 'part_export', {exporttype => $_ } ) }
keys %{FS::part_export::export_info('cust_location')};
- map { $_->exportnum => $_->exporttype.' to '.$_->machine } @part_export;
+ map { $_->exportnum => $_->exportname } @part_export;
},
'option_sub' => sub {
require FS::Record;
@@ -5342,7 +5342,7 @@ and customer address. Include units.',
'part_export', { 'exportnum' => shift }
);
$part_export
- ? $part_export->exporttype.' to '.$part_export->machine
+ ? $part_export->exportname
: '';
},
},