VoipNow export, #11170
[freeside.git] / httemplate / elements / select-did.html
index 999274f..dd2e8e5 100644 (file)
@@ -3,27 +3,35 @@
 Example:
 
   include('/elements/select-did.html',
-            'field'   => 'phonenum',
+            #can't actuall change from phonenum yet# 'field'   => 'phonenum',
+
             'svcpart' => 5,
+            #OR
+            'object' => $svc_phone,
          );
 
 </%doc>
 % if ( $use_selector ) {
 
+%   if ( $export->option('restrict_selection') eq 'non-tollfree'
+%                  || !$export->option('restrict_selection') ) {
     <TABLE>
 
       <TR>
         <TD>
           <% include('/elements/select-state.html',
-                       'country' => $country,
-                       'empty'   => 'Select state',
+                       'prefix'        => 'phonenum_', #$field.'_',
+                       'country'       => $country,
+                       'disable_empty' => 0,
+                       'empty_label'   => 'Select state',
                     )
           %>
         </TD>
         <TD>
           <% include('/elements/select-areacode.html',
-                       'svcpart' => $svcpart,
-                       'empty'   => 'Select area code',
+                       'state_prefix' => 'phonenum_', #$field.'_',
+                       'svcpart'      => $svcpart,
+                       'empty'        => 'Select area code',
                     )
           %>
         </TD>
@@ -38,6 +46,7 @@ Example:
           <% include('/elements/select-phonenum.html',
                        'svcpart' => $svcpart,
                        'empty'   => 'Select phone number',
+                      'bulknum' => $bulknum,
                     )
           %>
         </TD>
@@ -52,6 +61,34 @@ Example:
 
     </TABLE>
 
+% } 
+%   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',
+                      'tollfree' => 1,
+                      'prefix' => 'tollfree',
+                      'bulknum' => 0,
+                    )
+           %>
+%      }
+
+%      if ( $bulknum ) {
+           <div id="bulkdid" style="padding-top: 11px">
+%              my $i;
+%              for($i=0; $i < $bulknum; $i++) {
+                   <div id="bulkdid_<%$i%>" style="display: none">
+                       <input type="checkbox" id="checkbox_bulkdid_<%$i%>"
+                           name="bulkdid" value="">
+                       <label for="checkbox_bulkdid_<%$i%>" 
+                           id="label_bulkdid_<%$i%>"></label>
+                   </div>
+%              }
+           </div>
+%      }
+
 % } else {
 
     <% include( '/elements/input-text.html', %opt, 'type'=>'text' ) %>
@@ -62,10 +99,12 @@ 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
-my $svcpart = $opt{'object'}->svcpart;
+my $svcpart  = $opt{'svcpart'}
+            || $opt{'object'}->svcpart
+            || $opt{'object'}->cust_svc->svcpart;
 
 my $part_svc = qsearchs('part_svc', { 'svcpart'=>$svcpart } );
 die "unknown svcpart $svcpart" unless $part_svc;
@@ -77,4 +116,15 @@ if ( scalar(@exports) > 1 ) {
 
 my $use_selector = scalar(@exports) ? 1 : 0;
 
+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>