0

再帰関数を使用して、各請求書と各クライアントについて、計算列の合計 (価格 * 数量) を計算しました。次に、クライアントごとのすべての請求書と、すべてのクライアントのすべての請求書の合計を計算する必要があります。

xml は次のようになります。

  <cinvoices>
        <client> (with information @ client) </client>
            <invoices>
                <products>
                    <product> (information @ product: name, type ect and..
                        <price>123</price>
                        <quantity>21</quantity>
                    </product>
                    <product> (information @ product: name, type ect and..
                        <price>123</price>
                       <quantity>11</quantity>
                   </product>
                </products>
           <invoices>
               <products>
                    <product> (information @ product: name, type ect and..
                    <price>32</price>
                    <quantity>3</quantity>
               </product>
               <product> (information @ product: name, type ect and..
                    <price>12</price>
                    <quantity>9</quantity>
               </product>
           </products>
       </invoices>
    </client>
    <client>

      <same as above>
    </client>
    </cinvoices>

xslt で使用される関数は次のとおりです。

<xsl:template name="sumProducts"> 
        <xsl:param name="pList"/> 
        <xsl:param name="pRunningTotal" select="0"/>         
        <xsl:choose> 
            <xsl:when test="$pList"> 
                <xsl:variable name="varMapPath" select="$pList[1]"/> 
                <xsl:call-template name="sumProducts"> 
                    <xsl:with-param name="pList" select="$pList[position() > 1]"/> 
                    <xsl:with-param name="pRunningTotal" 
                    select="$pRunningTotal + $varMapPath/price *    $varMapPath/quantity"/>                    
                </xsl:call-template> 
            </xsl:when> 
            <xsl:otherwise> 
                $<xsl:value-of select="format-number($pRunningTotal, '#,##0.00')"/> 

            </xsl:otherwise>  

        </xsl:choose> 
              </xsl:template>

===================== 関数は次のように呼び出されます:

  <xsl:call-template name="sumProducts"> 
                             <xsl:with-param name="pList" select="*/*"/> 
                             </xsl:call-template> 

この関数を使用して、各クライアントの請求書の合計と、すべてのクライアントとすべての請求書の総計を計算する方法について考えてください。

ありがとうございました。

4

1 に答える 1

1

最初にあなたの要件を言い換えさせてください。

次のテンプレート:

<xsl:stylesheet version="2.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:fn="http://www.w3.org/2005/xpath-functions">
    <xsl:output method="xml" version="1.0" encoding="UTF-8" indent="yes"/>
    <xsl:template name="sumProducts">
        <xsl:param name="pList"/>
        <xsl:param name="pRunningTotal" select="0"/>
        <xsl:choose>
            <xsl:when test="$pList">
                <xsl:variable name="varMapPath" select="$pList[1]"/>
                <xsl:call-template name="sumProducts">
                    <xsl:with-param name="pList" select="$pList[position() > 1]"/>
                    <xsl:with-param name="pRunningTotal" select="$pRunningTotal + $varMapPath/price *    $varMapPath/quantity"/>
                </xsl:call-template>
            </xsl:when>
            <xsl:otherwise> 
                $<xsl:value-of select="format-number($pRunningTotal, '#,##0.00')"/>
            </xsl:otherwise>
        </xsl:choose>
    </xsl:template>
    <xsl:template match="/cinvoices/client/invoices">
        <xsl:call-template name="sumProducts">
            <xsl:with-param name="pList" select="*/*"/>
        </xsl:call-template>
    </xsl:template>
</xsl:stylesheet>

次の XML ファイルに適用されます。

<cinvoices>
    <client>
        <invoices>
            <products>
                <product>
                    <price>123</price>
                    <quantity>21</quantity>
                </product>
                <product>
                    <price>123</price>
                    <quantity>11</quantity>
                </product>
            </products>
        </invoices>
        <invoices>
            <products>
                <product>
                    <price>32</price>
                    <quantity>3</quantity>
                </product>
                <product>
                    <price>12</price>
                    <quantity>9</quantity>
                </product>
            </products>
        </invoices>
    </client>
    <client>
        <invoices>
            <products>
                <product>
                    <price>100</price>
                    <quantity>2</quantity>
                </product>
                <product>
                    <price>10</price>
                    <quantity>1</quantity>
                </product>
            </products>
        </invoices> 
    </client>
</cinvoices>

次の出力が生成されます。

<?xml version="1.0" encoding="UTF-8"?> 
            $3,936.00 
            $204.00 
            $210.00

したがって、これらは請求書ごとの値です。

ソリューションは XSLT 名前付きテンプレートを使用します。この問題は、さまざまな手法を使用して解決できる可能性がありますが、既にお持ちのアイデアに固執します。

ここで、最後のテンプレートを次のコードで変更します。

<xsl:template match="/cinvoices/client">
    <xsl:call-template name="sumProducts">
        <xsl:with-param name="pList" select="*/*/*"/>
    </xsl:call-template>
</xsl:template>

あなたは得るでしょう:

<?xml version="1.0" encoding="UTF-8"?> 
                $4,140.00 
                $210.00

これらは、クライアントごとのすべての請求書の合計です。

次に、最後のテンプレートを次のコードで変更します。

<xsl:template match="/cinvoices">
    <xsl:call-template name="sumProducts">
        <xsl:with-param name="pList" select="*/*/*/*"/>
    </xsl:call-template>
</xsl:template> 

そして、すべてのクライアントの合計を取得します。

<?xml version="1.0" encoding="UTF-8"?> 
                $4,350.00
于 2012-10-16T12:30:02.193 に答える