如何使用XSLT代码根据条件从XML中进行总和



我需要一些帮助才能使用XSLT代码添加数量 - 每当休假日期小于补偿日期小于薪酬有效日期,添加数量值,在下面的示例中为36。

Please see xml example.
<?xml version="1.0" encoding="UTF-8"?>
<pi:Payroll_Extract_Employees xmlns:pi="urn:com.workday/picof">
    <pi:PayGroup>
        <pi:Header>
            <pi:Version>24</pi:Version>
        </pi:Header>
        <pi:Employee>
            <pi:Summary>
                <pi:Employee_ID>123</pi:Employee_ID>
            </pi:Summary>
            <pi:Personal>
                <pi:First_Name>test</pi:First_Name>
                <pi:Last_Name>last anme</pi:Last_Name>
            </pi:Personal>
            <pi:Position>
                <pi:Operation>ADD</pi:Operation>
                <pi:Compensation_Effective_Date pi:PriorValue=""
                    >20161212</pi:Compensation_Effective_Date>
            </pi:Position>
            <pi:Position>
                <pi:Operation>REMOVE</pi:Operation>
                 <pi:Compensation_Effective_Date>20160401</pi:Compensation_Effective_Date>
            </pi:Position>
            <pi:Time_Off>
                <pi:Code pi:PriorValue="">CHN_PERSONAL_PLAN</pi:Code>
                <pi:Time_Off_Date pi:PriorValue="">20161122</pi:Time_Off_Date>
                <pi:Quantity pi:PriorValue="">8</pi:Quantity>
                <pi:Unit_of_Time pi:PriorValue="">HOURS</pi:Unit_of_Time>
            </pi:Time_Off>
            <pi:Time_Off>
                 <pi:Code pi:PriorValue="">CHN_PERSONAL_PLAN</pi:Code>
                 <pi:Time_Off_Date pi:PriorValue="">20161123</pi:Time_Off_Date>
                <pi:Quantity pi:PriorValue="">8</pi:Quantity>
                <pi:Unit_of_Time pi:PriorValue="">HOURS</pi:Unit_of_Time>
            </pi:Time_Off>
            <pi:Time_Off>
                <pi:Code pi:PriorValue="">CHN_PERSONAL_PLAN</pi:Code>
                <pi:Time_Off_Date pi:PriorValue="">20161211</pi:Time_Off_Date>
                <pi:Quantity pi:PriorValue="">8</pi:Quantity>
                <pi:Unit_of_Time pi:PriorValue="">HOURS</pi:Unit_of_Time>
            </pi:Time_Off>
            <pi:Time_Off>
                <pi:Code pi:PriorValue="">CHN_PERSONAL_PLAN</pi:Code>
                <pi:Time_Off_Date pi:PriorValue="">20161212</pi:Time_Off_Date>
                <pi:Quantity pi:PriorValue="">8</pi:Quantity>
                <pi:Unit_of_Time pi:PriorValue="">HOURS</pi:Unit_of_Time>
            </pi:Time_Off>
            <pi:Time_Off>
                <pi:Time_Off_Type pi:PriorValue="">TOT_Personal_Leave_Hours</pi:Time_Off_Type>
                <pi:Time_Off_Date pi:PriorValue="">20161213</pi:Time_Off_Date>
                <pi:Quantity pi:PriorValue="">8</pi:Quantity>
                <pi:Unit_of_Time pi:PriorValue="">HOURS</pi:Unit_of_Time>
            </pi:Time_Off>
            <pi:Time_Off>
                <pi:Code pi:PriorValue="">CHN_PERSONAL_PLAN</pi:Code>
                <pi:Time_Off_Date pi:PriorValue="">20161214</pi:Time_Off_Date>
                <pi:Quantity pi:PriorValue="">8</pi:Quantity>
                <pi:Unit_of_Time pi:PriorValue="">HOURS</pi:Unit_of_Time>
            </pi:Time_Off>
               </pi:Employee>
    </pi:PayGroup>
</pi:Payroll_Extract_Employees>` 

这是我尝试过的示例XSLT代码,但是它似乎正在添加特定时间的所有数量

   <xsl:choose>
                                        <xsl:when test="pi:Position/pi:Total_Annual_Base_Pay[exists(@pi:PriorValue)]
                                            or pi:Position/pi:Compensation_Effective_Date[exists(@pi:PriorValue)]          ">
                                          <xsl:if test="pi:Time_Off[pi:Code='CHN_PERSONAL_PLAN']/pi:Time_Off_Date &lt; pi:Position[pi:Operation!='REMOVE']/pi:Compensation_Effective_Date ">         
                                                <xsl:value-of
                                                    select="sum(pi:Time_Off[pi:Code='CHN_PERSONAL_PLAN']/pi:Quantity)
                                                    + sum(pi:Time_Off_Correction[pi:Code='CHN_PERSONAL_PLAN']/pi:Quantity)"
                                                />
                                            </xsl:if>
                                        </xsl:when>
                                    <!--   <xsl:otherwise>
                                         <xsl:value-of
                                             select="sum(pi:Time_Off[pi:Code='CHN_PERSONAL_PLAN']/pi:Quantity)
                                             + sum(pi:Time_Off_Correction[pi:Code='CHN_PERSONAL_PLAN']/pi:Quantity)"
                                         />
                                     </xsl:otherwise>-->
                                    </xsl:choose> 

每当休假日期少于薪酬有效日期时 数量值将为36

我相信这满足了陈述的条件:

XSLT 1.0

<xsl:stylesheet version="1.0" 
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:pi="urn:com.workday/picof"
exclude-result-prefixes="pi">
<xsl:output method="xml" version="1.0" encoding="UTF-8" indent="yes"/>
<xsl:strip-space elements="*"/>
<xsl:template match="/pi:Payroll_Extract_Employees">
    <result>
        <xsl:value-of select="sum(pi:PayGroup/pi:Employee/pi:Time_Off[pi:Time_Off_Date &lt; ancestor::pi:Employee/pi:Position/pi:Compensation_Effective_Date]/pi:Quantity)"/>
    </result>
</xsl:template>
</xsl:stylesheet>

但是,当应用于输入示例时,结果为24,而不是36。

相关内容

  • 没有找到相关文章

最新更新