Merge 2016.2 Gold B changes

svn path=/Website/trunk/; revision=31581
This commit is contained in:
Jos Groot Lipman
2016-11-21 09:05:35 +00:00
parent 7f3af23e1f
commit ef4dbf9442
15 changed files with 2684 additions and 2965 deletions

View File

@@ -673,7 +673,7 @@ else // nieuwe bestelling. Defaults bepalen
+ ", l.mld_adres_naam, l.mld_adres_upper"
+ (aflever_readonly? " FROM mld_adres l" : " FROM mld_v_afleveradres l")
+ " WHERE 1=1"
+ getFiltClauseLocatie("EXP").where;
+ getFiltClauseLocatie("EXP").where
+ (ALGreadlevel >= 0
? " AND l.alg_locatie_key IN (SELECT alg_locatie_key FROM fac_v_my_locations "
+ " WHERE prs_perslid_key = " + user_key

View File

@@ -311,8 +311,10 @@ if (device.test(device.isTouch)) { %>
div.scrollTop(Math.min(top, bottom - div.height() + 5));
});
<% if (!device.test(device.isTouch)) { %>
$("#menutabs").filterMenuByText("#menufilter");
$("#menufilter").focus();
<% } %>
}); // jQuery.ready
<% if (Session("logging")&2) { %>

View File

@@ -120,7 +120,8 @@ BLOCK_START("facAlg", L("lcl_fac_adres_nawblock"));
startlevel: 2,
eindlevel: 2,
readonly: false,
whenEmpty: L("lcl_search_generic")
whenEmpty: L("lcl_search_generic"),
filtercode: "FAC"
});
RWFIELDTR("mld_adr_nm", "fld", L("lcl_prs_address_naam"), mld_adr_nm, {maxlength: 60, required: true});

View File

