Implementiert FB0017 Position nach Art.Nummer in Lieferschein sortieren
[kivitendo-erp.git] / js / show_history.js
index bf8471e..6985c69 100644 (file)
@@ -10,15 +10,14 @@ function centerParms(width,height,extra) {
   return string;
 }
 
-function set_history_window(id) {
-  var parm = centerParms(600,500) + ",width=600,height=500,status=yes,scrollbars=yes";
+function set_history_window(id,trans_id_type) {
+  var parm = centerParms(800,500) + ",width=800,height=500,status=yes,scrollbars=yes";
   var name = "History";
   url = "common.pl?" +
+    "INPUT_ENCODING=UTF-8&" +
     "action=show_history&" +
-    "login=" +  encodeURIComponent(document.getElementsByName("login")[0].value)+ "&"+
-    "password=" + encodeURIComponent(document.getElementsByName("password")[0].value) + "&" +
-    "path=" + encodeURIComponent(document.getElementsByName("path")[0].value) + "&" +
     "longdescription=" + "&" +
-    "input_name=" + escape(id) + "&"
+    "trans_id_type=" + encodeURIComponent(trans_id_type) + "&" +
+    "input_name=" + encodeURIComponent(id) + "&"
   window.open(url, "_new_generic", parm);
-}
\ No newline at end of file
+}