XSLT для каждого более 3 условий из 7

Я пытаюсь получить cond1-3 в цикле for-each, потому что выходные теги одинаковы

<?xml version="1.0"?>
<root>
<stuff>
<morestuff/>
</stuff>
<conds>
<cond1>yes</cond1>
<cond2>yes</cond2>
<cond3>yes</cond3>
<cond4>yes</cond4>
<cond5>yes</cond5>
<cond6>yes</cond6>
<cond7>yes</cond7>
</conds>
<stuff>
<morestuff/>
</stuff>

поэтому вывод должен быть таким

<?xml version="1.0"?>
<soapheader/>
<soapbody>
<somebiprostuff>
<m:Element xsi:type="komp:CT_c">
<v:Leistung>
<v:ArtID xsi:type="dt:STE_d" />
<v:Wert />
<v:Werteinheit />
</v:Leistung>
<komp:ArtID xsi:type="dt:STE_something">666</komp:ArtID>
<komp:Gefahr>
<komp:Gefahr xsi:type="dt:STE_something">F</komp:Gefahr>
</komp:Gefahr>
<komp:Gefahr>
<komp:Gefahr xsi:type="dt:STE_something">S</komp:Gefahr>
</komp:Gefahr>
<komp:Gefahr>
<komp:Gefahr xsi:type="dt:STE_something">L</komp:Gefahr>
</komp:Gefahr>
</m:Element>
<m:Element xsi:type="komp:CT_c">
<v:Leistung>
<v:ArtID xsi:type="dt:STE_d" />
<v:Wert />
<v:Werteinheit />
</v:Leistung>
<komp:ArtID xsi:type="dt:STE_something">777</komp:ArtID>
<komp:Gefahr>
<komp:Gefahr xsi:type="dt:STE_something">F</komp:Gefahr>
</komp:Gefahr>
<komp:Gefahr>
<komp:Gefahr xsi:type="dt:STE_Gsomething">S</komp:Gefahr>
</komp:Gefahr>
<komp:Gefahr>
<komp:Gefahr xsi:type="dt:STE_something">L</komp:Gefahr>
</komp:Gefahr>
</m:Element>
</somebiprostuff>
</soapbody>

поэтому, когда входной xml содержит произведение для 666 и 777, а cond1-3 — yes, это должен быть правильный вывод.

Я пытался справиться с этим таким образом, но это не сработало

    <?xml version="1.0" encoding="utf-8"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:template match="/">
<soapheader/>
<soapbody>
<somebiprostuff>
<xsl:call-template name="element"/>
</somebiprostuff>
</soapbody>
</xsl:template>

<xsl:temaplate name="element">
<m:Element xsi:type="komp:CT_c">
<v:Leistung>
<v:ArtID xsi:type="dt:STE_d" />
<v:Wert />
<v:Werteinheit />
</v:Leistung>
<komp:ArtID xsi:type="dt:STE_something">777</komp:ArtID>
<xsl:for-each select="//cond1 = 'yes' or //cond2 = 'yes' or //cond3 = 'yes'">
<komp:Gefahr>
<komp:Gefahr xsi:type="dt:STE_xy">
<xsl:choose>
<!-- cond1 -->
<xsl:when test="//cond1 = 'yes'">
<xsl:value-of select="'F'"/>
</xsl:when>
<!-- cond2 -->
<xsl:when test="//cond2 = 'yes'">
<xsl:value-of select="'S'"/>
</xsl:when>
<!-- cond3 -->
<xsl:when test="//cond3 = 'yes'">
<xsl:value-of select="'L'"/>
</xsl:when>
</xsl:choose>
</komp:Gefahr>
</komp:Gefahr>
</xsl:for-each>
<xsl:/template>

это приводит к пустому выводу.
Как я могу получить этот цикл правильно, если есть возможность получить 3, 2 или 1 повторение

1

Решение

Правила требуемой трансформации не совсем понятны. Будет ли что-то подобное для вас?

<xsl:template match="conds">
<result>
<xsl:apply-templates select="cond1 | cond2 | cond3"/>
</result>
</xsl:template>

<xsl:template match="cond1 | cond2 | cond3">
<xsl:if test=".='yes'">
<t:x>
<t:x xsi:type="dt:STE_xy">
<xsl:choose>
<xsl:when test="self::cond1">F</xsl:when>
<xsl:when test="self::cond2">S</xsl:when>
<xsl:when test="self::cond3">L</xsl:when>
</xsl:choose>
</t:x>
</t:x>
</xsl:if>
</xsl:template>
2

Другие решения

Других решений пока нет …

По вопросам рекламы [email protected]