VENR#41152 -- Nieuwe klant KIEN Schiphol Group
svn path=/Website/branches/v2017.1/; revision=35160
This commit is contained in:
BIN
CUST/KFSG/banner.png
Normal file
BIN
CUST/KFSG/banner.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 8.3 KiB |
0
CUST/KFSG/export/.gitignore
vendored
Normal file
0
CUST/KFSG/export/.gitignore
vendored
Normal file
0
CUST/KFSG/flexfiles/.gitignore
vendored
Normal file
0
CUST/KFSG/flexfiles/.gitignore
vendored
Normal file
0
CUST/KFSG/import/.gitignore
vendored
Normal file
0
CUST/KFSG/import/.gitignore
vendored
Normal file
4
CUST/KFSG/tasks/gen_notify.bat
Normal file
4
CUST/KFSG/tasks/gen_notify.bat
Normal file
@@ -0,0 +1,4 @@
|
||||
@echo off
|
||||
REM Moet gescheduled worden (normaliter 1 keer per uur) om door de applicatiebeheerder
|
||||
REM ingeregelde notificaties te genereren.
|
||||
cscript ..\..\..\utils\gen_notify\gen_notify.js ../oracle.udl KFSG
|
||||
4
CUST/KFSG/tasks/gen_scheduler.bat
Normal file
4
CUST/KFSG/tasks/gen_scheduler.bat
Normal file
@@ -0,0 +1,4 @@
|
||||
@echo off
|
||||
REM Moet gescheduled worden (normaliter 1 keer per dag) om door de applicatiebeheerder
|
||||
REM ingeregelde jobs (aanmaak van periodieke opdrachten) uit te voeren.
|
||||
cscript ..\..\..\utils\gen_scheduler\gen_scheduler.js ../oracle.udl
|
||||
1
CUST/KFSG/tasks/putOrders.bat
Normal file
1
CUST/KFSG/tasks/putOrders.bat
Normal file
@@ -0,0 +1 @@
|
||||
call ..\..\..\utils\putOrders\putOrders.bat
|
||||
BIN
CUST/KFSG/tmpl_logo.gif
Normal file
BIN
CUST/KFSG/tmpl_logo.gif
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 5.6 KiB |
3820
CUST/KFSG/xsl/KFSG.xsl
Normal file
3820
CUST/KFSG/xsl/KFSG.xsl
Normal file
File diff suppressed because it is too large
Load Diff
32
CUST/KFSG/xsl/infobord.xsl
Normal file
32
CUST/KFSG/xsl/infobord.xsl
Normal file
@@ -0,0 +1,32 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
|
||||
<xsl:output method="xml" encoding="utf-8"/>
|
||||
<xsl:decimal-format name="european" decimal-separator="." grouping-separator=","/>
|
||||
<xsl:param name="mode"/>
|
||||
|
||||
<xsl:template match="rapport">
|
||||
<xsl:if test="@view='res_v_rap_infobordframe' or @view='RES_V_RAP_INFOBORDFRAME'">
|
||||
<xsl:element name="Reserveringen">
|
||||
<xsl:for-each select="rapport_data/data_row">
|
||||
<xsl:element name="Reservering">
|
||||
<xsl:element name="Reserveringsnaam"><xsl:value-of select="OMSCHRIJVING"/></xsl:element>
|
||||
<xsl:element name="ord_naam"><xsl:value-of select="RES_RSV_RUIMTE_OMSCHRIJVING"/></xsl:element>
|
||||
<xsl:element name="ord_datbegin"><xsl:value-of select="RES_RSV_RUIMTE_VAN"/></xsl:element>
|
||||
<xsl:element name="ord_dateinde"><xsl:value-of select="RES_RSV_RUIMTE_TOT"/></xsl:element>
|
||||
<xsl:element name="ord_aantalpers"><xsl:value-of select="RES_RSV_RUIMTE_BEZOEKERS"/></xsl:element>
|
||||
<xsl:element name="ord_reseenh_code"><xsl:value-of select="RES_RUIMTE_KEY"/></xsl:element>
|
||||
<xsl:element name="ord_reseenh_naam"><xsl:value-of select="RES_RUIMTE_NR"/></xsl:element>
|
||||
</xsl:element>
|
||||
</xsl:for-each>
|
||||
</xsl:element>
|
||||
</xsl:element>
|
||||
</xsl:if>
|
||||
</xsl:template>
|
||||
|
||||
|
||||
<!-- Root -->
|
||||
<xsl:template match="facilitor">
|
||||
<xsl:apply-templates select="rapport"/>
|
||||
</xsl:template>
|
||||
|
||||
</xsl:stylesheet>
|
||||
Reference in New Issue
Block a user