X-Git-Url: http://wagnertech.de/git?p=kivitendo-erp.git;a=blobdiff_plain;f=js%2Fcustomer_or_vendor_selection.js;fp=js%2Fcustomer_or_vendor_selection.js;h=0000000000000000000000000000000000000000;hp=b09183f7c0d0540aa12a4f4323574f4d78ce1e69;hb=53593baa211863fbf66540cf1bcc36c8fb37257f;hpb=deb4d2dbb676d7d6f69dfe7815d6e0cb09bd4a44 diff --git a/js/customer_or_vendor_selection.js b/js/customer_or_vendor_selection.js deleted file mode 100644 index b09183f7c..000000000 --- a/js/customer_or_vendor_selection.js +++ /dev/null @@ -1,15 +0,0 @@ -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?" + - "INPUT_ENCODING=UTF-8&" + - "action=cov_selection_internal&" + - "name=" + encodeURIComponent(name) + "&" + - "input_name=" + encodeURIComponent(input_name) + "&" + - "input_id=" + encodeURIComponent(input_id) + "&" + - "is_vendor=" + (is_vendor ? "1" : "0") + "&" + - "allow_both=" + (allow_both ? "1" : "0") + "&" + - "action_on_cov_selected=" + (action_on_cov_selected ? encodeURIComponent(action_on_cov_selected) : "") - //alert(url); - window.open(url, "_new_cov_selection", parm); -}