svn path=/Website/branches/v2017.3/; revision=38364
This commit is contained in:
Robin Stoker
2018-06-29 15:48:40 +00:00
parent ee8c99de5f
commit aa28658bfe

View File

@@ -1482,6 +1482,7 @@
</tr>
</table>
<div style="page-break-before:always">&#xA0;</div>
<xsl:call-template name="pageheader"/>
<table border="0" width="100%" bordercolor="#000000" CELLPADDING="2" WIDTH="100%">
<tr>
<td align="left" width="100%" class="caption" colspan="4">Leveringsoverzicht <xsl:value-of select="bestelling/key"/>
@@ -1696,6 +1697,84 @@
<tr>
<td colspan="2">Functie: &#160; <br/>&#xA0; <br/>&#xA0; <br/>&#xA0;</td>
</tr>
</table>
</table>
</xsl:template>
<!-- Nu volgt de uitgegeven middelen rapportage print -->
<xsl:template match="rapport">
<xsl:if test="@view='dvon_v_rap_bezit_extra_print'">
<xsl:choose>
<xsl:when test="$mode='print'">
<xsl:call-template name="pageheader"/>
<table border="0" width="100%" CELLPADDING="2" WIDTH="100%">
<tr>
<td align="left" width="100%" sytle="font-size:20pt;" colspan="4"><b>Uitgegeven middelen</b></td>
</tr>
<tr>&#xA0;</tr>
<xsl:if test="count(rapport_data/data_row)=0">
<tr><td colspan="4"><center><b>Geen gegevens gevonden</b></center></td></tr>
</xsl:if>
<table cellpadding="1" cellspacing="0" border="1px solid;" width="100%">
<xsl:for-each select="rapport_data/data_row">
<xsl:sort select="DISCIPLINE"/>
<xsl:sort select="DEEL_SOORT"/>
<xsl:if test="position()=1">
<tr>
<td style="font-size:10pt;"><b>Discipline</b></td>
<td style="font-size:10pt;"><b>Objectsoort</b></td>
<td style="font-size:10pt;"><b>Identificatie</b></td>
<td style="font-size:10pt;"><b>Maat</b></td>
<td style="font-size:10pt;"><b>Eigenaar</b></td>
</tr>
</xsl:if>
<tr>
<td class="tekst"><xsl:value-of select="DISCIPLINE"/></td>
<td class="tekst"><xsl:value-of select="DEEL_SOORT"/></td>
<td class="tekst"><xsl:value-of select="DEEL_OMS"/></td>
<td class="tekst"><xsl:value-of select="MAAT"/></td>
<td class="tekst"><xsl:value-of select="EIGENAAR"/></td>
</tr>
</xsl:for-each>
</table>
<table border="0" width="100%" CELLPADDING="2" WIDTH="100%">
<tr>
<td height="150px"/>
</tr>
</table>
<table cellpadding="1" cellspacing="0" border="1px solid;" width="100%">
<tr>
<td colspan="2">Naam: &#160; <br/>&#xA0; <br/>&#xA0; <br/>&#xA0;</td>
<td colspan="2" rowspan="3">Handtekening: &#160; &#160; &#160; &#160;<br/>&#xA0; <br/>&#xA0; <br/>&#xA0;</td>
</tr>
<tr>
<td colspan="2">Functie: &#160; <br/>&#xA0; <br/>&#xA0; <br/>&#xA0;</td>
</tr>
<tr>
<td colspan="2">Datum: &#160; <br/>&#xA0; <br/>&#xA0; <br/>&#xA0;</td>
</tr>
</table>
</table>
</xsl:when>
<xsl:otherwise>
<html>
<xsl:comment>================================ RAPPORT ==============================</xsl:comment>
<xsl:comment>FACILITOR default XSL template for rapport</xsl:comment>
<xsl:call-template name="htmlhead"/>
<body>
<table>
<xsl:for-each select="rapport_data/data_row">
<xsl:sort select="."/>
<tr>
<td>
<xsl:value-of select="current()"/>
</td>
</tr>
</xsl:for-each>
</table>
</body>
</html>
</xsl:otherwise>
</xsl:choose>
</xsl:if>
</xsl:template>
</xsl:stylesheet>