bulk DID orders/inventory improvements, RT11291
authorlevinse <levinse>
Fri, 22 Apr 2011 23:17:39 +0000 (23:17 +0000)
committerlevinse <levinse>
Fri, 22 Apr 2011 23:17:39 +0000 (23:17 +0000)
httemplate/edit/did_order.html
httemplate/elements/did_order_item.html
httemplate/misc/phone_avail-import.html

index cbd3300..5837d43 100644 (file)
@@ -44,6 +44,7 @@
               'name' => 'Bulk DID Order',
               'field_callback' => $field_callback,
               'html_bottom' => $javascript,
+              'body_etc'        => 'onLoad="stockcust_changed()"',
            )
 %>
 <%init>
@@ -109,7 +110,6 @@ my $javascript = <<END;
                 custnum_select.disabled = false;
             }
             custnum.value = '';
-            custnum_search.value = '';
         }
 
         /* o2m or something else is broken, can't put this in the actual
index 00668f9..b582683 100644 (file)
@@ -14,6 +14,7 @@
                  SIZE  = "3"
                  VALUE = "<% scalar($cgi->param($name."_quantity"))
                              || $value |h %>"
+                 <% $onchange %>
           >
           <BR><FONT SIZE="-1">Quantity</FONT>
       </TD>
@@ -26,6 +27,7 @@
                  SIZE  = "3"
                  VALUE = "<% scalar($cgi->param($name."_npa"))
                              || $value |h %>"
+                 <% $onchange %>
           >
           <BR><FONT SIZE="-1">NPA</FONT>
       </TD>
@@ -109,6 +111,15 @@ my $id = $opt{'id'} || 'orderitemnum';
 
 my $curr_value = $opt{'curr_value'} || $opt{'value'};
 
+my $onchange = '';
+if ( $opt{'onchange'} ) {
+  $onchange = $opt{'onchange'};
+  $onchange .= '(this)' unless $onchange =~ /\(\w*\);?$/;
+  $onchange =~ s/\(what\);/\(this\);/g; #ugh, terrible hack.  all onchange
+                                        #callbacks should act the same
+ $onchange = 'onChange="'. $onchange. '"';
+}
+
 my $item;
 if ( $curr_value ) {
   $item = qsearchs('did_order_item', { 'orderitemnum' => $curr_value } );
index 635b8f6..b6fea7e 100644 (file)
@@ -45,6 +45,16 @@ Import a file containing phone numbers (DIDs).
     <TD><% $format %><INPUT TYPE="hidden" NAME="format" VALUE="<% $format %>"></TD>
   </TR>
 
+% if ( scalar(@exports) == 1 ) { 
+%   my $export = $exports[0];
+    <TR>
+        <TD>Export</TD>
+        <TD>
+            <INPUT TYPE="hidden" name="exportnum" value="<%$export->exportnum%>">
+            <% $export->exportname %>
+        </TD>
+    </TR>
+% } else {
   <% include( '/elements/tr-select-table.html',
                 'table'       => 'part_export',
                 'name_col'    => 'label',
@@ -55,6 +65,7 @@ Import a file containing phone numbers (DIDs).
                 #'label_callback' => 
             )
   %>
+% }
 
   <TR>
     <TH ALIGN="right">Country code</TH>
@@ -145,5 +156,7 @@ if ( $order ) {
 
 my $availbatch =
   time2str('webimport-%Y/%m/%d-%T'. "-$$-". rand() * 2**32, time);
+                
+my @exports = qsearch('part_export', { 'exporttype' => 'internal_diddb', });
 
 </%init>