XSL скопировать все и заменить - PullRequest
0 голосов
/ 27 мая 2018

INPUT XML:

<root>
<output_getquerydata>
    <query name="test">
        <parameters>
            <parameter name="id">TS1</parameter>
        </parameters>
        <results>
            <record>
                <column name="address">VAL1</column>
            </record>
        </results>
    </query>
</output_getquerydata>
<output_getquerydata>
    <query name="test">
        <parameters>
            <parameter name="id">TS2</parameter>
        </parameters>
        <results>
            <record>
                <column name="address">VAL2</column>
            </record>
        </results>
    </query>
</output_getquerydata>
<node>
    <CTO>
        <id>TRFG2</id>
        <order_number>TRFG2</order_number>
        <PT>
            <address>
                <id>C248355-91862</id>
                <code>T-48-KS-3659-SHELL BR</code>
            </address>
            <reference/>
            <comment/>
        </PT>
        <DT>
            <address>
                <id>C1050692</id>
                <code>C1050692</code>
            </address>
            <comment>This is a comment.</comment>
        </DT>
        <OLS>
            <OL>
                <id>TS1</id>
                <PT/>
                <DT>
                    <station>
                        <id>C1050692-01</id>
                        <code>C1050692-01</code>
                        <addressId>C1050692</addressId>
                    </station>
                </DT>
            </OL>
            <OL>
                <id>TS2</id>
                <PT/>
                <DT>
                    <station>
                        <id>C1050692-01</id>
                        <code>C1050692-01</code>
                        <addressId>C1050692</addressId>
                    </station>
                </DT>
            </OL>
        </OLS>
    </CTO>
</node>
</root>

CURRENT XSL:

<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0" xmlns:msxsl="urn:schemas-microsoft-com:xslt" exclude-result-prefixes="msxsl">
<xsl:output method="xml" version="1.0" encoding="UTF-8" indent="yes"/>
<xsl:template match="@* | node()">
    <xsl:copy>
        <xsl:apply-templates select="@* | node()"/>
    </xsl:copy>
</xsl:template>
<xsl:template match="CTO/PT/address"/>
<!--exclude-->
<xsl:template match="CTO/OLS/OL/PT">
    <PT>
        <addressId>
            <!--each OL ID-->
            <xsl:variable name="OLID">
                <xsl:value-of select="/../OL/id"/>
            </xsl:variable>
            <!--select the column value where the query parameter ID matches the OL id-->
            <xsl:value-of select="//output_getquerydata/query[parameters/parameter[@name='id']=$OLID]/results/record/column[@name='address']"/>
        </addressId>
    </PT>
</xsl:template>
<xsl:template match="output_getquerydata"/>
</xsl:stylesheet>

Желаемый выход:

 <node>
 <!--1. copy everything-->
<CTO>
    <id>TRFG2</id>
    <order_number>TRFG2</order_number>
    <!--2. exclude address tag here-->
    <PT>
        <reference/>
        <comment/>
    </PT>
    <DT>
        <address>
            <id>C1050692</id>
            <code>C1050692</code>
        </address>
        <comment>This is a comment.</comment>
    </DT>
    <OLS>
        <OL>
            <!--3. match OL ID-->
            <id>TS1</id>
            <PT>
                <!--4. and add here the value from the outputquery result-->
                <addressId>VAL1</addressId>
            </PT>
            <DT>
                <station>
                    <id>C1050692-01</id>
                    <code>C1050692-01</code>
                    <addressId>C1050692</addressId>
                </station>
            </DT>
        </OL>
        <OL>
            <id>TS2</id>
            <PT>
                <addressId>VAL2</addressId>
            </PT>
            <DT>
                <station>
                    <id>C1050692-01</id>
                    <code>C1050692-01</code>
                    <addressId>C1050692</addressId>
                </station>
            </DT>
        </OL>
    </OLS>
</CTO>
</node>

Цель состоит в том, чтобы скопировать все, а затем выполнить следующее: 1. исключить тег CTO / PT / address, не копировать его в вывод 2. для каждого OLS / OL / ID добавьте в OLS / OL / PT / addressID значение из тега query / results, где запрос /ID параметра соответствует OLS / OL / ID.В моем случае для OL с ID = TS 1 мне нужно добавить под PT / addressID значение VAL1 (взятое из запроса / результатов, который имеет запрос / ID параметра = TS1)

I 'мы попытались определить переменную, которая сохраняет идентификатор OL, а затем значение XSL выберет соответствующий запрос.Но я не уверен, что я делаю неправильно, возможно, из-за совпадения шаблонов, которое позиционирует меня в этой конкретной позиции и не может соответствовать должным образом.

Может кто-нибудь помочь мне?

Спасибо!

1 Ответ

0 голосов
/ 27 мая 2018

Я бы определил ключ для перекрестной ссылки:

<xsl:key name="query" match="output_getquerydata/query/results/record/column[@name = 'address']" use="ancestor::query/parameters/parameter[@name = 'id']"/>

, тогда легко получить это значение, в остальном вы, кажется, все сделали хорошо:

<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0" xmlns:msxsl="urn:schemas-microsoft-com:xslt" exclude-result-prefixes="msxsl">

<xsl:output method="xml" version="1.0" encoding="UTF-8" indent="yes"/>

<xsl:strip-space elements="*"/>

<xsl:template match="@* | node()">
    <xsl:copy>
        <xsl:apply-templates select="@* | node()"/>
    </xsl:copy>
</xsl:template>

<xsl:template match="CTO/PT/address"/>

<xsl:key name="query" match="output_getquerydata/query/results/record/column[@name = 'address']" use="ancestor::query/parameters/parameter[@name = 'id']"/>

<xsl:template match="CTO/OLS/OL/PT">
    <xsl:copy>
        <addressId>
            <xsl:value-of select="key('query', ../id)"/>
        </addressId>
    </xsl:copy>
</xsl:template>

<xsl:template match="output_getquerydata"/>

</xsl:stylesheet>

https://xsltfiddle.liberty -development.net / eiZQaF9

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...