This is the mail archive of the xsl-list@mulberrytech.com mailing list .


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

What is wrong with this?


Hello,
can some one please let me know what is wrong with the code below.

	
<xsl:template match = "distribution-transport-load">
<xsl:call-template name = "get-supply-total">
<xsl:with-param name = "supplyroot" select = "."/>
</xsl:call-template>
		
</xsl:template>
	
	
<xsl:template name = "get-supply-total">
<xsl:param name = "supplyroot"/>
<xsl:choose>
<xsl:when test = "$supplyroot">
<xsl:variable name = "first" select= "$supplyroot[1]"/>
<xsl:variable name = "remaining-total">
<!-- for some reasons it can not gets in this block of code,there fore does
not increment the total
-->					
					<xsl:call-template name = "get-supply-total">
						<xsl:with-param name = "supplyroot" select = "$supplyroot[position()!=1]"/>

</xsl:call-template>
</xsl:variable>
	
<xsl:value-of select = "$first/load-quantity + $remaining-total"/>
</xsl:when>
			<xsl:otherwise>0</xsl:otherwise>
		</xsl:choose>
		
	</xsl:template>

Thanks in advance

 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]