Access から定期的にデータをエクスポートしています。これまでは、それをエクスポートし、いくつかのタグを手動で編集してクライアントのニーズに合わせていました。最近、XSL を変換パターンとして使用できる可能性があることがわかりました。
XSLに関してはまだ初心者ですが、次のようなものを作成できました。
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
<xsl:template match="@*|node()">
<xsl:copy>
<xsl:apply-templates select="@*|node()"/>
</xsl:copy>
</xsl:template>
<xsl:template match="dataroot/Kwerenda_x0020_Nota_x0020_Kredytowa">
<xsl:element name="Faktury_od_nas">
<xsl:apply-templates />
</xsl:element>
</xsl:template>
</xsl:stylesheet>
通常は問題なく動作しますが:
1. 通常、データをエクスポートすると、新しい行にすべてのタグが表示されますが、変更したタグだけで分割されます。
2. データルートの名前を変更する方法がわかりません。同じコードをコピーして貼り付けようとしましたが、Faktury_od_nas が表示されるたびに dataroot を取得します...
変換されたサンプル データ:
<dataroot generated="2016-01-12T13:54:11" xmlns:od="urn:schemas-microsoft-com:officedata"><Faktury_od_nas><No>1</No><InvoiceDate>20150715</InvoiceDate><InvoiceNumber>12345</InvoiceNumber><CustVATNumber>LT100004645417</CustVATNumber><E100customerKey>65-92</E100customerKey><CustomerName>Client_name</CustomerName><InvoiceCountry>BE</InvoiceCountry><VATpersent>21</VATpersent><VATBasis>106,36</VATBasis><VATamount>22,34</VATamount><Currency>EUR</Currency><VAT_x0020_recovery_x0020_fee_x0020_rate_x0020__x0028__x0025__x0029_>7.5</VAT_x0020_recovery_x0020_fee_x0020_rate_x0020__x0028__x0025__x0029_><Service_x0020_Type>Express</Service_x0020_Type><InvoiceScanFileName>scan_name</InvoiceScanFileName>
</Faktury_od_nas></dararoot>
希望するサンプルデータ:
<Faktura>
<Faktury_od_nas>
<No>1</No>
<InvoiceDate>20150715</InvoiceDate>
<InvoiceNumber>12345</InvoiceNumber>
<CustVATNumber>LT100004645417</CustVATNumber>
<E100customerKey>65-92</E100customerKey>
<CustomerName>Client_name</CustomerName>
<InvoiceCountry>BE</InvoiceCountry>
<VATpersent>21</VATpersent>
<VATBasis>106,36</VATBasis>
<VATamount>22,34</VATamount>
<Currency>EUR</Currency>
<VAT_x0020_recovery_x0020_fee_x0020_rate_x0020__x0028__x0025__x0029_>7.5</VAT_x0020_recovery_x0020_fee_x0020_rate_x0020__x0028__x0025__x0029_>
<Service_x0020_Type>Express</Service_x0020_Type>
<InvoiceScanFileName>scan_name</InvoiceScanFileName>
</Faktury_od_nas>
</Faktura>
助けていただければ幸いです。
編集:
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="xml" version="1.0" encoding="UTF-8" indent="yes" />
<xsl:template match="*">
<xsl:element name="{local-name()}">
<xsl:apply-templates/>
</xsl:element>
</xsl:template>
<xsl:template match="dataroot">
<Faktura>
<xsl:apply-templates />
</Faktura>
</xsl:template>
<xsl:template match="Kwerenda_x0020_Nota_x0020_Kredytowa">
<Faktury_od_nas>
<xsl:apply-templates />
</Faktury_od_nas>
</xsl:template>
</xsl:stylesheet>