I have the below xml
<toPay>
<Pay>
<amount>1111</amount>
<accountNumber>223128987</accountNumber>
<payType>PAYROLL</payType>
</Pay>
<Pay>
<amount>2222</amount>
<accountNumber>123128987</accountNumber>
<payType>PAYROLL</payType>
</Pay>
<Pay>
<amount>333</amount>
<accountNumber>645032</accountNumber>
<payType>MAIN</payType>
</Pay>
I need the output in this format:
<root>
<element>
<amount>1111</amount>
<accountNumber>223128987</accountNumber>
</element>
<element>
<amount>2222</amount>
<accountNumber>223128987</accountNumber>
</element>
<element>
<amount></amount>
<accountNumber></accountNumber>
</element>
<element>
<amount></amount>
<accountNumber></accountNumber>
</element>
I have written the following code:
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:key name="groups" match="payType" use="." />
<xsl:template match="/toPay/Pay">
<root>
<xsl:apply-templates select="payType[generate-id() = generate-id(key('groups', .)[1])]" />
</root>
</xsl:template>
<xsl:template match="payType">
<xsl:variable name="currentGroup" select="." />
<xsl:if test="$currentGroup = 'PAYROLL'">
<xsl:for-each select="key('groups', $currentGroup)">
<element>
<xsl:if test="position() = 1">
<amount>
<xsl:value-of select="../amount" />
</amount>
<accountNumber>
<xsl:value-of select="../accountNumber" />
</accountNumber>
</xsl:if>
<xsl:if test="position() = 2">
<amount>
<xsl:value-of select="../amount" />
</amount>
<accountNumber>
<xsl:value-of select="../accountNumber" />
</accountNumber>
</xsl:if>
</element>
</xsl:for-each>
</xsl:if>
</xsl:template>
But the issue I am facing is that - I cannot access the grouped nodes for paytype -PAYROLL. The only way I know is with position but my requirement to enter always 4 element nodes always in the output whether or not the nodes in the source xml with PAYtype -PAYROLL exists or not. If exists then values of the same eeds to be populated if not then xml tags with no values.
Any help is much appreciated - either xslt 1.0 or 2.0.
If I understood your explanation correctly, you could do something very simple - even if a bit primitive:
I see no requirement for grouping of anything.
Here's a slightly more elegant version:
XSLT 2.0
Demo: http://xsltransform.net/6pS1zDr