VoipNow export, #11170
[freeside.git] / httemplate / elements / select-did.html
index 546d90e..dd2e8e5 100644 (file)
@@ -13,6 +13,8 @@ Example:
 </%doc>
 % if ( $use_selector ) {
 
+%   if ( $export->option('restrict_selection') eq 'non-tollfree'
+%                  || !$export->option('restrict_selection') ) {
     <TABLE>
 
       <TR>
@@ -59,8 +61,10 @@ Example:
 
     </TABLE>
 
-%      if ( $tollfree ) {
-           or toll-free 
+% } 
+%   if ( $export->option('restrict_selection') eq 'tollfree'
+%                  || !$export->option('restrict_selection') ) {
+           <font size="-1">Toll-free</font>
            <% include('/elements/select-phonenum.html',
                        'svcpart' => $svcpart,
                        'empty'   => 'Select phone number',
@@ -95,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
@@ -113,11 +116,15 @@ if ( scalar(@exports) > 1 ) {
 
 my $use_selector = scalar(@exports) ? 1 : 0;
 
-my $tollfree = 0;
-$tollfree = 1 if (scalar(@exports) && $exports[0]->exporttype eq 'vitelity');
+my $export;
+$export = $exports[0] if scalar(@exports);
 
 my $bulknum = $opt{'bulknum'} || 0;
 
+my $country = $export->option('country') ||
+              $conf->config('countrydefault') ||
+              'US';
+
 #my $field = $opt{'field'} || 'phonenum';
 
 </%init>