Two simple export UDDF fixes

This fixes issues #418 and $419.

Signed-off-by: Jan Mulder <jlmulder@xs4all.nl>
This commit is contained in:
Jan Mulder 2017-06-26 11:44:01 +02:00 committed by Dirk Hohndel
parent f091b8b705
commit bbde0a1741

View file

@ -112,9 +112,9 @@
</lastname> </lastname>
</xsl:when> </xsl:when>
<xsl:otherwise> <xsl:otherwise>
<first_name> <firstname>
<xsl:value-of select="."/> <xsl:value-of select="."/>
</first_name> </firstname>
</xsl:otherwise> </xsl:otherwise>
</xsl:choose> </xsl:choose>
</personal> </personal>
@ -168,10 +168,10 @@
<xsl:value-of select="concat($o2, '/', $he)"/> <xsl:value-of select="concat($o2, '/', $he)"/>
</name> </name>
<o2> <o2>
<xsl:value-of select="$o2"/> <xsl:value-of select="format-number($o2 div 100, '0.00')"/>
</o2> </o2>
<he> <he>
<xsl:value-of select="$he"/> <xsl:value-of select="format-number($he div 100, '0.00')"/>
</he> </he>
</mix> </mix>
</xsl:for-each> </xsl:for-each>