29 lines
1.1 KiB
Plaintext
29 lines
1.1 KiB
Plaintext
<%@ LANGUAGE = JavaScript %>
|
|
|
|
<% /*
|
|
$Revision: 1 $
|
|
$Modtime: 9-02-09 13:27 $
|
|
|
|
File: res_xml.asp
|
|
Description: XML converter for reserveringen
|
|
Parameters:
|
|
res_key required, key of the reservation to convert into XML
|
|
print_rsv_ruimte_key optional, key of res_rsv_ruimte if only part needs printing
|
|
|
|
Context: Called from: anywhere where res print icon is available
|
|
Note:
|
|
*/ %>
|
|
|
|
<!-- #include file="../../cust/install.inc"-->
|
|
<!-- #include file="../Shared/funcodes.inc"-->
|
|
<!-- #include file="../Shared/xml_converter.inc" -->
|
|
|
|
<%
|
|
var res_key = (Request.QueryString("res_key").Count>0)?parseInt(Request.QueryString("res_key")):-1;
|
|
// when print_rsv_ruimte_key == null, print whole reservation otherwise print part reservation with that specific res_rsv_ruimte_key
|
|
var print_rsv_ruimte_key = (Request.QueryString("print_rsv_ruimte_key").Count>0)?parseInt(Request.QueryString("print_rsv_ruimte_key")):null;
|
|
|
|
FCLT2XMLResponse('reservering', res_key, print_rsv_ruimte_key, -1,'','');
|
|
|
|
%>
|