LxERP.t8 ist kein filter.
[kivitendo-erp.git] / templates / webpages / gl / form_header.html
index d73380e..e349761 100644 (file)
@@ -2,39 +2,28 @@
 [%- USE LxERP %]
 [%- USE T8 %]
 [%- USE L %]
+<h1>[% title | html %]</h1>
+
 <script type="text/javascript">
   <!--
 function updateTaxes(row)
 {
   var accno  = document.getElementById('accno_' + row);
   var taxkey = accno.options[accno.selectedIndex].value;
-  var reg = /--([0-9]*)/;
+  var reg = /^(.*?)--(\d*)$/;
   var found = reg.exec(taxkey);
-  var index = found[1];
-  index = parseInt(index);
-  var tax = 'taxchart_' + row;
-  var taxkeyposition = taxkey.lastIndexOf(found[0]);
-  var account = taxkey.substr(0, taxkeyposition);
-
-  var xmlhttp;
-  if (window.XMLHttpRequest)
-  {// code for IE7+, Firefox, Chrome, Opera, Safari
-    xmlhttp=new XMLHttpRequest();
-  }
-  else
-  {// code for IE6, IE5
-    xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
-  }
-  xmlhttp.onreadystatechange=function()
-  {
-    if (xmlhttp.readyState==4 && xmlhttp.status==200)
-    {
-      var element = document.getElementById("taxchart_" + row);
-      element.innerHTML = xmlhttp.responseText;
-    }
-  }
-  xmlhttp.open("GET","gl.pl?action=get_tax_dropdown&accno=" + account + "&select_index=" + index,true);
-  xmlhttp.send();
+  var account = found[1];
+  var default_tax_id = found[2];
+
+  $.ajax({
+    url: 'gl.pl?action=get_tax_dropdown',
+    data: { accno: account,
+            selected_tax_id: default_tax_id},
+    dataType: 'html',
+    success: function (new_html) {
+                                $("#taxchart_" + row).html(new_html);
+                              },
+  });
 };
 
   function copy_debit_to_credit() {
@@ -60,9 +49,6 @@ function updateTaxes(row)
 <input type="hidden" name="follow_up_rowcount" value="1">
 
 <table width=100%>
-  <tr>
-    <th class=listtop>[% title | html %]</th>
-  </tr>
 [%- IF saved_message %]
   <tr>
     <td>[% saved_message | html %]</th>