xsl-list
[Top] [All Lists]

Re: [xsl] Get the first Array element

2012-05-11 06:28:05
First test had a space it seems, so never matched

So something like: (second part not needed I guess, test might better)
 <xsl:choose>
    <xsl:when test="cac:TaxTotal[child::cbc:Amount][1]/cbc:Amount &gt;= 0">
     <xsl:value-of
select="format-number(floor(cac:TaxTotal[child::cbc:Amount][1]/cbc:Amount),'+0000000000000;-0000000000000')
"/>
    </xsl:when>

    <xsl:when test="cac:TaxTotal[child::cbc:Amount][1]/cbc:Amount &lt; 0">
     <xsl:value-of
select="format-number(floor(cac:TaxTotal[child::cbc:Amount][1]/cbc:Amount),'+0000000000000;-0000000000000')
"/>
    </xsl:when>

  <xsl:otherwise>00000000000000</xsl:otherwise>
</xsl:choose>

--~------------------------------------------------------------------
XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
To unsubscribe, go to: http://lists.mulberrytech.com/xsl-list/
or e-mail: <mailto:xsl-list-unsubscribe(_at_)lists(_dot_)mulberrytech(_dot_)com>
--~--