combine ticket notification scrips, #15353
[freeside.git] / httemplate / elements / select-did.html
index b62d6a0..a69450c 100644 (file)
@@ -13,51 +13,81 @@ Example:
 </%doc>
 % if ( $use_selector ) {
 
+%   if ( $export->option('restrict_selection') eq 'non-tollfree'
+%                  || !$export->option('restrict_selection') ) {
     <TABLE>
 
       <TR>
-        <TD>
+        <TD VALIGN="top">
           <% include('/elements/select-state.html',
                        'prefix'        => 'phonenum_', #$field.'_',
                        'country'       => $country,
+                       'svcpart'       => $svcpart,
                        'disable_empty' => 0,
                        'empty_label'   => 'Select state',
                     )
           %>
+          <BR><FONT SIZE="-1">State</FONT>
         </TD>
-        <TD>
+        <TD VALIGN="top">
           <% include('/elements/select-areacode.html',
                        'state_prefix' => 'phonenum_', #$field.'_',
                        'svcpart'      => $svcpart,
                        'empty'        => 'Select area code',
                     )
           %>
+          <BR><FONT SIZE="-1">Area code</FONT>
         </TD>
-        <TD>
+        <TD VALIGN="top">
           <% include('/elements/select-exchange.html',
                        'svcpart' => $svcpart,
                        'empty'   => 'Select exchange',
                     )
           %>
+          <BR><FONT SIZE="-1">City / Exchange</FONT>
         </TD>
-        <TD>
+        <TD VALIGN="top">
           <% include('/elements/select-phonenum.html',
-                       'svcpart' => $svcpart,
-                       'empty'   => 'Select phone number',
+                       'svcpart'  => $svcpart,
+                       'empty'    => 'Select phone number',
+                      'bulknum'  => $bulknum,
+                       'multiple' => $multiple,
                     )
           %>
+          <BR><FONT SIZE="-1">Phone number</FONT>
         </TD>
       </TR>
 
-      <TR>
-        <TD><FONT SIZE="-1">State</FONT></TD>
-        <TD><FONT SIZE="-1">Area code</FONT></TD>
-        <TD><FONT SIZE="-1">City / Exchange</FONT></TD>
-        <TD><FONT SIZE="-1">Phone number</FONT></TD>
-      </TR>
-
     </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' ) %>
@@ -68,7 +98,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
@@ -83,9 +112,18 @@ 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 $bulknum = $opt{'bulknum'} || 0; #Bulk DID orders via ordering system, vs.
+my $multiple = $opt{'multiple'} || 0; #just selecting a bunch at a time
+
+my $country  = ( $export && $export->option('country') )
+            || $conf->config('countrydefault')
+            || 'US';
+
 #my $field = $opt{'field'} || 'phonenum';
 
 </%init>