[freeside-commits] freeside/httemplate/elements select-did.html, 1.7.4.1, 1.7.4.2 select-phonenum.html, 1.2.8.2, 1.2.8.3

Erik Levinson levinse at wavetail.420.am
Mon Jan 10 11:46:15 PST 2011


Update of /home/cvs/cvsroot/freeside/httemplate/elements
In directory wavetail.420.am:/tmp/cvs-serv19955/httemplate/elements

Modified Files:
      Tag: FREESIDE_2_1_BRANCH
	select-did.html select-phonenum.html 
Log Message:
vitelity API improvements for toll-free and fax, RT11009

Index: select-phonenum.html
===================================================================
RCS file: /home/cvs/cvsroot/freeside/httemplate/elements/select-phonenum.html,v
retrieving revision 1.2.8.2
retrieving revision 1.2.8.3
diff -u -w -d -r1.2.8.2 -r1.2.8.3
--- select-phonenum.html	21 Dec 2010 23:44:57 -0000	1.2.8.2
+++ select-phonenum.html	10 Jan 2011 19:46:13 -0000	1.2.8.3
@@ -86,13 +86,50 @@
 
   }
 
+% if ( $opt{'tollfree'} ) {
+    function <% $opt{'prefix'} %>update_phonenums(phonenums) {
+	// lame hack so I can copy the code from above
+	what = document.getElementById('<% $opt{prefix} %>phonenum');
+
+	// blank the current phonenum
+      for ( var i = what.form.<% $opt{'prefix'} %>phonenum.length; i >= 0; i-- )
+          what.form.<% $opt{'prefix'} %>phonenum.options[i] = null;
+
+%     if ($opt{empty}) {
+        opt(what.form.<% $opt{'prefix'} %>phonenum, '', '<% $opt{empty} %>');
+%     }
+
+      // add the new phonenums
+      var phonenumArray = eval('(' + phonenums + ')' );
+      for ( var s = 0; s < phonenumArray.length; s++ ) {
+          var phonenumLabel = phonenumArray[s];
+          if ( phonenumLabel == "" )
+              phonenumLabel = '(n/a)';
+          opt(what.form.<% $opt{'prefix'} %>phonenum, phonenumArray[s], phonenumLabel);
+      }
+
+      what.form.<% $opt{'prefix'} %>phonenum.disabled = '';
+
+      if ( phonenumArray.length >= 1 ) {
+        what.form.<% $opt{'prefix'} %>phonenum.disabled = '';
+        what.form.<% $opt{'prefix'} %>phonenum.style.display = '';
+      } 
+
+    }
+    <% $opt{'prefix'} %>get_phonenums( 'tollfree', <% $opt{'svcpart'} %>, <% $opt{'prefix'} %>update_phonenums );
+% }
+
 </SCRIPT>
 
+% unless ( $opt{'tollfree'} ) {
 <DIV ID="phonenumwait" STYLE="display:none"><IMG SRC="<%$fsurl%>images/wait-orange.gif"> <B>Finding phone numbers</B></DIV>
 
 <DIV ID="phonenumerror" STYLE="display:none"><IMG SRC="<%$fsurl%>images/cross.png"> <B>Select a different city/exchange</B></DIV>
+% }
 
-<SELECT NAME="<% $opt{'prefix'} %>phonenum" notonChange="<% $opt{'prefix'} %>phonenum_changed(this); <% $opt{'onchange'} %>" <% $opt{'disabled'} %>>
+<SELECT ID="<% $opt{'prefix'} %>phonenum" NAME="<% $opt{'prefix'} %>phonenum" 
+    notonChange="<% $opt{'prefix'} %>phonenum_changed(this); <% $opt{'onchange'} %>"
+    <% $opt{'disabled'} %>>
   <OPTION VALUE="">Select phone number</OPTION>
 </SELECT>
 

Index: select-did.html
===================================================================
RCS file: /home/cvs/cvsroot/freeside/httemplate/elements/select-did.html,v
retrieving revision 1.7.4.1
retrieving revision 1.7.4.2
diff -u -w -d -r1.7.4.1 -r1.7.4.2
--- select-did.html	21 Dec 2010 06:26:16 -0000	1.7.4.1
+++ select-did.html	10 Jan 2011 19:46:13 -0000	1.7.4.2
@@ -58,6 +58,19 @@
       </TR>
 
     </TABLE>
+
+% 	if ( $tollfree ) {
+	    or toll-free 
+	    <% 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;
@@ -100,6 +113,9 @@
 
 my $use_selector = scalar(@exports) ? 1 : 0;
 
+my $tollfree = 0;
+$tollfree = 1 if (scalar(@exports) && $exports[0]->exporttype eq 'vitelity');
+
 my $bulknum = $opt{'bulknum'} || 0;
 
 #my $field = $opt{'field'} || 'phonenum';



More information about the freeside-commits mailing list