Browse Source

Fix bom2grouped_scv BOM template

For empty or undefined fields the quotation mark was not closed.
pull/7/merge
Maciej Suminski 8 years ago
parent
commit
da88ed02e5
  1. 5
      eeschema/plugins/xsl_scripts/bom2grouped_csv.xsl

5
eeschema/plugins/xsl_scripts/bom2grouped_csv.xsl

@ -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>
Loading…
Cancel
Save