kivitendo/js/delivery_customer_selection.js @ 1410996d
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?" +
|
||||
"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);
|
||||
}
|