我正试图围绕计算出的变量值构建一些规则,但如果使用其中一个或两个条件,则很难使规则工作,并返回false输出。我需要使用这两个限定条件,但在bug测试过程中,我分别尝试了每个参数。
我有一个变量叫做"计算"。然而,当应用折扣金额时,我不希望计算值低于301.12。然而,只有在应用了折扣金额的情况下才会出现这种情况。如果计算值在没有折扣的情况下低于301.12,则这是可以的,较低的值是可以接受的。
然而,当流程运行时,应用折扣后的较低值仍在返回。
我们非常感谢所有的帮助。
这是我的代码:
<xsl:variable name="discountAmount">
<xsl:choose>
<xsl:when test="@affiliateID='12345'">50</xsl:when>
<xsl:otherwise>0</xsl:otherwise>
</xsl:choose>
</xsl:variable>
<xsl:variable name="feeAmount">
<xsl:choose>
<xsl:when test="@affiliateID='12345'">25</xsl:when>
<xsl:otherwise>50</xsl:otherwise>
</xsl:choose>
</xsl:variable>
<xsl:variable name="grossAmount" select="format-number(db1:grossPremium, '#0.00')" />
<xsl:variable name="discountGiven" select="($grossAmount - $feeAmount) div 100 * $discountAmount" />
<xsl:variable name="calculation" select="($grossAmount - $discountGiven)" />
<xsl:choose>
<xsl:when test="$discountAmount > 0">
<xsl:choose>
<xsl:when test="$calculation < 301.12">
<xsl:value-of select="$calculation=301.12" />
</xsl:when>
</xsl:choose>
</xsl:when>
</xsl:choose>
您不能在XSLT中更改变量的值。这样试试:
<xsl:variable name="calc0" select="($grossAmount - $discountGiven)" />
<xsl:variable name="calculation">
<xsl:choose>
<xsl:when test="$discountAmount > 0 and $calc0 < 301.12">
301.12
</xsl:when>
<xsl:otherwise>
<xsl:value-of select="$calc0" />
</xsl:otherwise>
</xsl:choose>
</xsl:variable>