@@ -625,6 +625,7 @@ FCLTHeader.Requires({plugins: ["jQuery", "kenmerk"],
var opstel_selected = -1;
var opstel_img_count = 0;
var min_duur = data.min_duur;
var ruimte_opstel_RO = $("#ruimte_opstel_ro").length; // Is het veld ruimte_opstel_ro aanwezig, dan is ruimte-opstelling readonly.
// sel_room is globaal!
sel_room.RoomConfigs = data.RoomConfigs;
sel_room.res_ruimte_key = data.res_ruimte_key;
@@ -656,7 +657,8 @@ FCLTHeader.Requires({plugins: ["jQuery", "kenmerk"],
else
{ // Werk opstellingen listbox bij
var ruimte_opstel = document.u2.ruimte_opstel;
if (!ruimte_opstel_RO)
{
for( i=ruimte_opstel.options.length-1; i>=0; i-- )
ruimte_opstel.options.remove(i);
@@ -687,6 +689,7 @@ FCLTHeader.Requires({plugins: ["jQuery", "kenmerk"],
}
}
}
}
$("#sel_room").val(data.ruimte_nr + (vervaldatum && vervaldatum < date_from? L("lcl_inactive_data_suffix") : "")); // Tekst bijwerken
if (vervaldatum && vervaldatum < date_from)
@@ -716,6 +719,7 @@ FCLTHeader.Requires({plugins: ["jQuery", "kenmerk"],
else
$('#resphoto').hide();
if (!ruimte_opstel_RO)
RuimteOpstelChanged();
}

View File

@@ -88,7 +88,7 @@ if (autlevel > -1) // Efficiente versie van FAC_V_MY_PR**S_AFDELINGEN_WRITE
+ filtClause.from
+ " WHERE (UPPER(" + S("alg_loc_string") + ") LIKE " + safe.quoted_sql_wild(chars + "%")
+ " OR UPPER(alg_locatie_code) LIKE " + safe.quoted_sql_wild(chars + "%") + ")"
+ existBuilding
//+ existBuilding
+ filtClause.where
+ " ORDER BY 2"
WriteResult(sql, bAll, "naam", "alg_locatie_key", "code", "postcode", "extra");

View File

@@ -109,21 +109,23 @@ function getFiltClauseLocatie(pfiltcode, params)
+ " WHERE sg.alg_srtgebouw_passief IS NULL"
+ " AND (gg.alg_gebouw_vervaldatum IS NULL OR gg.alg_gebouw_vervaldatum > TRUNC(SYSDATE))"
+ " AND sg.alg_srtgebouw_key(+) = gg.alg_srtgebouw_key"
+ " AND gg.alg_locatie_key = l.alg_locatie_key"
+ " AND gg.alg_locatie_key = DECODE(l.alg_locatie_key, NULL, gg.alg_locatie_key, l.alg_locatie_key)"
+ " UNION ALL"
+ " SELECT ''"
+ " FROM alg_v_aanwezigterreinsector t"
+ " WHERE t.alg_locatie_key = l.alg_locatie_key)";
+ " WHERE t.alg_locatie_key = DECODE(l.alg_locatie_key, NULL, t.alg_locatie_key, l.alg_locatie_key)"
+ ")";
var lfiltClauseEXP = " AND EXISTS"
+ " (SELECT ''"
+ " FROM alg_v_aanweziggebouw gg"
+ " WHERE gg.alg_locatie_key = l.alg_locatie_key"
+ " WHERE gg.alg_locatie_key = DECODE(l.alg_locatie_key, NULL, gg.alg_locatie_key, l.alg_locatie_key)"
+ " AND (gg.alg_gebouw_vervaldatum IS NULL OR gg.alg_gebouw_vervaldatum > TRUNC(SYSDATE))"
+ " UNION ALL"
+ " SELECT ''"
+ " FROM alg_v_aanwezigterreinsector t"
+ " WHERE t.alg_locatie_key = l.alg_locatie_key)";
+ " WHERE t.alg_locatie_key = DECODE(l.alg_locatie_key, NULL, t.alg_locatie_key, l.alg_locatie_key)"
+ " )";
if (pfiltcode && pfiltcode != "")
{
@@ -216,7 +218,7 @@ function getFiltClauseLocatie(pfiltcode, params)
break;
case "INCVR": // include virtual rooms, default these are NOT included
lfiltClause.where = lfiltClauseFAC;
lfiltClause.where = lfiltClauseEXP;
break;
case "EXP": // vervallen gebouwen niet tonen
@@ -233,6 +235,9 @@ function getFiltClauseGebouw(pfiltcode, params)
// Facilitair relevant hebben we vaker nodig
var lfiltClauseFAC = " AND sg.alg_srtgebouw_passief IS NULL"
+ " AND (g.alg_gebouw_vervaldatum IS NULL OR g.alg_gebouw_vervaldatum > TRUNC(SYSDATE))";
var lfiltClauseEXP = " AND (g.alg_gebouw_vervaldatum IS NULL OR g.alg_gebouw_vervaldatum > TRUNC(SYSDATE))";
if (pfiltcode && pfiltcode != "")
{
switch(pfiltcode)
@@ -244,9 +249,9 @@ function getFiltClauseGebouw(pfiltcode, params)
case "FAC": lfiltClause.where = lfiltClauseFAC;
break;
case "INCVR": // include virtual rooms, default these are NOT included
lfiltClause.where = lfiltClauseFAC;
lfiltClause.where = lfiltClauseEXP;
break;
case "EXP": lfiltClause.where = " AND (g.alg_gebouw_vervaldatum IS NULL OR g.alg_gebouw_vervaldatum > TRUNC(SYSDATE))";
case "EXP": lfiltClause.where = lfiltClauseEXP;
break;
case "RESB": // Bezorgplaats voor voorzieningen, d.i. gebouwen met ruimten excl. reserveerbare ruimten
var loc_scope_act_filter = get_loc_scope_act_filter(params, 3)

View File

@@ -8,7 +8,7 @@
<xsl:template name="customer_code">DSM</xsl:template>
<xsl:template name="customer_email">servicedeskdsm@aa-fm.com</xsl:template>
<xsl:template name="invoice_email">invoices.dsm@aa-fm.com</xsl:template>
<xsl:template name="servicedesk_telefoon">60000</xsl:template>
<xsl:template name="servicedesk_telefoon">040-2332820</xsl:template>
<xsl:template name="opdracht_qr_bookmark"></xsl:template>

File diff suppressed because it is too large Load Diff

View File

@@ -170,7 +170,13 @@
<xsl:call-template name="construct_instructionlines">
<xsl:with-param name="p_LineNumber" select="position()"/>
<xsl:with-param name="p_Quantity" select="aantal"/>
<xsl:with-param name="p_MeasurementUnitQuantity" select="eenheidcode"/>
<!-- MARX#38434: default met PCE doorsturen, indien AX leeg wordt aangeleverd. -->
<xsl:with-param name="p_MeasurementUnitQuantity">
<xsl:choose>
<xsl:when test="eenheidcode != ''"><xsl:value-of select="eenheidcode"/></xsl:when>
<xsl:otherwise>PCE</xsl:otherwise>
</xsl:choose>
</xsl:with-param>
<xsl:with-param name="p_NormPriceCode" select="''"/>
<xsl:with-param name="p_Area" select="melding/kenmerk[@key='6']"/>
<xsl:with-param name="p_ShortDescription" select="substring(normalize-space(omschrijving),1,35)"/>

View File

@@ -174,7 +174,13 @@
<xsl:call-template name="construct_instructionlines">
<xsl:with-param name="p_LineNumber" select="position()"/>
<xsl:with-param name="p_Quantity" select="aantal"/>
<xsl:with-param name="p_MeasurementUnitQuantity" select="eenheidcode"/>
<!-- MARX#38434: default met PCE doorsturen, indien AX leeg wordt aangeleverd. -->
<xsl:with-param name="p_MeasurementUnitQuantity">
<xsl:choose>
<xsl:when test="eenheidcode != ''"><xsl:value-of select="eenheidcode"/></xsl:when>
<xsl:otherwise>PCE</xsl:otherwise>
</xsl:choose>
</xsl:with-param>
<xsl:with-param name="p_NormPriceCode" select="''"/>
<xsl:with-param name="p_Area" select="melding/kenmerk[@key='6']"/>
<xsl:with-param name="p_ShortDescription" select="substring(normalize-space(omschrijving),1,35)"/>

View File

@@ -164,7 +164,13 @@
<xsl:call-template name="construct_instructionlines">
<xsl:with-param name="p_LineNumber" select="position()"/>
<xsl:with-param name="p_Quantity" select="aantal"/>
<xsl:with-param name="p_MeasurementUnitQuantity" select="eenheidcode"/>
<!-- MARX#38434: default met PCE doorsturen, indien AX leeg wordt aangeleverd. -->
<xsl:with-param name="p_MeasurementUnitQuantity">
<xsl:choose>
<xsl:when test="eenheidcode != ''"><xsl:value-of select="eenheidcode"/></xsl:when>
<xsl:otherwise>PCE</xsl:otherwise>
</xsl:choose>
</xsl:with-param>
<xsl:with-param name="p_NormPriceCode" select="''"/>
<xsl:with-param name="p_Area" select="melding/kenmerk[@key='6']"/>
<xsl:with-param name="p_ShortDescription" select="substring(normalize-space(omschrijving),1,35)"/>

View File

@@ -167,7 +167,13 @@
<xsl:call-template name="construct_instructionlines">
<xsl:with-param name="p_LineNumber" select="position()"/>
<xsl:with-param name="p_Quantity" select="aantal"/>
<xsl:with-param name="p_MeasurementUnitQuantity" select="eenheidcode"/>
<!-- MARX#38434: default met PCE doorsturen, indien AX leeg wordt aangeleverd. -->
<xsl:with-param name="p_MeasurementUnitQuantity">
<xsl:choose>
<xsl:when test="eenheidcode != ''"><xsl:value-of select="eenheidcode"/></xsl:when>
<xsl:otherwise>PCE</xsl:otherwise>
</xsl:choose>
</xsl:with-param>
<xsl:with-param name="p_NormPriceCode" select="''"/>
<xsl:with-param name="p_Area" select="melding/kenmerk[@key='6']"/>
<xsl:with-param name="p_ShortDescription" select="substring(normalize-space(omschrijving),1,35)"/>

View File

@@ -3,10 +3,10 @@
* $Id$
*/
#headerblok
.nomicon
{
background: url(fac_head.gif) no-repeat;
background-color: #FFFFFF;
background-color: #c2092e;
}
#headerdate

Binary file not shown.

Before

Width:  |  Height:  |  Size: 32 KiB

After

Width:  |  Height:  |  Size: 6.9 KiB

View File

@@ -16,6 +16,8 @@
</xsl:choose>
</xsl:variable>
<xsl:variable name="Xsrtnotificatiecode">RESDEL</xsl:variable>
<xsl:key name="regel" match="//facilitor/rapport/rapport_data/data_row" use="HIDE_F_REGEL"/>
<xsl:key name="catalogus" match="//facilitor/rapport/rapport_data/data_row" use="FCLT_F_CATALOGUS"/>
@@ -150,7 +152,9 @@
<br/>
<br/>
<strong>Roomcheck / Kamercontrole</strong>
<br/><xsl:value-of select="discipline/srtdiscipline/prefix"/><xsl:value-of select="key"/>
<br/>
<xsl:value-of select="discipline/srtdiscipline/prefix"/>
<xsl:value-of select="key"/>
<hr/>
</div>
<div class="content" style="width: 100%; height: 200mm;">
@@ -179,7 +183,8 @@
<b>Datum <xsl:text disable-output-escaping="yes">&amp;</xsl:text> tijd controle / Date <xsl:text disable-output-escaping="yes">&amp;</xsl:text> time of the check:</b>
</td>
<td align="left" style="border-bottom:#000 1px solid">
<xsl:value-of select="kenmerk[@naam='Date Roomcheck']"/><br/>
<xsl:value-of select="kenmerk[@naam='Date Roomcheck']"/>
<br/>
<xsl:value-of select="kenmerk[@naam='Time Roomcheck']"/>
</td>
</tr>
@@ -218,7 +223,8 @@
</table>
<table border="0">
<tr>
<td><b>CHECKLIST:</b>
<td>
<b>CHECKLIST:</b>
</td>
</tr>
</table>
@@ -233,7 +239,8 @@
</td>
</tr>
<tr>
<td colspan="3" height="30px" align="right" width="45%" style="vertical-align:text-bottom"><b>Entree / Entrance</b>
<td colspan="3" height="30px" align="right" width="45%" style="vertical-align:text-bottom">
<b>Entree / Entrance</b>
</td>
</tr>
<tr>
@@ -307,7 +314,8 @@
</td>
</tr>
<tr>
<td colspan="3" height="30px" align="right" width="45%" style="vertical-align:text-bottom"><b>Woonkamer / Living room</b>
<td colspan="3" height="30px" align="right" width="45%" style="vertical-align:text-bottom">
<b>Woonkamer / Living room</b>
</td>
</tr>
<tr>
@@ -381,7 +389,8 @@
</td>
</tr>
<tr>
<td colspan="3" height="30px" align="right" width="45%" style="vertical-align:text-bottom"><b>Badkamer / Bathroom</b>
<td colspan="3" height="30px" align="right" width="45%" style="vertical-align:text-bottom">
<b>Badkamer / Bathroom</b>
</td>
</tr>
<tr>
@@ -486,13 +495,16 @@
<br/>
<br/>
<strong>Roomcheck / Kamercontrole</strong>
<br/><xsl:value-of select="discipline/srtdiscipline/prefix"/><xsl:value-of select="key"/>
<br/>
<xsl:value-of select="discipline/srtdiscipline/prefix"/>
<xsl:value-of select="key"/>
<hr/>
</div>
<div class="content" style="width: 100%; height: 200mm;">
<table border="1" width="100%" cellpadding="2">
<tr>
<td colspan="3" height="30px" align="right" width="45%" style="vertical-align:text-bottom"><b>Extra</b>
<td colspan="3" height="30px" align="right" width="45%" style="vertical-align:text-bottom">
<b>Extra</b>
</td>
</tr>
<tr>
@@ -510,32 +522,41 @@
</td>
</tr>
<tr>
<td valign="bottom" colspan="3" height="40px" style="vertical-align:text-bottom"><i>Prijzen zijn incl. BTW / Prices are incl. VAT</i>
<td valign="bottom" colspan="3" height="40px" style="vertical-align:text-bottom">
<i>Prijzen zijn incl. BTW / Prices are incl. VAT</i>
</td>
</tr>
<tr>
<td colspan="3" align="right" width="100%" height="60px">
<b>Remarks checklist</b><br/>
<b>Remarks checklist</b>
<br/>
<xsl:value-of select="kenmerk[@naam='Remarks checklist']"/>
</td>
</tr>
<tr>
<td colspan="3" height="30px" align="right" width="45%" style="vertical-align:text-bottom"><b>Sleutels / Keys</b>
<td colspan="3" height="30px" align="right" width="45%" style="vertical-align:text-bottom">
<b>Sleutels / Keys</b>
</td>
</tr>
<tr>
<td align="right" width="45%">Key number</td>
<td style="text-align:left" width="10%"><xsl:value-of select="kenmerk[@naam='Key number']"/></td>
<td style="text-align:left" width="10%">
<xsl:value-of select="kenmerk[@naam='Key number']"/>
</td>
<td style="text-align:center" width="45%">&#xA0;</td>
</tr>
<tr>
<td align="right" width="45%">Keys owned</td>
<td style="text-align:left" width="10%"><xsl:value-of select="kenmerk[@naam='Keys owned']"/></td>
<td style="text-align:left" width="10%">
<xsl:value-of select="kenmerk[@naam='Keys owned']"/>
</td>
<td style="text-align:center" width="45%">&#xA0;</td>
</tr>
<tr>
<td align="right" width="45%">Keys received</td>
<td style="text-align:left" width="10%"><xsl:value-of select="kenmerk[@naam='Keys received']"/></td>
<td style="text-align:left" width="10%">
<xsl:value-of select="kenmerk[@naam='Keys received']"/>
</td>
<td style="text-align:center" width="45%">&#xA0;</td>
</tr>
<tr>
@@ -554,7 +575,9 @@
</tr>
<tr>
<td align="right" width="45%">Mailbox key owned</td>
<td style="text-align:left" width="10%"><xsl:value-of select="kenmerk[@naam='Mailbox key owned']"/></td>
<td style="text-align:left" width="10%">
<xsl:value-of select="kenmerk[@naam='Mailbox key owned']"/>
</td>
<td style="text-align:center" width="45%">&#xA0;</td>
</tr>
<tr>
@@ -573,7 +596,9 @@
</tr>
<tr>
<td align="right" width="45%">Remarks keys</td>
<td colspan="2" style="text-align:left" width="55%"><xsl:value-of select="kenmerk[@naam='Remarks keys']"/></td>
<td colspan="2" style="text-align:left" width="55%">
<xsl:value-of select="kenmerk[@naam='Remarks keys']"/>
</td>
</tr>
<tr>
<td align="right" width="45%">Extra bed weghalen</td>
@@ -593,11 +618,25 @@
<table border="0" width="100%" cellpadding="2">
<tr>
<td>
<br/><br/><br/><b>Paraaf Campusbeheerder / Initials Campus Supervisor:</b>
<br/><br/><br/><b>Handtekening / Signature Student:</b>
<br/><br/><i>Of / of</i>
<br/><br/><b>Handtekening / Signature authorized representative:</b>
<br/><br/><br/><br/><b>NOTE: 10 weeks after the room check you will receive a final invoice.</b>
<br/>
<br/>
<br/>
<b>Paraaf Campusbeheerder / Initials Campus Supervisor:</b>
<br/>
<br/>
<br/>
<b>Handtekening / Signature Student:</b>
<br/>
<br/>
<i>Of / of</i>
<br/>
<br/>
<b>Handtekening / Signature authorized representative:</b>
<br/>
<br/>
<br/>
<br/>
<b>NOTE: 10 weeks after the room check you will receive a final invoice.</b>
</td>
</tr>
</table>
@@ -619,7 +658,9 @@
<tr>
<td colspan="2" class="caption" style="padding-top:20px;padding-bottom:20px">
<b>
<xsl:value-of select="//lcl/MLD/melding"/>&#xA0;<xsl:value-of select="discipline/srtdiscipline/prefix"/><xsl:value-of select="key"/></b>
<xsl:value-of select="//lcl/MLD/melding"/>&#xA0;<xsl:value-of select="discipline/srtdiscipline/prefix"/>
<xsl:value-of select="key"/>
</b>
</td>
<td colspan="2" class="caption" style="padding-top:20px;padding-bottom:20px">
<xsl:if test="spoed&lt;3">
@@ -672,9 +713,12 @@
<tr>
<td colspan="4" class="text">Beste
<xsl:choose>
<xsl:when test="voor/geslacht='1'">heer <xsl:value-of select="voor/tussenvoegsel"/>&#xA0;<xsl:value-of select="voor/naam"/></xsl:when>
<xsl:when test="voor/geslacht='0'">mevrouw <xsl:value-of select="voor/tussenvoegsel"/>&#xA0;<xsl:value-of select="voor/naam"/></xsl:when>
<xsl:otherwise>heer/mevrouw <xsl:value-of select="voor/tussenvoegsel"/>&#xA0;<xsl:value-of select="voor/naam"/></xsl:otherwise>
<xsl:when test="voor/geslacht='1'">heer <xsl:value-of select="voor/tussenvoegsel"/>&#xA0;<xsl:value-of select="voor/naam"/>
</xsl:when>
<xsl:when test="voor/geslacht='0'">mevrouw <xsl:value-of select="voor/tussenvoegsel"/>&#xA0;<xsl:value-of select="voor/naam"/>
</xsl:when>
<xsl:otherwise>heer/mevrouw <xsl:value-of select="voor/tussenvoegsel"/>&#xA0;<xsl:value-of select="voor/naam"/>
</xsl:otherwise>
</xsl:choose>,
<br/>
<br/>Er ligt een pakket voor u klaar bij het Servicepoint in het de Rooij gebouw.
@@ -692,9 +736,12 @@
<tr>
<td colspan="4" class="text">Dear
<xsl:choose>
<xsl:when test="voor/geslacht='1'">Sir <xsl:value-of select="voor/tussenvoegsel"/>&#xA0;<xsl:value-of select="voor/naam"/></xsl:when>
<xsl:when test="voor/geslacht='0'">Madam <xsl:value-of select="voor/tussenvoegsel"/>&#xA0;<xsl:value-of select="voor/naam"/></xsl:when>
<xsl:otherwise>Sir/Madam <xsl:value-of select="voor/tussenvoegsel"/>&#xA0;<xsl:value-of select="voor/naam"/></xsl:otherwise>
<xsl:when test="voor/geslacht='1'">Sir <xsl:value-of select="voor/tussenvoegsel"/>&#xA0;<xsl:value-of select="voor/naam"/>
</xsl:when>
<xsl:when test="voor/geslacht='0'">Madam <xsl:value-of select="voor/tussenvoegsel"/>&#xA0;<xsl:value-of select="voor/naam"/>
</xsl:when>
<xsl:otherwise>Sir/Madam <xsl:value-of select="voor/tussenvoegsel"/>&#xA0;<xsl:value-of select="voor/naam"/>
</xsl:otherwise>
</xsl:choose>,
<br/>
<br/>We have a package waiting for you at the Servicepoint, located on the ground floor of the De Rooij Building.
@@ -709,10 +756,13 @@
</xsl:when>
<xsl:otherwise>
<xsl:if test="not(//opdracht/extra_key) and extra_key">
<xsl:variable name="mx_key"><xsl:value-of select="extra_key"/></xsl:variable>
<xsl:variable name="mx_key">
<xsl:value-of select="extra_key"/>
</xsl:variable>
<tr>
<td align="right" valign="top" style="padding-top:10px;">
<b><xsl:value-of select="//lcl/FAC/bericht"/>:</b>
<b>
<xsl:value-of select="//lcl/FAC/bericht"/>:</b>
</td>
<td colspan="3" style="padding-top:10px;">
<xsl:call-template name="linebreaks">
@@ -777,7 +827,8 @@
<xsl:value-of select="//lcl/FAC/werkplek"/>:</b>
</td>
<td align="left">
<xsl:value-of select="voor/werkplek/plaats/regio/district/locatie/gebouw/code"/>-<xsl:value-of select="voor/werkplek/plaats/regio/district/locatie/gebouw/naam"/><br/>
<xsl:value-of select="voor/werkplek/plaats/regio/district/locatie/gebouw/code"/>-<xsl:value-of select="voor/werkplek/plaats/regio/district/locatie/gebouw/naam"/>
<br/>
<xsl:value-of select="voor/werkplek/plaats/regio/district/locatie/gebouw/verdieping/code"/>.<xsl:value-of select="voor/werkplek/plaats/regio/district/locatie/gebouw/verdieping/ruimte/nr"/>&#xA0;
<xsl:if test="voor/werkplek/plaats/regio/district/locatie/gebouw/verdieping/ruimte/omschrijving!=''">(<xsl:value-of select="voor/werkplek/plaats/regio/district/locatie/gebouw/verdieping/ruimte/omschrijving"/>)</xsl:if>
</td>
@@ -814,7 +865,8 @@
<xsl:value-of select="//lcl/FAC/terrein"/>:</b>
</td>
<td align="left">
<xsl:value-of select="plaats/regio/district/locatie/terrein/code"/>-<xsl:value-of select="plaats/regio/district/locatie/terrein/naam"/></td>
<xsl:value-of select="plaats/regio/district/locatie/terrein/code"/>-<xsl:value-of select="plaats/regio/district/locatie/terrein/naam"/>
</td>
</xsl:when>
<xsl:otherwise>
<td align="right">
@@ -822,7 +874,8 @@
<xsl:value-of select="//lcl/FAC/gebouw"/>:</b>
</td>
<td align="left">
<xsl:value-of select="plaats/regio/district/locatie/gebouw/code"/>-<xsl:value-of select="plaats/regio/district/locatie/gebouw/naam"/></td>
<xsl:value-of select="plaats/regio/district/locatie/gebouw/code"/>-<xsl:value-of select="plaats/regio/district/locatie/gebouw/naam"/>
</td>
</xsl:otherwise>
</xsl:choose>
<td align="right">
@@ -857,7 +910,8 @@
<xsl:choose>
<xsl:when test="uitvoertijd[@eenheid='U']">
<td width="16%" align="right">
<b><xsl:value-of select="//lcl/MLD/uitvoertijd"/>:</b>
<b>
<xsl:value-of select="//lcl/MLD/uitvoertijd"/>:</b>
</td>
<td width="34%">
<xsl:value-of select="uitvoertijd"/>&#160;<xsl:value-of select="//lcl/MLD/uren"/>
@@ -865,7 +919,8 @@
</xsl:when>
<xsl:otherwise>
<td width="16%" align="right">
<b><xsl:value-of select="//lcl/MLD/uitvoertijd"/>:</b>
<b>
<xsl:value-of select="//lcl/MLD/uitvoertijd"/>:</b>
</td>
<td width="34%">
<xsl:value-of select="uitvoertijd"/>&#160;<xsl:value-of select="//lcl/FAC/dagen"/>
@@ -945,7 +1000,8 @@
<!-- Melding key 146 = aanvraag extra sleutel-->
<xsl:if test="stdmelding/key='146'">
<tr>
<td colspan="4"><br/>When you have lost your key Nyenrode will place a new lock in the door. Nyenrode will charge you €80,00 for this new lock, which will be deducted from you deposit.
<td colspan="4">
<br/>When you have lost your key Nyenrode will place a new lock in the door. Nyenrode will charge you €80,00 for this new lock, which will be deducted from you deposit.
</td>
</tr>
</xsl:if>
@@ -980,7 +1036,8 @@
<xsl:choose>
<xsl:when test="position() = 1">
<td align="right" valign="top">
<b><xsl:value-of select="//lcl/MLD/behandeling"/>:</b>
<b>
<xsl:value-of select="//lcl/MLD/behandeling"/>:</b>
</td>
</xsl:when>
<xsl:otherwise>
@@ -988,7 +1045,9 @@
</xsl:otherwise>
</xsl:choose>
<td colspan="3">
<span class="mldbeh"><xsl:value-of select="aanmaak/datum"/>&#xA0;<xsl:value-of select="aanmaak/tijd"/>&#xA0;-&#xA0;<xsl:value-of select="noteur/naam_friendly"/></span>&#xA0;
<span class="mldbeh">
<xsl:value-of select="aanmaak/datum"/>&#xA0;<xsl:value-of select="aanmaak/tijd"/>&#xA0;-&#xA0;<xsl:value-of select="noteur/naam_friendly"/>
</span>&#xA0;
<xsl:call-template name="linebreaks">
<xsl:with-param name="string" select="omschrijving"/>
</xsl:call-template>
@@ -1015,7 +1074,9 @@
<tr>
<td colspan="4">
<xsl:element name="a">
<xsl:attribute name="href">https://<xsl:value-of select="$FacilitorRoot"/>?SSO=1&amp;<xsl:value-of select="../bookmarks/melding"/><xsl:value-of select="key"/></xsl:attribute>
<xsl:attribute name="href">https://<xsl:value-of select="$FacilitorRoot"/>?SSO=1&amp;<xsl:value-of select="../bookmarks/melding"/>
<xsl:value-of select="key"/>
</xsl:attribute>
<xsl:value-of select="$clicktxt"/>
</xsl:element>
</td>
@@ -1209,7 +1270,8 @@
<xsl:value-of select="bestelitem/srtdeel/omschrijving"/>&#xA0;
<xsl:for-each select="bestelitem/kenmerk">
<br/>
<xsl:value-of select="@naam"/>: <xsl:value-of select="."/></xsl:for-each>
<xsl:value-of select="@naam"/>: <xsl:value-of select="."/>
</xsl:for-each>
</td>
<td class="result">
<xsl:value-of select="bestelitem/srtdeel/eenheid"/>
@@ -1241,7 +1303,8 @@
</tr>
<tr>
<td colspan="5" style="text-align:center; font-size:9px">
<xsl:value-of select="//lcl/BES/order_disclaimer1"/>(<xsl:value-of select="id"/>)<xsl:value-of select="//lcl/BES/order_disclaimer2"/></td>
<xsl:value-of select="//lcl/BES/order_disclaimer1"/>(<xsl:value-of select="id"/>)<xsl:value-of select="//lcl/BES/order_disclaimer2"/>
</td>
</tr>
</table>
</TD>
@@ -1263,7 +1326,9 @@
<xsl:choose>
<xsl:when test="translate(@view, $smallcase, $uppercase)='NYBU_V_RAP_VERTREKBRIEF'">
<head><xsl:call-template name="printstyle"/></head>
<head>
<xsl:call-template name="printstyle"/>
</head>
<body>
<xsl:for-each select="rapport_data/data_row">
<xsl:apply-templates select="." mode="brief_vertrek"/>
@@ -1272,7 +1337,9 @@
</xsl:when>
<xsl:when test="translate(@view, $smallcase, $uppercase)='NYBU_V_RAP_CONTRACT_STUDENT'">
<head><xsl:call-template name="printstyle"/></head>
<head>
<xsl:call-template name="printstyle"/>
</head>
<body style="margin-top: 0;">
<xsl:for-each select="rapport_data/data_row">
<xsl:sort select="FCLT_F_TONEN"/>
@@ -1287,7 +1354,9 @@
</xsl:when>
<xsl:when test="translate(@view, $smallcase, $uppercase)='NYBU_V_RAP_CONTRACT_MEDEWERKER'">
<head><xsl:call-template name="printstyle"/></head>
<head>
<xsl:call-template name="printstyle"/>
</head>
<body style="margin-top: 0;">
<xsl:for-each select="rapport_data/data_row">
<xsl:sort select="FCLT_F_TONEN"/>
@@ -1324,7 +1393,9 @@
</xsl:when>
<xsl:when test="translate(@view, $smallcase, $uppercase)='NYBU_V_RAP_VERMAAT_CUMULATIEF' or translate(@view, $smallcase, $uppercase)='NYBU_V_RAP_VERMAAT_KPN'">
<xsl:variable name="viewnaam"><xsl:value-of select="translate(@view, $smallcase, $uppercase)"/></xsl:variable>
<xsl:variable name="viewnaam">
<xsl:value-of select="translate(@view, $smallcase, $uppercase)"/>
</xsl:variable>
<body>
<table width="100%" class="DefResultsetTable" cellpadding="0" cellspacing="0">
<thead>
@@ -1361,11 +1432,17 @@
<tr>
<xsl:choose>
<xsl:when test="$viewnaam='NYBU_V_RAP_VERMAAT_CUMULATIEF'">
<td><xsl:value-of select="FCLT_F_CATALOGUS"/></td>
<td>
<xsl:value-of select="FCLT_F_CATALOGUS"/>
</td>
</xsl:when>
<xsl:otherwise>
<td><xsl:value-of select="FCLT_F_PNUMMER"/></td>
<td><xsl:value-of select="FCLT_F_KOSTENPLAATS"/></td>
<td>
<xsl:value-of select="FCLT_F_PNUMMER"/>
</td>
<td>
<xsl:value-of select="FCLT_F_KOSTENPLAATS"/>
</td>
</xsl:otherwise>
</xsl:choose>
<td>
@@ -1402,8 +1479,12 @@
<th colspan="5" style="text-align: left">Totaal</th>
</xsl:otherwise>
</xsl:choose>
<th style="text-align: right"><xsl:value-of select="format-number(sum(//TOTAALPRIJS_EX), '#.###,00', 'euro')"/></th>
<th style="text-align: right"><xsl:value-of select="format-number(sum(//TOTAALPRIJS_IN), '#.###,00', 'euro')"/></th>
<th style="text-align: right">
<xsl:value-of select="format-number(sum(//TOTAALPRIJS_EX), '#.###,00', 'euro')"/>
</th>
<th style="text-align: right">
<xsl:value-of select="format-number(sum(//TOTAALPRIJS_IN), '#.###,00', 'euro')"/>
</th>
</tr>
</tfoot>
</table>
@@ -1447,7 +1528,8 @@
<tr>
<td width="60%">
<xsl:value-of select="BEDRIJF_NAAM"/>
<br/>T.a.v. <xsl:value-of select="BEDRIJF_CONTACTPERSOON"/><br/>
<br/>T.a.v. <xsl:value-of select="BEDRIJF_CONTACTPERSOON"/>
<br/>
<xsl:value-of select="BEDRIJF_ADRES"/>
<br/>
<xsl:value-of select="BEDRIJF_PC"/>,<xsl:text>&#xA0;</xsl:text>
@@ -1458,7 +1540,8 @@
<td width="40%">Nyenrode Business Universiteit<br/>
Postbus 130<br/>
3620 AC Breukelen<br/>
<br/>ABN-AMRO rekening nr. <strong>55 05 53 827</strong><br/>
<br/>ABN-AMRO rekening nr. <strong>55 05 53 827</strong>
<br/>
<br/>BIC: ABNANL2A<br/>
IBAN: NL33ABNA055053827<br/>
<br/>BTW-nr: NL 813989905B01<br/>
@@ -1541,7 +1624,8 @@
<strong>Akkoord Nyenrode Business Universiteit</strong>
</td>
<td width="50%">
<strong>Akkoord <xsl:value-of select="BEDRIJF_NAAM"/></strong>
<strong>Akkoord <xsl:value-of select="BEDRIJF_NAAM"/>
</strong>
</td>
</tr>
<tr>
@@ -1628,7 +1712,8 @@
<td>
<strong>
<xsl:value-of select="BEDRIJF_NAAM"/>
<br/>T.a.v. <xsl:value-of select="BEDRIJF_CONTACTPERSOON"/><br/>
<br/>T.a.v. <xsl:value-of select="BEDRIJF_CONTACTPERSOON"/>
<br/>
<xsl:value-of select="BEDRIJF_ADRES"/>
<br/>
<xsl:value-of select="BEDRIJF_PC"/>,<xsl:text>&#xA0;</xsl:text>
@@ -1708,7 +1793,8 @@
<xsl:value-of select="RUIMTE"/>
<br/>(max. <xsl:value-of select="MAX_BEZ"/>&#xA0;<xsl:value-of select="//lcl/FAC/personen"/>)</td>
<td width="12%" class="resresult" style="text-align:left">
<xsl:value-of select="AANTAL"/>&#xA0;<xsl:value-of select="//lcl/FAC/personen"/></td>
<xsl:value-of select="AANTAL"/>&#xA0;<xsl:value-of select="//lcl/FAC/personen"/>
</td>
<td width="12%" class="resresult" style="text-align:right">
<xsl:value-of select="DATUM"/>
</td>
@@ -1861,7 +1947,8 @@
<strong>Akkoord Nyenrode Business Universiteit</strong>
</td>
<td width="50%">
<strong>Akkoord <xsl:value-of select="BEDRIJF_NAAM"/></strong>
<strong>Akkoord <xsl:value-of select="BEDRIJF_NAAM"/>
</strong>
</td>
</tr>
<tr>
@@ -1949,6 +2036,7 @@
</xsl:choose>
</xsl:template>
<xsl:template match="reservering" mode="include">
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="0" WIDTH="100%">
<TR>
@@ -1979,18 +2067,21 @@
<table border="0" bordercolor="#000000" width="100%">
<tr>
<xsl:if test="$srtnotificatiecode='RESINF' or $srtnotificatiecode='RESDEL' or $srtnotificatiecode='RESNEW'">
<xsl:if test="$srtnotificatiecode='RESINF' or $srtnotificatiecode='RESDEL' or $srtnotificatiecode='RESNEW'or $srtnotificatiecode='RESBEV'">
<td class="caption" valign="top" colspan="4">
<xsl:choose>
<xsl:when test="@content='complete'">
<xsl:value-of select="//lcl/RES/reservering"/>&#xA0;<xsl:value-of select="key"/></xsl:when>
<xsl:value-of select="//lcl/RES/reservering"/>&#xA0;<xsl:value-of select="key"/>
</xsl:when>
<xsl:otherwise>
<xsl:value-of select="//lcl/RES/deelreservering"/>&#xA0;<xsl:value-of select="key"/> /<xsl:value-of select="$min_volgnr"/></xsl:otherwise>
<xsl:value-of select="//lcl/RES/deelreservering"/>&#xA0;<xsl:value-of select="key"/> /<xsl:value-of select="$min_volgnr"/>
</xsl:otherwise>
</xsl:choose>
&#xA0;</td>
</xsl:if>
<xsl:if test="string(rsv_ruimte[volgnr=$min_volgnr]/omschrijving)!='' and $srtnotificatiecode='RESINF' or $srtnotificatiecode='RESDEL' or $srtnotificatiecode='RESNEW'">
<td class="caption" valign="top" colspan="4">&#xA0;-&#xA0;<xsl:value-of select="rsv_ruimte[volgnr=$min_volgnr]/omschrijving"/>&#xA0;</td></xsl:if>
<xsl:if test="string(rsv_ruimte[volgnr=$min_volgnr]/omschrijving)!='' and $srtnotificatiecode='RESINF' or $srtnotificatiecode='RESDEL' or $srtnotificatiecode='RESNEW'or $srtnotificatiecode='RESBEV'">
<td class="caption" valign="top" colspan="4">&#xA0;-&#xA0;<xsl:value-of select="rsv_ruimte[volgnr=$min_volgnr]/omschrijving"/>&#xA0;</td>
</xsl:if>
</tr>
<xsl:if test="$srtnotificatiecode='RESINF'">
@@ -1998,31 +2089,98 @@
<td colspan="4">
<p>Beste <xsl:value-of select="rsv_ruimte/contact_user/voornaam"/>&#xA0;<xsl:value-of select="rsv_ruimte[volgnr=1]/contact_user/naam"/>,</p>
<p>U heeft een optie geplaatst voor <xsl:value-of select="rsv_ruimte/van/datum"/>. De gegevens hiervan vindt u hieronder. Over een week loopt de annuleringstermijn van deze reservering af. Indien u deze optionele reservering wenst te annuleren, kunt u dat deze week nog kosteloos doen.</p>
<p>U heeft een reservering geplaatst voor <xsl:value-of select="rsv_ruimte/van/datum"/>.</p>
<p>Wij zullen niet geannuleerde opties twee weken voor aanvang van de reservering voor uw gemak op definitief zetten; u hoeft ons hiervoor dus geen bevestiging te sturen.</p>
<p> Mocht de reservering niet meer van toepassing zijn, horen wij dat graag zo spoedig mogelijk.</p>
<p>Wij willen tevens van de gelegenheid gebruik maken om u er aan te herinneren dat u tot uiterlijk 15 dagen voor aanvang van uw reservering, nieuwe aanvragen kunt doen in Facilitor voor catering, zaalopstelling en eventuele aanvullende voorzieningen en/of bijzonderheden.</p>
<p>Mocht u nog vragen hebben omtrent uw reservering, neemt u dan gerust even contact op met de afdeling Events &amp; Sales via servicedesk@nyenrode.nl</p>
<p>Mocht u vragen hebben omtrent uw reservering, neemt u dan contact op met onze Servicedesk via servicedesk@nyenrode.nl of telefoonnummer 0346-291234.</p>
<p>Met vriendelijke groet,</p>
<p>Events &amp; Sales<br/>
0346 29 1544<br/>
servicedesk@nyenrode.nl</p>
<p>Events</p>
</td>
</tr>
<tr>
<td height="50px"/>
</tr>
</xsl:if>
<xsl:if test="$srtnotificatiecode='RESNEW'">
<tr>
<td colspan="4">
<p>Beste <xsl:value-of select="rsv_ruimte/contact_user/voornaam"/>&#xA0;<xsl:value-of select="rsv_ruimte[volgnr=1]/contact_user/naam"/>,</p>
<p>Hartelijk dank voor de zaalreservering op <xsl:value-of select="rsv_ruimte/van/datum"/>.</p>
<p> U ontvangt 4 weken voor aanvang een bevestiging van de definitieve ruimte. </p>
<p>Mocht u vragen hebben omtrent uw reservering, neemt u dan contact op met onze Servicedesk via servicedesk@nyenrode.nl of telefoonnummer 0346-291234.</p>
<p>Met vriendelijke groet,</p>
<p>Events</p>
</td>
</tr>
<tr>
<td height="50px"/>
</tr>
</xsl:if>
<xsl:if test="$srtnotificatiecode='RESBEV'">
<tr>
<td colspan="4">
<p>Beste <xsl:value-of select="rsv_ruimte/contact_user/voornaam"/>&#xA0;<xsl:value-of select="rsv_ruimte[volgnr=1]/contact_user/naam"/>,</p>
<p>U heeft een reservering geplaatst op <xsl:value-of select="rsv_ruimte/van/datum"/>.</p>
<p> Wij hebben de volgende ruimte definitief voor u gereserveerd: </p>
<p> <b> <xsl:value-of select="rsv_ruimte/res_ruimte/nr"/> </b> </p>
<p> Vergeet u niet uw reservering te controleren en eventuele cateringwensen en voorzieningen kenbaar te maken in Facilitor? </p>
<p>Mocht u vragen hebben omtrent uw reservering, neemt u dan contact op met onze Servicedesk via servicedesk@nyenrode.nl of telefoonnummer 0346-291234.</p>
<p>Met vriendelijke groet,</p>
<p>Events</p>
</td>
</tr>
<tr>
<td height="50px"/>
</tr>
</xsl:if>
<xsl:if test="$srtnotificatiecode='RESDEL'">
<tr>
<td colspan="4">
<p>Beste <xsl:value-of select="rsv_ruimte/contact_user/voornaam"/>&#xA0;<xsl:value-of select="rsv_ruimte[volgnr=1]/contact_user/naam"/>,</p>
<p>Uw reservering op <xsl:value-of select="rsv_ruimte/van/datum"/> is geannuleerd.</p>
<p>Mocht u vragen hebben omtrent uw reservering, neemt u dan contact op met onze Servicedesk via servicedesk@nyenrode.nl of telefoonnummer 0346-291234.</p>
<p>Met vriendelijke groet,</p>
<p>Events</p>
</td>
</tr>
<tr>
<td height="50px"/>
</tr>
</xsl:if>
<xsl:if test="$srtnotificatiecode='CUST01'">
<tr>
<td colspan="4">
<p>Beste <xsl:value-of select="rsv_ruimte/contact_user/naam_friendly"/>,</p>
<p>De kosten van geleverde catering van reservering <xsl:element name="a"><xsl:attribute name="href"> https://<xsl:value-of select="$FacilitorRoot"/>/default.asp?sso=1&amp;<xsl:value-of select="../bookmarks/reservering"/><xsl:value-of select="rsv_ruimte/key"/></xsl:attribute><xsl:value-of select="key"/>/<xsl:value-of select="$min_volgnr"/></xsl:element> (<xsl:value-of select="rsv_ruimte/omschrijving"/>) staan voor u ter goedkeuring klaar in Facilitor.</p>
<p>De kosten van geleverde catering van reservering <xsl:element name="a">
<xsl:attribute name="href"> https://<xsl:value-of select="$FacilitorRoot"/>/default.asp?sso=1&amp;<xsl:value-of select="../bookmarks/reservering"/>
<xsl:value-of select="rsv_ruimte/key"/>
</xsl:attribute>
<xsl:value-of select="key"/>/<xsl:value-of select="$min_volgnr"/>
</xsl:element> (<xsl:value-of select="rsv_ruimte/omschrijving"/>) staan voor u ter goedkeuring klaar in Facilitor.</p>
<p>Wilt u de gegevens controleren op correctheid en vervolgens afvinken voor akkoord?</p>
<p>Na akkoord worden de kosten automatisch afgeschreven van budgetnummer <xsl:value-of select="rsv_ruimte/kostenplaats/nr"/>.</p>
@@ -2045,7 +2203,12 @@
<td colspan="4">
<p>Dear <xsl:value-of select="rsv_ruimte/contact_user/naam_friendly"/>,</p>
<p>The costs of the catering delivered for reservation <xsl:element name="a"><xsl:attribute name="href"> https://<xsl:value-of select="$FacilitorRoot"/>/default.asp?sso=1&amp;<xsl:value-of select="../bookmarks/reservering"/><xsl:value-of select="rsv_ruimte/key"/></xsl:attribute><xsl:value-of select="key"/>/<xsl:value-of select="$min_volgnr"/></xsl:element> (<xsl:value-of select="rsv_ruimte/omschrijving"/>) is waiting for you for approval in Facilitor.</p>
<p>The costs of the catering delivered for reservation <xsl:element name="a">
<xsl:attribute name="href"> https://<xsl:value-of select="$FacilitorRoot"/>/default.asp?sso=1&amp;<xsl:value-of select="../bookmarks/reservering"/>
<xsl:value-of select="rsv_ruimte/key"/>
</xsl:attribute>
<xsl:value-of select="key"/>/<xsl:value-of select="$min_volgnr"/>
</xsl:element> (<xsl:value-of select="rsv_ruimte/omschrijving"/>) is waiting for you for approval in Facilitor.</p>
<p>Please check the data for accuracy and then check off if approved</p>
<p>When the costs are approved they will automatically be deducted from budget number <xsl:value-of select="rsv_ruimte/kostenplaats/nr"/>.</p>
@@ -2064,14 +2227,7 @@
<td height="50px"/>
</tr>
</xsl:if>
<xsl:if test="$srtnotificatiecode='RESDEL'">
<tr>
<td width="20%" class="label">
<xsl:value-of select="//lcl/RES/begintijd"/>
</td>
<td width="80%" class="value">: <xsl:value-of select="rsv_ruimte/van/datum"/>&#xA0;<xsl:value-of select="rsv_ruimte/van/tijd"/></td>
</tr>
</xsl:if>
<tr>
<td height="25px"/>
</tr>
@@ -2080,7 +2236,8 @@
<td width="20%" class="label">
<xsl:value-of select="//lcl/RES/behandeld_door"/>
</td>
<td width="80%" class="value">: <xsl:value-of select="ingevoerd_user/naam_full"/></td>
<td width="80%" class="value">: <xsl:value-of select="ingevoerd_user/naam_full"/>
</td>
</tr>
<tr>
<td height="30px"/>
@@ -2090,9 +2247,6 @@
<td colspan="2" class="tekst">
<xsl:choose>
<xsl:when test="$srtnotificatiecode='RESNEW'"/>
<xsl:when test="$srtnotificatiecode='RESDEL'">
<xsl:value-of select="//lcl/RES/reservering_vervallen"/>
</xsl:when>
<xsl:otherwise>
<xsl:call-template name="res_begintext"/>
</xsl:otherwise>
@@ -2100,11 +2254,12 @@
</td>
</tr>
<xsl:choose>
<xsl:when test="$srtnotificatiecode!='RESDEL' and $srtnotificatiecode!='CUST01'">
<xsl:when test="$srtnotificatiecode!='RESDEL' and $srtnotificatiecode!='CUST01'and $srtnotificatiecode!='RESNEW'and $srtnotificatiecode!='RESINF'and $srtnotificatiecode!='RESBEV'">
<table border="0" bordercolor="#000000" width="99%">
<tr>
<td/>
<td style="text-align:right"><b>OFFERTE</b>
<td style="text-align:right">
<b>OFFERTE</b>
</td>
</tr>
<tr>
@@ -2113,7 +2268,8 @@
</td>
</tr>
<tr>
<td style="text-align:left"><b>Gegevens bijeenkomst</b>
<td style="text-align:left">
<b>Gegevens bijeenkomst</b>
</td>
</tr>
</table>
@@ -2156,7 +2312,8 @@
<td>
<strong>
<xsl:value-of select="rsv_ruimte[volgnr=$min_volgnr]/kenmerk[@naam='Company']/bedrijf/naam"/>
<br/>T.a.v. <xsl:value-of select="rsv_ruimte[volgnr=$min_volgnr]/kenmerk[@naam='External contact']"/><br/>
<br/>T.a.v. <xsl:value-of select="rsv_ruimte[volgnr=$min_volgnr]/kenmerk[@naam='External contact']"/>
<br/>
<xsl:value-of select="rsv_ruimte[volgnr=$min_volgnr]/kenmerk[@naam='Company']/bedrijf/post_adres"/>
<br/>
<xsl:value-of select="rsv_ruimte[volgnr=$min_volgnr]/kenmerk[@naam='Company']/bedrijf/post_postcode"/>,<xsl:text>&#xA0;</xsl:text>
@@ -2233,7 +2390,8 @@
<xsl:value-of select="res_ruimte/nr"/>
<br/>(max. <xsl:value-of select="res_ruimte/bezoekers"/>&#xA0;<xsl:value-of select="//lcl/FAC/personen"/>)</td>
<td width="12%" class="resresult" style="text-align:left">
<xsl:value-of select="bezoekers"/>&#xA0;<xsl:value-of select="//lcl/FAC/personen"/></td>
<xsl:value-of select="bezoekers"/>&#xA0;<xsl:value-of select="//lcl/FAC/personen"/>
</td>
<td width="12%" class="resresult" style="text-align:right">
<xsl:value-of select="van/datum"/>
</td>
@@ -2428,7 +2586,8 @@
<xsl:when test="rsv_ruimte/kostenplaats/extern='1'">
<xsl:if test="rsv_ruimte[volgnr=$min_volgnr]/kenmerk[@naam='Additionele informatie t.b.v. deze offerte']!=''">
<tr>
<td colspan="2"><b>Additionele informatie t.b.v. deze offerte</b>
<td colspan="2">
<b>Additionele informatie t.b.v. deze offerte</b>
</td>
</tr>
<tr>
@@ -2442,14 +2601,17 @@
</xsl:when>
<xsl:otherwise>
<tr>
<td colspan="2"><b>Aanvullende gegevens</b>
<td colspan="2">
<b>Aanvullende gegevens</b>
</td>
</tr>
<xsl:for-each select="rsv_ruimte[volgnr=$min_volgnr]/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 width="15%" class="label"><xsl:value-of select="@naam"/></td>
<td width="15%" class="label">
<xsl:value-of select="@naam"/>
</td>
<td width="84%" class="value" colspan="7">:
<xsl:call-template name="linebreaks">
<xsl:with-param name="string" select="."/>
@@ -2497,7 +2659,8 @@
<strong>Akkoord Nyenrode Business Universiteit</strong>
</td>
<td width="50%">
<strong>Akkoord <xsl:value-of select="rsv_ruimte[volgnr=$min_volgnr]/kenmerk[@naam='Company']/bedrijf/naam"/></strong>
<strong>Akkoord <xsl:value-of select="rsv_ruimte[volgnr=$min_volgnr]/kenmerk[@naam='Company']/bedrijf/naam"/>
</strong>
</td>
</tr>
<tr>
@@ -2532,7 +2695,8 @@
<xsl:text>&#xA0;</xsl:text>
<xsl:value-of select="rsv_ruimte[volgnr=$min_volgnr]/contact_user/tussenvoegsel"/>
</xsl:if>
<xsl:text>&#xA0;</xsl:text><xsl:value-of select="rsv_ruimte[volgnr=$min_volgnr]/contact_user/naam"/>
<xsl:text>&#xA0;</xsl:text>
<xsl:value-of select="rsv_ruimte[volgnr=$min_volgnr]/contact_user/naam"/>
</td>
<td>
<xsl:value-of select="rsv_ruimte[volgnr=$min_volgnr]/kenmerk[@naam='External contact']"/>
@@ -2555,15 +2719,29 @@
</xsl:when>
</xsl:choose>
</table>
<!-- Bevestiging reservering -->
</TD>
<TD WIDTH="30" ROWSPAN="30" ID="RECHTERMARGE"/>
</TR>
</TABLE>
</xsl:template>
</xsl:stylesheet><!-- Stylesheet edited using Stylus Studio - (c) 2004-2007. Progress Software Corporation. All rights reserved. --><!-- Stylesheet edited using Stylus Studio - (c) 2004-2007. Progress Software Corporation. All rights reserved. --><!-- Stylesheet edited using Stylus Studio - (c) 2004-2007. Progress Software Corporation. All rights reserved. --><!-- Stylus Studio meta-information - (c) 2004-2007. Progress Software Corporation. All rights reserved.
</table>
<!-- Bevestiging reservering -->
</TD>
<TD WIDTH="30" ROWSPAN="30" ID="RECHTERMARGE"/>
</TR>
</TABLE>
</xsl:template>
</xsl:stylesheet>
<!-- Stylesheet edited using Stylus Studio - (c) 2004-2007. Progress Software Corporation. All rights reserved. -->
<!-- Stylesheet edited using Stylus Studio - (c) 2004-2007. Progress Software Corporation. All rights reserved. -->
<!-- Stylesheet edited using Stylus Studio - (c) 2004-2007. Progress Software Corporation. All rights reserved. -->
<!-- Stylus Studio meta-information - (c) 2004-2007. Progress Software Corporation. All rights reserved.
<metaInformation>
<scenarios ><scenario default="yes" name="Scenario1" userelativepaths="yes" externalpreview="no" url="..\..\..\TEMP\NYBU_files\reservering15969_20160510101603.xml" htmlbaseurl="" outputurl="" processortype="internal" useresolver="yes" profilemode="0" profiledepth="" profilelength="" urlprofilexml="" commandline="" additionalpath="" additionalclasspath="" postprocessortype="none" postprocesscommandline="" postprocessadditionalpath="" postprocessgeneratedext="" validateoutput="no" validator="internal" customvalidator=""/></scenarios><MapperMetaTag><MapperInfo srcSchemaPathIsRelative="yes" srcSchemaInterpretAsXML="no" destSchemaPath="" destSchemaRoot="" destSchemaPathIsRelative="yes" destSchemaInterpretAsXML="no"/><MapperBlockPosition></MapperBlockPosition><TemplateContext></TemplateContext><MapperFilter side="source"></MapperFilter></MapperMetaTag>
<scenarios >
<scenario default="yes" name="Scenario1" userelativepaths="yes" externalpreview="no" url="..\..\..\TEMP\NYBU_files\reservering15969_20160510101603.xml" htmlbaseurl="" outputurl="" processortype="internal" useresolver="yes" profilemode="0" profiledepth="" profilelength="" urlprofilexml="" commandline="" additionalpath="" additionalclasspath="" postprocessortype="none" postprocesscommandline="" postprocessadditionalpath="" postprocessgeneratedext="" validateoutput="no" validator="internal" customvalidator=""/>
</scenarios>
<MapperMetaTag>
<MapperInfo srcSchemaPathIsRelative="yes" srcSchemaInterpretAsXML="no" destSchemaPath="" destSchemaRoot="" destSchemaPathIsRelative="yes" destSchemaInterpretAsXML="no"/>
<MapperBlockPosition></MapperBlockPosition>
<TemplateContext></TemplateContext>
<MapperFilter side="source"></MapperFilter>
</MapperMetaTag>
</metaInformation>
-->