PCHD#55207 Notificatie cateraar
svn path=/Website/branches/v2018.1/; revision=39822
This commit is contained in:
@@ -512,7 +512,7 @@
|
||||
<xsl:value-of select="//lcl/FAC/omschrijving"/>:</b>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<tr>
|
||||
<td align="left" colspan="3">
|
||||
<xsl:call-template name="linebreaks">
|
||||
<xsl:with-param name="string" select="omschrijving"/>
|
||||
@@ -640,7 +640,7 @@
|
||||
</td>
|
||||
<td style="width:1in;text-align:right">
|
||||
<b>€ <xsl:value-of select="format-number($kosten, '0,00', 'european')"/>
|
||||
</b>
|
||||
</b>
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
@@ -707,10 +707,10 @@
|
||||
7320 AJ  Apeldoorn<br/>
|
||||
</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
<br/>Facturen zonder referentie, kopie zullen worden geretourneerd. De factuur <b> uiterlijk 3 weken na oplevering </b> toezenden.
|
||||
|
||||
<br/>Facturen zonder referentie, kopie zullen worden geretourneerd. De factuur <b> uiterlijk 3 weken na oplevering </b> toezenden.
|
||||
|
||||
</td>
|
||||
|
||||
|
||||
</tr>
|
||||
</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
@@ -725,4 +725,151 @@
|
||||
</table>
|
||||
</xsl:template>
|
||||
|
||||
|
||||
<xsl:template match="rapport">
|
||||
<xsl:if test="@view ='PCHD_V_RAP_CATRES1'">
|
||||
<html>
|
||||
<table width="100%" CLASS='DefResultsetTable' font-family="Verdana">
|
||||
<tr>
|
||||
<td colspan = "4">
|
||||
<br/>
|
||||
Beste cateraar,<br/><br/>
|
||||
Hierbij het meest actuele overzicht van de cateringreserveringen voor morgen. Deze reserveringen kunnen nog gewijzigd worden tot morgen 09.00 uur. <br/><br/>
|
||||
Morgen om 09.00 uur volgt het definitieve overzicht voor die dag. <br/><br/>
|
||||
Alvast bedankt voor de lunch!<br/><br/>
|
||||
Met hartelijke groet,<br/><br/>
|
||||
PCH Infra
|
||||
</td>
|
||||
</tr>
|
||||
<tr height="20px">
|
||||
<td colspan="6"/>
|
||||
</tr>
|
||||
<xsl:if test=" count(rapport_data/data_row) = 0">
|
||||
<tr>
|
||||
<td><center><b>Geen gegevens gevonden</b></center></td>
|
||||
</tr>
|
||||
</xsl:if>
|
||||
<tr height="20px">
|
||||
<td colspan="6"/>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<table width="98%">
|
||||
<xsl:variable name="sortedall">
|
||||
<xsl:for-each select="rapport_data/data_row">
|
||||
<xsl:copy-of select="."/>
|
||||
</xsl:for-each>
|
||||
</xsl:variable>
|
||||
<tr>
|
||||
<th width="5%" style="text-align:left">Resnr</th>
|
||||
<th width="10%" style="text-align:left">Gebouw</th>
|
||||
<th width="10%" style="text-align:left">Ruimtenr</th>
|
||||
<th width="10%" style="text-align:left">Contactp</th>
|
||||
<th width="20%" style="text-align:left">Kostenpl</th>
|
||||
<th width="10%" style="text-align:left">Datum</th>
|
||||
<th width="5%" style="text-align:left">Van</th>
|
||||
<th width="5%" style="text-align:left">Tot</th>
|
||||
<th width="20%" style="text-align:left">Catering</th>
|
||||
<th width="5%" style="text-align:left">Aantal</th>
|
||||
</tr>
|
||||
<xsl:for-each select="rapport_data/data_row">
|
||||
<tr>
|
||||
<td width="5%"><xsl:value-of select="RESERVERINGSNR"/></td>
|
||||
<td width="10%"><xsl:value-of select="GEBOUW"/></td>
|
||||
<td width="10%"><xsl:value-of select="RUIMTENR"/></td>
|
||||
<td width="10%"><xsl:value-of select="CONTACTPERSOON"/></td>
|
||||
<td width="20%"><xsl:value-of select="KOSTENPLAATS"/></td>
|
||||
<td width="10%"><xsl:value-of select="substring(DATUM, 1, string-length(DATUM) - 9)"/></td>
|
||||
<td width="5%"><xsl:value-of select="VAN"/></td>
|
||||
<td width="5%"><xsl:value-of select="TOT"/></td>
|
||||
<td width="20%"><xsl:value-of select="SOORT_CATERING"/></td>
|
||||
<td width="10%"><xsl:value-of select="AANTAL"/></td>
|
||||
</tr>
|
||||
</xsl:for-each>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</html>
|
||||
</xsl:if>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="rapport">
|
||||
<xsl:if test="@view ='PCHD_V_RAP_CATRES2'">
|
||||
<html>
|
||||
<table width="100%" CLASS='DefResultsetTable' font-family="Verdana">
|
||||
<tr>
|
||||
<td colspan = "4">
|
||||
<br/>
|
||||
Beste cateraar,<br/><br/>
|
||||
Hierbij het meest actuele overzicht van de cateringreserveringen voor vandaag. Vanaf nu kan dit niet meer gewijzigd worden. <br/><br/>
|
||||
We zien de lunches graag tegemoet! <br/><br/>
|
||||
Met hartelijke groet,<br/><br/>
|
||||
PCH Infra
|
||||
</td>
|
||||
</tr>
|
||||
<tr height="20px">
|
||||
<td colspan="6"/>
|
||||
</tr>
|
||||
<xsl:if test=" count(rapport_data/data_row) = 0">
|
||||
<tr>
|
||||
<td><center><b>Geen gegevens gevonden</b></center></td>
|
||||
</tr>
|
||||
</xsl:if>
|
||||
<tr height="20px">
|
||||
<td colspan="6"/>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<table width="98%">
|
||||
<xsl:variable name="sortedall">
|
||||
<xsl:for-each select="rapport_data/data_row">
|
||||
<xsl:copy-of select="."/>
|
||||
</xsl:for-each>
|
||||
</xsl:variable>
|
||||
<tr>
|
||||
<th width="5%" style="text-align:left">Resnr</th>
|
||||
<th width="10%" style="text-align:left">Gebouw</th>
|
||||
<th width="10%" style="text-align:left">Ruimtenr</th>
|
||||
<th width="10%" style="text-align:left">Contactp</th>
|
||||
<th width="20%" style="text-align:left">Kostenpl</th>
|
||||
<th width="10%" style="text-align:left">Datum</th>
|
||||
<th width="5%" style="text-align:left">Van</th>
|
||||
<th width="5%" style="text-align:left">Tot</th>
|
||||
<th width="20%" style="text-align:left">Catering</th>
|
||||
<th width="5%" style="text-align:left">Aantal</th>
|
||||
</tr>
|
||||
<xsl:for-each select="rapport_data/data_row">
|
||||
<tr>
|
||||
<td width="5%"><xsl:value-of select="RESERVERINGSNR"/></td>
|
||||
<td width="10%"><xsl:value-of select="GEBOUW"/></td>
|
||||
<td width="10%"><xsl:value-of select="RUIMTENR"/></td>
|
||||
<td width="10%"><xsl:value-of select="CONTACTPERSOON"/></td>
|
||||
<td width="20%"><xsl:value-of select="KOSTENPLAATS"/></td>
|
||||
<td width="10%"><xsl:value-of select="substring(DATUM, 1, string-length(DATUM) - 9)"/></td>
|
||||
<td width="5%"><xsl:value-of select="VAN"/></td>
|
||||
<td width="5%"><xsl:value-of select="TOT"/></td>
|
||||
<td width="20%"><xsl:value-of select="SOORT_CATERING"/></td>
|
||||
<td width="10%"><xsl:value-of select="AANTAL"/></td>
|
||||
</tr>
|
||||
</xsl:for-each>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</html>
|
||||
</xsl:if>
|
||||
</xsl:template>
|
||||
</xsl:stylesheet>
|
||||
<!-- Stylus Studio meta-information - (c) 2004-2009. Progress Software Corporation. All rights reserved.
|
||||
|
||||
<metaInformation>
|
||||
<scenarios/>
|
||||
<MapperMetaTag>
|
||||
<MapperInfo srcSchemaPathIsRelative="yes" srcSchemaInterpretAsXML="no" destSchemaPath="" destSchemaRoot="" destSchemaPathIsRelative="yes" destSchemaInterpretAsXML="no"/>
|
||||
<MapperBlockPosition></MapperBlockPosition>
|
||||
<TemplateContext></TemplateContext>
|
||||
<MapperFilter side="source"></MapperFilter>
|
||||
</MapperMetaTag>
|
||||
</metaInformation>
|
||||
-->
|
||||
Reference in New Issue
Block a user