我正在使用xslt 2.0和Saxon 9.6,需要将价格数量和数量相乘,然后将结果四舍五入到两位小数。我不希望银行家四舍五入,我想舍入所以.495 = 0.50和.494 = .49。我曾尝试阅读有关此问题的几篇文章和帖子,但我找不到解决方案。由于浮点问题,我看到有几个用xslt 1.0进行舍入的地方是有问题的,并且很多人提到xslt 2.0和xs:decimal应该可以解决这个问题,但我似乎无法找到"防水&# 34;溶液
我有一个包含价格和数量元素的4个不同InvoiceLines的xml文件(Invoice):
<Invoice>
<ID>12345</ID>
<IssueDate>2012-11-21</IssueDate>
<Supplier>
<Party>
<ID>977187761</ID>
</Party>
</Supplier>
<Customer>
<Party>
<ID schemeID="NO:ORGNR">810305282</ID>
</Party>
</Customer>
<Delivery>
<DeliveryDate>2012-11-21</DeliveryDate>
</Delivery>
<TaxTotal>
<TaxAmount currencyID="NOK">128.89</TaxAmount>
</TaxTotal>
<InvoiceLine>
<ID>1</ID>
<Quantity unitCode="EA">19</Quantity>
<LineAmount currencyID="NOK">130.26</LineAmount>
<Item>
<Name>TestItem</Name>
</Item>
<Price currencyID="NOK">8.569736842105263</Price>
</InvoiceLine>
<InvoiceLine>
<ID>2</ID>
<Quantity unitCode="NAR">1.00</Quantity>
<LineAmount currencyID="NOK">128.2</LineAmount>
<Item>
<Name>Vare A</Name>
</Item>
<Price currencyID="NOK">128.195</Price>
</InvoiceLine>
<InvoiceLine>
<ID>3</ID>
<Quantity unitCode="NAR">1.00</Quantity>
<LineAmount currencyID="NOK">128.7</LineAmount>
<Item>
<Name>Vare B</Name>
</Item>
<Price currencyID="NOK">128.695</Price>
</InvoiceLine>
<InvoiceLine>
<ID>4</ID>
<Quantity unitCode="NAR">1.00</Quantity>
<LineAmount currencyID="NOK">128.4</LineAmount>
<Item>
<Name>Vare C</Name>
</Item>
<Price currencyID="NOK">128.395</Price>
</InvoiceLine>
我在xml上运行了以下xslt:
<xsl:template match="/">
<html>
<body>
<xsl:for-each select="//InvoiceLine">
<tr>
<td>Line: <xsl:value-of select="ID"/> </td>
<td>Price: <xsl:value-of select="Price"/></td>
<td>Quantity: <xsl:value-of select="Quantity"/></td>
<td>LineAmount: <xsl:value-of select="LineAmount"/></td>
<td>P*Q: <xsl:value-of select="Price * Quantity"/></td>
<td>Round(p*q*100)div 100: <xsl:value-of select="round((Price * Quantity * 100)) div 100" /></td>
<td>xs:decimal(p*q): <xsl:value-of select="xs:decimal(Price * Quantity)" /></td>
<td>round((p*q)*10*10) div 100: <xsl:value-of select="round((Price * Quantity) * 10 * 10) div 100"/></td>
</tr>
</xsl:for-each>
</body>
</html>
</xsl:template>
这就是结果:
<html xmlns:saxon="http://saxon.sf.net/" xmlns:op="http://www.w3.org/2002/08/xquery-operators" xmlns:schold="http://www.ascc.net/xml/schematron" xmlns:iso="http://purl.oclc.org/dsdl/schematron" xmlns:cbc="urn:oasis:names:specification:ubl:schema:xsd:CommonBasicComponents-2" xmlns:cac="urn:oasis:names:specification:ubl:schema:xsd:CommonAggregateComponents-2" xmlns:ubl="urn:oasis:names:specification:ubl:schema:xsd:Invoice-2">
<body>
<tr>
<td>Line: 1</td>
<td>Price: 8.569736842105263</td>
<td>Quantity: 19</td>
<td>LineAmount: 130.26</td>
<td>P*Q: 162.825</td>
<td>Round(p*q*100)div 100: 162.82</td>
<td>xs:decimal(p*q): 162.82499999999998863131622783839702606201171875</td>
<td>round((p*q)*10*10) div 100: 162.83</td>
</tr>
<tr>
<td>Line: 2</td>
<td>Price: 128.195</td>
<td>Quantity: 1.00</td>
<td>LineAmount: 128.2</td>
<td>P*Q: 128.195</td>
<td>Round(p*q*100)div 100: 128.2</td>
<td>xs:decimal(p*q): 128.19499999999999317878973670303821563720703125</td>
<td>round((p*q)*10*10) div 100: 128.19</td>
</tr>
<tr>
<td>Line: 3</td>
<td>Price: 128.695</td>
<td>Quantity: 1.00</td>
<td>LineAmount: 128.7</td>
<td>P*Q: 128.695</td>
<td>Round(p*q*100)div 100: 128.7</td>
<td>xs:decimal(p*q): 128.69499999999999317878973670303821563720703125</td>
<td>round((p*q)*10*10) div 100: 128.69</td>
</tr>
<tr>
<td>Line: 4</td>
<td>Price: 128.395</td>
<td>Quantity: 1.00</td>
<td>LineAmount: 128.4</td>
<td>P*Q: 128.395</td>
<td>Round(p*q*100)div 100: 128.4</td>
<td>xs:decimal(p*q): 128.395000000000010231815394945442676544189453125</td>
<td>round((p*q)*10*10) div 100: 128.4</td>
</tr>
正如您所看到的,我得到了不同类型的计算/舍入的不同结果。对于第1行,我在最后一次计算中得到了被删除的结果,但对于第2行和第3行,这个计算并没有给出检验结果。
对于如何解决此问题的任何提示,我都会非常感激。
答案 0 :(得分:1)
怎么样:
<xsl:value-of select="round(Price * Quantity * 100) div 100" />
另请注意,我得到了与预期相同的所有结果:
<xsl:value-of select="round(xs:decimal(Price) * xs:decimal(Quantity) * 100) div 100" />
和
<xsl:value-of select="round(xs:decimal(Price) * xs:decimal(Quantity) * 10 * 10) div 100"/>
和
format-number()
如果您不想要“银行家舍入”,那么您就无法使用round-half-to-even()
函数,因为它与{{1}}执行相同的舍入操作 - 请参阅此处的第5点:{{3} }
但是,所有其他方法都会将预期的舍入值调整为最接近的整数。
答案 1 :(得分:1)
我假设您没有使用架构感知,这意味着价格和数量等值是无类型的。如果使用untypedAtomic值作为算术运算符的输入,则将其视为双精度浮点。所以你应该做的第一件事是明确地转换为xs:decimal:你的代码xs:decimal(Price * Quantity)
使用双重算术进行乘法运算,并将结果转换为小数,而xs:decimal(Price) * xs:decimal(Quantity)
将使用十进制算术。
如果确保在进行任何算术运算之前将无类型值全部转换为十进制,则结果的舍入和格式化应该“按预期”工作。