kivitendo/js/delivery_customer_selection.js @ 13193b1a
54e4131e | Moritz Bunkus | function delivery_customer_selection_window(input_name, input_id) {
|
||
var parm = centerParms(600,500) + ",width=600,height=500,status=yes,scrollbars=yes";
|
||||
var name = document.getElementsByName(input_name)[0].value;
|
||||
url = "common.pl?" +
|
||||
5d557254 | Moritz Bunkus | "INPUT_ENCODING=UTF-8&" +
|
||
54e4131e | Moritz Bunkus | "action=delivery_customer_selection&" +
|
||
6b063f3c | Moritz Bunkus | "name=" + encodeURIComponent(name) + "&" +
|
||
"input_name=" + encodeURIComponent(input_name) + "&" +
|
||||
"input_id=" + encodeURIComponent(input_id)
|
||||
54e4131e | Moritz Bunkus | //alert(url);
|
||
window.open(url, "_new_generic", parm);
|
||||
}
|