X-Git-Url: http://git.freeside.biz/gitweb/?a=blobdiff_plain;f=httemplate%2Felements%2Fselect-did.html;h=8e981fde147b777b7108c37beb2043c86ae27309;hb=7c4a50d23058e764d9bb905df21d9ae6f7f01a4f;hp=6cc63b96176ce487b2ad282d27a2b1848b1ed21d;hpb=0fb307c305e4bc2c9c27dc25a3308beae3a4d33c;p=freeside.git 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';