FCLT#56045 Implementatie Volksbank
svn path=/Website/branches/v2019.1/; revision=42187
This commit is contained in:
@@ -23,35 +23,35 @@
|
||||
<xsl:when test="$srtnotificatiecode = 'CUST01'">
|
||||
<table border="0" bordercolor="#ffffff" width="100%">
|
||||
<tr>
|
||||
<td class="caption" valign="top" colspan="2">Bezoekersregistratie <xsl:value-of select="key"/><br/></td>
|
||||
<td class="caption" valign="top" colspan="4">Bezoekersregistratie <xsl:value-of select="key"/><br/></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="tekstkop" colspan="2"><xsl:value-of select="//lcl/BEZ/bezoekgegevens"/></td>
|
||||
<td class="tekstkop" colspan="4"><xsl:value-of select="//lcl/BEZ/bezoekgegevens"/></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="label" width="20%"><xsl:value-of select="//lcl/BEZ/datum_bezoek"/></td>
|
||||
<td class="value" width="80%">: <xsl:value-of select="datum/datum"/>
|
||||
<td class="value" width="40%">: <xsl:value-of select="datum/datum"/>
|
||||
<xsl:if test="datum/datum!=eind/datum">- <xsl:value-of select="eind/datum"/></xsl:if>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
</td>
|
||||
<td class="label" width="20%"><xsl:value-of select="//lcl/BEZ/tijd_bezoek"/></td>
|
||||
<td class="value" width="80%">: <xsl:value-of select="datum/tijd"/> - <xsl:value-of select="eind/tijd"/></td>
|
||||
<td class="value" width="40%">: <xsl:value-of select="datum/tijd"/> - <xsl:value-of select="eind/tijd"/></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="label" width="20%"><xsl:value-of select="//lcl/BEZ/op_bezoek_bij"/></td>
|
||||
<td class="value" width="80%">: <xsl:value-of select="gastheer"/></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="value" width="40%">: <xsl:value-of select="gastheer"/></td>
|
||||
<td class="label" width="20%"><xsl:value-of select="//lcl/FAC/telefoon"/></td>
|
||||
<td class="value" width="80%">: <xsl:value-of select="telefoonnr"/></td>
|
||||
<td class="value" width="40%">: <xsl:value-of select="telefoonnr"/></td>
|
||||
</tr>
|
||||
<td class="label" width="20%"><xsl:value-of select="//lcl/FAC/contactpersoon"/></td>
|
||||
<td class="value" width="40%">: <xsl:value-of select="contact_user/naam_friendly"/></td>
|
||||
<td class="label" width="20%"><xsl:value-of select="//lcl/FAC/afdeling"/></td>
|
||||
<td class="value" width="40%">: <xsl:value-of select="contact_user/afdeling/naam"/></td>
|
||||
<tr>
|
||||
<td class="label" width="20%"><xsl:value-of select="//lcl/BEZ/bezoek_locatie"/></td>
|
||||
<td class="value" width="80%">
|
||||
<td class="value" width="40%">
|
||||
<xsl:choose>
|
||||
<xsl:when test="plaats/plaatsaanduiding">
|
||||
: <xsl:value-of select="plaats/plaatsaanduiding"/>
|
||||
: <xsl:value-of select="plaats/regio/district/locatie/omschrijving"/>
|
||||
</xsl:when>
|
||||
<xsl:otherwise>
|
||||
: <xsl:value-of select="ruimte"/>
|
||||
@@ -61,53 +61,56 @@
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="label" width="20%"><xsl:value-of select="//lcl/BEZ/actie"/></td>
|
||||
<td class="value" width="80%">: <xsl:value-of select="actie"/></td>
|
||||
<td class="value" width="40%">: <xsl:value-of select="actie"/></td>
|
||||
</tr>
|
||||
<xsl:if test="opmerking!=''">
|
||||
<tr>
|
||||
<td class="label" width="20%"><xsl:value-of select="//lcl/FAC/opmerking"/></td>
|
||||
<td class="value" width="80%">: <xsl:value-of select="opmerking"/></td>
|
||||
<td class="value" width="40%">: <xsl:value-of select="opmerking"/></td>
|
||||
</tr>
|
||||
</xsl:if>
|
||||
<tr>
|
||||
<td height="20px"/>
|
||||
</tr>
|
||||
</tr>
|
||||
</table>
|
||||
<table border="0" bordercolor="#ffffff" width="100%">
|
||||
<!-- afspraak -->
|
||||
<xsl:for-each select="bezoeker">
|
||||
<xsl:sort select="naam"/>
|
||||
<xsl:choose>
|
||||
<xsl:when test="position() = 1">
|
||||
<tr>
|
||||
<td height="10" style="border-right: 0px solid; border-top: 0px solid; border-left: 0px solid; border-bottom: 0px solid"/>
|
||||
<td height="10" style="border-right: 0px solid; border-top: 0px solid; border-left: 0px solid; border-bottom: 1px solid"/>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="3" class="tekstkop">Overzicht van aangemelde bezoekers</td>
|
||||
<td colspan="4" class="tekstkop">Overzicht van aangemelde bezoekers</td>
|
||||
</tr>
|
||||
</xsl:when>
|
||||
</xsl:choose>
|
||||
|
||||
<xsl:choose>
|
||||
<xsl:when test="position() = 1">
|
||||
<tr>
|
||||
<td class="tekstkop" width="20%"> Naam bezoeker </td>
|
||||
<td class="tekstkop" width="40%"> Bedrijf bezoeker </td>
|
||||
<td class="tekstkop" width="20%"> Parkeerplaats gereserveerd? </td>
|
||||
</tr>
|
||||
</xsl:when>
|
||||
</xsl:choose>
|
||||
<tr>
|
||||
<!--<td class="result"> -->
|
||||
<td class="value">
|
||||
<td class="value" width="20%">
|
||||
<xsl:value-of select="naam"/>
|
||||
</td>
|
||||
<td class="value">
|
||||
</td>
|
||||
<td class="value" width="40%">
|
||||
<xsl:value-of select="bedrijf"/>
|
||||
<xsl:if test="deel">, <xsl:value-of select="//lcl/BEZ/parkeerplaats_gereserveerd"/></xsl:if>
|
||||
<xsl:for-each select="kenmerk[@type!='L' and @type!='l' and @type!='Q' and count(@xmlnode)=0]">
|
||||
<xsl:sort select="@volgnummer" data-type="number"/>
|
||||
<xsl:if test=".!=''">
|
||||
<tr>
|
||||
<td align="right">
|
||||
<b>
|
||||
<xsl:value-of select="@naam"/>:</b>
|
||||
</td>
|
||||
<td colspan="3">
|
||||
<xsl:value-of select="."/>
|
||||
</td>
|
||||
</tr>
|
||||
</xsl:if>
|
||||
</xsl:for-each>
|
||||
</td>
|
||||
</td>
|
||||
<td class="value" width="50%">
|
||||
<xsl:choose>
|
||||
<xsl:when test="deel">Ja</xsl:when>
|
||||
<xsl:otherwise>Nee </xsl:otherwise>
|
||||
</xsl:choose>
|
||||
</td>
|
||||
</tr>
|
||||
</xsl:for-each>
|
||||
<xsl:call-template name="bez_endtext"/>
|
||||
@@ -210,14 +213,14 @@
|
||||
<td colspan="3" class="tekstkop"><xsl:value-of select="//lcl/BEZ/bez_begintext2"/></td>
|
||||
</tr>
|
||||
</xsl:when>
|
||||
</xsl:choose>
|
||||
<tr>
|
||||
<td class="result">
|
||||
</xsl:choose>
|
||||
<tr>
|
||||
<td class="result">
|
||||
<xsl:value-of select="naam"/>
|
||||
</td>
|
||||
<td class="result">
|
||||
<xsl:value-of select="bedrijf"/>
|
||||
<xsl:if test="deel">, <xsl:value-of select="//lcl/BEZ/parkeerplaats_gereserveerd"/></xsl:if>
|
||||
<xsl:if test="deel">, <xsl:value-of select="//lcl/BEZ/parkeerplaats_gereserveerd"/></xsl:if>
|
||||
<xsl:for-each select="kenmerk[@type!='L' and @type!='l' and @type!='Q' and count(@xmlnode)=0]">
|
||||
<xsl:sort select="@volgnummer" data-type="number"/>
|
||||
<xsl:if test=".!=''">
|
||||
@@ -233,7 +236,7 @@
|
||||
</xsl:if>
|
||||
</xsl:for-each>
|
||||
</td>
|
||||
</tr>
|
||||
</tr>
|
||||
</xsl:for-each>
|
||||
<xsl:call-template name="bez_endtext"/>
|
||||
</table>
|
||||
|
||||
Reference in New Issue
Block a user