XSL:如何总计?

时间:2016-04-18 03:56:16

标签: xml xslt-1.0 xls

我有以下XML源结构:

<Bills>
    <bill ID ="02">
        <Product IDP="MH001" amount="10" price="20"/>
        <Product IDP="MH002" amount="20" price="20"/>
        <Product IDP="MH003" amount="30" price="20"/>
        <Product IDP="MH004" amount="50" price="20"/>
        <Product IDP="MH005" amount="60" price="20"/>
    </bill>
    <bill ID ="01">
        <Product IDP="MH101" amount="10" price="20"/>
        <Product IDP="MH102" amount="10" price="20"/>
        <Product IDP="MH103" amount="20" price="20"/>
        <Product IDP="MH104" amount="20" price="20"/>
        <Product IDP="MH105" amount="10" price="20"/>
    </bill>
</Bills>

HTMX视图

如何计算总数?
请帮忙。非常感谢

1 个答案:

答案 0 :(得分:0)

您可能会发现我的回答很有帮助,因为它基本上是同一个问题:

Sum of Multiplied Values