AAIT#33547 -- Fout bij opvragen afspraak bon.

svn path=/Website/branches/v2015.1/; revision=25996
This commit is contained in:
Arthur Egberink
2015-08-18 14:50:01 +00:00
parent dfa80534a2
commit c2e10c7eca

View File

@@ -297,6 +297,27 @@
</table> </table>
</xsl:template> </xsl:template>
<xsl:template name="string-replace-all">
<xsl:param name="text"/>
<xsl:param name="replace"/>
<xsl:param name="by"/>
<xsl:choose>
<xsl:when test="contains($text, $replace)">
<xsl:value-of select="substring-before($text,$replace)"/>
<xsl:value-of select="$by"/>
<xsl:call-template name="string-replace-all">
<xsl:with-param name="text" select="substring-after($text,$replace)"/>
<xsl:with-param name="replace" select="$replace"/>
<xsl:with-param name="by" select="$by"/>
</xsl:call-template>
</xsl:when>
<xsl:otherwise>
<xsl:value-of select="$text"/>
</xsl:otherwise>
</xsl:choose>
</xsl:template>
<xsl:template match="rapport" mode="cust"> <xsl:template match="rapport" mode="cust">
<xsl:if test="@view='aait_v_rap_infobord' or @view='AAIT_V_RAP_INFOBORD'"> <xsl:if test="@view='aait_v_rap_infobord' or @view='AAIT_V_RAP_INFOBORD'">
<html> <html>
@@ -895,4 +916,4 @@ function startAutoRefreshTim() {
</html> </html>
</xsl:if> </xsl:if>
</xsl:template> </xsl:template>
</xsl:stylesheet><!-- Stylesheet edited using Stylus Studio - (c) 2004-2007. Progress Software Corporation. All rights reserved. --> </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. -->