VGLD#28579: E-invoicing Office Depot

svn path=/Website/branches/v2015.3/; revision=27703
This commit is contained in:
Marcel Bourseau
2016-01-11 16:05:10 +00:00
parent 1a384342a0
commit 60a1f6ab03

View File

@@ -0,0 +1,11 @@
<?xml version="1.0" encoding="utf-8"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
<xsl:output method="text" encoding="UTF-8"/>
<xsl:template match="/">
<xsl:comment>factuurnr;factuurdatum;opdrachtnr;omschrijving;bedrag;btwperc;btwbedrag</xsl:comment>
<xsl:for-each select="/Invoice/InvoiceLine">
<xsl:value-of select="../ID"/>;<xsl:value-of select="../IssueDate"/>;<xsl:value-of select="../OrderReference/ID"/>;;<xsl:value-of select="TaxTotal/TaxSubtotal/TaxableAmount"/>;<xsl:value-of select="TaxTotal/TaxSubtotal/TaxCategory/Percent"/>;<xsl:value-of select="TaxTotal/TaxSubtotal/TaxAmount"/>;&#10;</xsl:for-each>
</xsl:template>
</xsl:stylesheet>