diff options
author | mark <mark> | 2011-03-28 19:04:07 +0000 |
---|---|---|
committer | mark <mark> | 2011-03-28 19:04:07 +0000 |
commit | a8011c8edcd051e6431399f3d0a876e5de49f6a2 (patch) | |
tree | e6ba0c146baf24cc029b177835e6f2deacdbc15e /httemplate/elements/select-did.html | |
parent | 0c55289ea53b0a77ceb3f054cdc1f913868ec01e (diff) |
VoipNow provisioning export, #11170
Diffstat (limited to 'httemplate/elements/select-did.html')
-rw-r--r-- | httemplate/elements/select-did.html | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/httemplate/elements/select-did.html b/httemplate/elements/select-did.html index 6cc63b961..8e981fde1 100644 --- a/httemplate/elements/select-did.html +++ b/httemplate/elements/select-did.html @@ -99,7 +99,6 @@ Example: my %opt = @_; my $conf = new FS::Conf; -my $country = $conf->config('countrydefault') || 'US'; #false laziness w/tr-select-did.html #XXX make sure this comes through on errors too @@ -114,14 +113,17 @@ my @exports = $part_svc->part_export_did; if ( scalar(@exports) > 1 ) { die "more than one DID-providing export attached to svcpart $svcpart"; } +my $export = ''; +$export = $exports[0] if scalar(@exports); my $use_selector = scalar(@exports) ? 1 : 0; -my $export; -$export = $exports[0] if scalar(@exports); - my $bulknum = $opt{'bulknum'} || 0; +my $country = ( $export && $export->option('country') ) + || $conf->config('countrydefault') + || 'US'; + #my $field = $opt{'field'} || 'phonenum'; </%init> |