xslt显示总和的前5位

时间:2012-10-23 05:46:25

标签: xml xslt xpath

长期读者,第一次在这里发布海报。我通常能够从网站上的其他帖子获得大量信息,但我无法找到解决此特定问题的方法。 使用xslt,我现在能够通过向我的下方xslt模板添加另一个$grandtotal变量并在每个模板中添加$sum来显示每个客户发票的子总数,然后显示这些发票的总数迭代循环。

我现在需要做的是找到排名前5位的总发票。

这是我的XML缩短版本:

<bits>
    <client type="Commercial">
    <clientid>1</clientid>
            <inv>
            <invno>1</invno>
                <product>
                    <productid>321</productid>
                    <productprice>99.00</productprice>
                    <totalqty>2</totalqty>
                </product>
                <product>
                    <productid>333</productid>
                    <productprice>299.00</productprice>
                    <totalqty>1</totalqty>
            </product>
        </inv>
            <inv>
            <invno>2</invno>
                <product>
                    <productid>321</productid>
                    <productprice>99.00</productprice>
                    <totalqty>2</totalqty>
                </product>
                <product>
                    <productid>333</productid>
                    <productprice>299.00</productprice>
                    <totalqty>2</totalqty>
            </product>
        </inv>
    </client>
    <client type="Government">
        <clientid>2</clientid>
        <inv>
            <invno>3</invno>
            <product>
                <productid>399</productid>
                <productprice>1469.00</productprice>
                <totalqty>1</totalqty>
                </product>
            <product>
                <productid>354</productid>
                <productprice>15.00</productprice>
                <totalqty>1</totalqty>
            </product>
                <product>
                <productid>311</productid>
                <productprice>58.00</productprice>
                <totalqty>1</totalqty>
            </product>
                <product>
                    <productid>341</productid>
                    <productprice>199.00</productprice>
                    <totalqty>1</totalqty>
                </product>
        </inv>
    </client>
</bits>

我使用以下代码汇总每个客户的发票总额:

<xsl:for-each select="//client">
    <xsl:call-template name="sum">
        <xsl:with-param name="nodes" select="inv/product"/>
    </xsl:call-template>
</xsl:for-each>

<xsl:template name="sum">
<xsl:param name="nodes" />
<xsl:param name="sum" select="0" />
<xsl:variable name="current" select="$nodes[1]" />
<xsl:if test="$current">
  <xsl:call-template name="sum">
    <xsl:with-param name="nodes" select="$nodes[position() &gt; 1]" />
    <xsl:with-param name="sum" select="$sum + $current/totalqty * $current/productprice" />
  </xsl:call-template>
</xsl:if>
<xsl:if test="not($current)">
  <xsl:value-of select="$sum" />
</xsl:if>

我想要做的是重复使用此代码,同时显示5个最高求和发票及其对应的<clientid>type,例如:

前5名:

  1. Clientid:2,发票编号:3,发票总额:$ 1741,类型:政府
  2. Clientid:1,发票号码:2,发票总额:$ 796,类型:商业
  3. Clientid:1,发票编号:1,发票总额:$ 497,类型:商业
  4. 过去我使用了for循环<xsl:for-each select=...> <xsl:sort select="Total" data-type="number" order="descending"/> ... <xsl:if test="position()&lt;6"> 显示前5名,但这是在查看储值。 我需要另一个解决方案。

    此时我需要一些提示,因为我对标记仍然很新!

1 个答案:

答案 0 :(得分:1)

此XSLT 1.0样式表......

<xsl:stylesheet version="1.0"
  xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
  xmlns:exsl="http://exslt.org/common"
  exclude-result-prefixes="xsl exsl">
<xsl:output method="html" indent="yes" />
<xsl:strip-space elements="*" />

<xsl:template match="/*">
  <table>
    <th><td>Client id</td><td>Invoice no</td><td>Invoice total</td>
        <td>Type</td></th>
    <xsl:variable name="rows">
      <xsl:apply-templates select="client/inv" />
    </xsl:variable>
    <xsl:for-each select="exsl:node-set($rows)/tr">
      <xsl:sort select="td[4]" data-type="number" order="descending" />
      <xsl:variable name="rank" select="position()" />
      <xsl:copy-of select="self::node()[$rank &lt; 6]" />
    </xsl:for-each>
  </table>
</xsl:template>

<xsl:template match="inv">
  <tr>
    <td><xsl:value-of select="../clientid" /></td>
    <td><xsl:value-of select="invno" /></td>
    <xsl:variable name="gross-prices">
      <xsl:for-each select="product">
        <t><xsl:value-of select="productprice * totalqty" /></t> 
      </xsl:for-each>  
    </xsl:variable>  
    <td><xsl:value-of select="sum( exsl:node-set($gross-prices)/t)" /></td>
    <td><xsl:value-of select="../@type" /></td>
  </tr>
</xsl:template>

</xsl:stylesheet>

...应用于此输入时...

<bits>
    <client type="Commercial">
    <clientid>1</clientid>
            <inv>
            <invno>1</invno>
                <product>
                    <productid>321</productid>
                    <productprice>99.00</productprice>
                    <totalqty>2</totalqty>
                </product>
                <product>
                    <productid>333</productid>
                    <productprice>299.00</productprice>
                    <totalqty>1</totalqty>
            </product>
        </inv>
            <inv>
            <invno>2</invno>
                <product>
                    <productid>321</productid>
                    <productprice>99.00</productprice>
                    <totalqty>2</totalqty>
                </product>
                <product>
                    <productid>333</productid>
                    <productprice>299.00</productprice>
                    <totalqty>2</totalqty>
            </product>
        </inv>
    </client>
    <client type="Government">
        <clientid>2</clientid>
        <inv>
            <invno>3</invno>
            <product>
                <productid>399</productid>
                <productprice>1469.00</productprice>
                <totalqty>1</totalqty>
                </product>
            <product>
                <productid>354</productid>
                <productprice>15.00</productprice>
                <totalqty>1</totalqty>
            </product>
                <product>
                <productid>311</productid>
                <productprice>58.00</productprice>
                <totalqty>1</totalqty>
            </product>
                <product>
                    <productid>341</productid>
                    <productprice>199.00</productprice>
                    <totalqty>1</totalqty>
                </product>
        </inv>
    </client>
</bits>

<强> ...产量...

<table>
  <th>
    <td>Client id</td>
    <td>Invoice no</td>
    <td>Invoice total</td>
    <td>Type</td>
  </th>
  <tr>
    <td>2</td>
    <td>3</td>
    <td>1741</td>
    <td>Government</td>
  </tr>
  <tr>
    <td>1</td>
    <td>2</td>
    <td>796</td>
    <td>Commercial</td>
  </tr>
  <tr>
    <td>1</td>
    <td>1</td>
    <td>497</td>
    <td>Commercial</td>
  </tr>
</table>

备注

只要我们有权访问node-set(),我们就不需要折叠或分而治之来计算总和。我们可以简单地使用原生的sum()函数。