Bug 18790: Add ability to void payments
[koha.git] / t / db_dependent / XSLT_Handler / test03.xsl
1 <xsl:stylesheet version="1.0"
2     xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
3     xmlns:marc="http://www.loc.gov/MARC21/slim"
4 >
5   <xsl:output method="xml" encoding="UTF-8" version="1.0" indent="yes"/>
6
7   <xsl:template match="/">
8       <xsl:apply-templates/>
9   </xsl:template>
10
11   <xsl:template match="node()">
12     <xsl:copy select=".">
13       <xsl:copy-of select="@*"/>
14       <xsl:apply-templates/>
15     </xsl:copy>
16   </xsl:template>
17 </xsl:stylesheet>