我在XML中有这个:
<InvoiceList>
<Invoice>
<InvoiceAmount WithVATBool="false" VATAmount="96.2" VATPercentage="1" WithVAT="9716.19">9619.99</InvoiceAmount>
</Invoice>
</InvoiceList>
我想在FOP中提取此数量9619.99和以下内容:
<xsl:value-of select="//Task/InvoiceList/Invoice/InvoiceAmount"/>
在我的模板9619.99196.2
上给我这个任何想法如何提取这个因为我尝试使用substring-after然后我得到了NaN。
谢谢!
正在使用的样式表:
<?xml version="1.0"?>
<xsl:stylesheet version="2.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:s="http://www.stylusstudio.com/xquery"
xmlns:fo="http://www.w3.org/1999/XSL/Format" exclude-result-prefixes="fo" xmlns:exsl="http://exslt.org/common" extension-element-prefixes="exsl">
<xsl:output indent="yes" encoding="utf-8"/>
<xsl:variable name="brojac" select="0"/>
<xsl:variable name="timeBase" select="number(//TimeBase/@Val)"/>
<xsl:variable name="filefolder" select="/data/imagepath" />
<xsl:template match="/data">
<fo:root xmlns:fo="http://www.w3.org/1999/XSL/Format">
<fo:layout-master-set>
<fo:simple-page-master
master-name="default-page"
page-height="279.4mm"
page-width="215.9mm"
margin-left="1cm"
margin-right="1cm"
margin-top="0.5cm"
margin-bottom="0.5cm">
<fo:region-body margin-bottom="2cm"/>
<fo:region-after extent="1cm"/>
</fo:simple-page-master>
</fo:layout-master-set>
<fo:page-sequence master-reference="default-page">
<fo:flow flow-name="xsl-region-body">
<xsl:apply-templates select="/data" mode="case_data"/>
<fo:block>
<fo:table
space-after="0.25cm"
table-layout="fixed"
width="100%"
color="black"
font-family="Arial"
font-size="10px"
text-align="center"
height="14px">
<fo:table-column column-width="100%"/>
<fo:table-body>
<fo:table-row height="14px">
<fo:table-cell
font-family="Arial"
font-size="10px"
text-align="center"
color="black"
height="14px">
<fo:block>
Član 1.
</fo:block>
<fo:block text-align="justify">
<xsl:value-of select="//Task/InvoiceList/Invoice/InvoiceAmount" />
</fo:block>
</fo:table-cell>
</fo:table-row>
</fo:table-body>
</fo:table>
</fo:block>
</fo:flow>
</fo:page-sequence>
</fo:root>
</xsl:template>
</xsl:stylesheet>
我已删除所有不必要的表格。
答案 0 :(得分:1)
您的XML中是否有196.2
出现在其他地方? //Task/InvoiceList/Invoice/InvoiceAmount
正在选择文档中的每个Task/InvoiceList/Invoice/InvoiceAmount
,您会看到其值的连接。
如果没有看到更多的XML,很难说更多,但是你应该将//Task/InvoiceList/Invoice/InvoiceAmount
减少到XPath,它将选择你想要的InvoiceAmount
相对于当前{ {1}}节点。它可能就像将XPath更改为data
一样简单,但同样,我们无法在不看到更多XML的情况下进行分析。
您与Task/InvoiceList/Invoice/InvoiceAmount
类似:如果文档中有多个<xsl:variable name="timeBase" select="number(//TimeBase/@Val)"/>
,您可能会收到意外结果。
最后,TimeBase
不会做任何事情,因为您生成的第一件事是exclude-result-prefixes="fo"
命名空间中的元素。排除fo
和s
前缀会更有用。