restore svc_export_links, from #11454
[freeside.git] / httemplate / elements / select-did.html
index 5256ae4..8e981fd 100644 (file)
@@ -13,9 +13,8 @@ Example:
 </%doc>
 % if ( $use_selector ) {
 
-%   if ( $export->exporttype eq 'vitelity' && 
-%              ( $export->option('restrict_selection') eq 'non-tollfree'
-%                  || !$export->option('restrict_selection')) ) {
+%   if ( $export->option('restrict_selection') eq 'non-tollfree'
+%                  || !$export->option('restrict_selection') ) {
     <TABLE>
 
       <TR>
@@ -63,9 +62,8 @@ Example:
     </TABLE>
 
 % } 
-%      if ( $export->exporttype eq 'vitelity' && 
-%              ( $export->option('restrict_selection') eq 'tollfree'
-%                  || !$export->option('restrict_selection')) ) {
+%   if ( $export->option('restrict_selection') eq 'tollfree'
+%                  || !$export->option('restrict_selection') ) {
            <font size="-1">Toll-free</font>
            <% include('/elements/select-phonenum.html',
                        'svcpart' => $svcpart,
@@ -101,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
@@ -116,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>