XSL-FO提取金额

时间:2017-09-27 07:37:14

标签: xml xslt xsl-fo

我在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>

我已删除所有不必要的表格。

1 个答案:

答案 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"命名空间中的元素。排除fos前缀会更有用。