Um die Benutzung des Template Systems mal ein wenig zu foerdern.
[kivitendo-erp.git] / js / customer_or_vendor_selection.js
diff --git a/js/customer_or_vendor_selection.js b/js/customer_or_vendor_selection.js
new file mode 100644 (file)
index 0000000..4d1bf8d
--- /dev/null
@@ -0,0 +1,16 @@
+function customer_or_vendor_selection_window(input_name, input_id, is_vendor, allow_both, action_on_cov_selected) {
+  var parm = centerParms(800,600) + ",width=800,height=600,status=yes,scrollbars=yes";
+  var name = document.getElementsByName(input_name)[0].value;
+  url = "common.pl?" +
+    "action=cov_selection_internal&" +
+    "login=" + escape(document.forms[0].login.value) + "&" +
+    "password=" + escape(document.forms[0].password.value) + "&" +
+    "name=" + escape_more(name) + "&" +
+    "input_name=" + escape(input_name) + "&" +
+    "input_id=" + escape(input_id) + "&" +
+    "is_vendor=" + (is_vendor ? "1" : "0") + "&" +
+    "allow_both=" + (allow_both ? "1" : "0") + "&" +
+    "action_on_cov_selected=" + (action_on_cov_selected ? escape(action_on_cov_selected) : "")
+  //alert(url);
+  window.open(url, "_new_cov_selection", parm);
+}