Fix bom2grouped_scv BOM template

For empty or undefined fields the quotation mark was not closed.
This commit is contained in:
Maciej Suminski 2017-08-25 17:04:50 +02:00
parent ffeba9de93
commit da88ed02e5
1 changed files with 3 additions and 2 deletions

View File

@ -91,13 +91,14 @@
<xsl:if test="@name=$allnames">
<!-- content of the field -->
<xsl:value-of select="."/>
<xsl:text>"</xsl:text>
</xsl:if>
<!--
If it does not exist, use an empty cell in output for this row.
Every non-blank entry is assigned to its proper column.
-->
</xsl:for-each>
</xsl:for-each>
<xsl:text>"</xsl:text>
</xsl:for-each>
</xsl:template>