@@ -152,6 +152,18 @@
|
||||
text-decoration: none;
|
||||
color: #6685AE;
|
||||
}
|
||||
|
||||
.table_daan{
|
||||
border-collapse: collapse;
|
||||
}
|
||||
.th_daan{
|
||||
border: 1px solid black;
|
||||
}
|
||||
|
||||
.td_daan{
|
||||
border: 1px solid black;
|
||||
}
|
||||
|
||||
a:hover{text-decoration: underline;}
|
||||
hr {color: #6685AE;}
|
||||
</style>
|
||||
@@ -162,6 +174,80 @@
|
||||
<html>
|
||||
<xsl:call-template name="htmlhead"/>
|
||||
|
||||
<xsl:if test="@view='logc_v_rap_releasenotes2'">
|
||||
<xsl:choose>
|
||||
<xsl:when test="count(rapport_data/data_row)=0">
|
||||
<tr><td class="tekst"><center><br/><b>Geen gegevens gevonden</b></center></td></tr>
|
||||
</xsl:when>
|
||||
<xsl:otherwise>
|
||||
|
||||
<xsl:variable name="group">
|
||||
<xsl:for-each select="rapport_data/data_row">
|
||||
<!--<xsl:sort select="number(KOPTEKST)" order="ascending" data-type="number"/>-->
|
||||
<xsl:sort select="MODULE" order="ascending"/>
|
||||
<xsl:sort select="MLD_MELDING_KEY" order="descending"/>
|
||||
<xsl:copy-of select="."/>
|
||||
</xsl:for-each>
|
||||
</xsl:variable>
|
||||
|
||||
<xsl:call-template name="pageheader"/>
|
||||
|
||||
|
||||
<body>
|
||||
<table class="table_daan DefResultsetTable" width="100%" cellpadding="2" cellspacing="0" border="1">
|
||||
<thead>
|
||||
<tr>
|
||||
<th class="th_daan" style="width:10%;text-align: center;">Note number</th>
|
||||
<th class="th_daan" style="width:80%;text-align: center;">Note</th>
|
||||
</tr>
|
||||
</thead>
|
||||
|
||||
<tbody>
|
||||
<xsl:for-each select="msxml:node-set($group)/data_row">
|
||||
<xsl:variable name="prev_group">
|
||||
<xsl:choose>
|
||||
<xsl:when test="position()=1">99</xsl:when>
|
||||
<xsl:otherwise><xsl:value-of select="preceding-sibling::data_row[1]/MODULE"/></xsl:otherwise>
|
||||
</xsl:choose>
|
||||
</xsl:variable>
|
||||
<xsl:variable name="this_group">
|
||||
<xsl:value-of select="MODULE"/>
|
||||
</xsl:variable>
|
||||
|
||||
<xsl:if test="$this_group != $prev_group">
|
||||
<!-- <xsl:if test="preceding-sibling::data_row[1]/NOTE !=''"> -->
|
||||
<tr><b><td colspan="6" style="font-size:10pt; width:100%; text-align:center; font-weight:bold;"><xsl:value-of select="MODULE"/></td></b></tr>
|
||||
<!-- </xsl:if> -->
|
||||
</xsl:if>
|
||||
|
||||
|
||||
|
||||
|
||||
<xsl:if test="NOTE != ''">
|
||||
|
||||
|
||||
<tr>
|
||||
<td class="td_daan" style="width:10%;text-align: left;">
|
||||
<xsl:value-of select="MLD_MELDING_KEY"/>
|
||||
</td>
|
||||
<td class="td_daan" style="width:80%;text-align: left;">
|
||||
<xsl:value-of select="NOTE"/>
|
||||
</td>
|
||||
</tr>
|
||||
</xsl:if>
|
||||
</xsl:for-each>
|
||||
</tbody>
|
||||
</table>
|
||||
</body>
|
||||
|
||||
|
||||
</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
</xsl:if>
|
||||
|
||||
|
||||
|
||||
|
||||
<xsl:if test="@view='logc_v_rap_klantoverzicht_mld' or @view='LOGC_V_RAP_KLANTOVERZICHT_MLD'">
|
||||
<table style="width:100%;border-collapse:collapse;" cellpadding="0" cellspacing="0">
|
||||
|
||||
|
||||
Reference in New Issue
Block a user