セカンダリまたは別の xml ファイルのデータを使用して、以下の XML の要素を更新しようとしています。入力 XML ファイルと 2 次 XML ファイルの両方に同じ数のセグメントがあります。セカンダリ XML の最初のセグメントで値を取得し、INPUT xml の要素を更新する必要があります。XSLを使用して実行できるかどうかはわかりませんが、誰かが私を案内してくれますか?
具体的には、セカンダリ XML の //PDetails/PStatus/Code および //PDetails/PStatus/Description 値に基づいて<indicator></indicator>
、それぞれの INPUT XML の値を更新しようとしています。<iOSection>
以下は入力 XML ファイルです。
<IResponse>
<iOSection>
<Details>
<Info>
<pNumber>FB061689</pNumber>
<indicator></indicator>
<Identifier>1</Identifier>
</Info>
</Details>
<Token>
<Reference>1UUYD05BHM21OJCK3881C7F</Reference>
</Token>
</iOSection>
<iOSection>
<Details>
<Info>
<pNumber>FB061690</pNumber>
<indicator></indicator>
<Identifier>2</Identifier>
</Info>
</Details>
<Token>
<Reference>1UUYD05BHM21OJCK3881C7F</Reference>
</Token>
</iOSection>
</IResponse>
以下はセカンダリ XML ファイルです。RSPDetails という xsl 変数で使用できます。
<RS PartID="abcd" SysID="mnc">
<PDetails>
<PN>FB063586</PN>
<PStatus>
<Code>0</Code>
<Description>Cancelled</Description>
</PStatus>
</PDetails>
<PDetails>
<Error>
<Code>92</Code>
<Message>failed</Message>
</Error>
</PDetails>
</RS>
の値は<indicator>
、 //PDetails/PStatus/Code = '0' および //PDetails/PStatus/Description = 'Cancelled' の場合は 'YES' である必要があり、それ以外の場合はすべて 'NO' である必要があります。
条件は、ポジション 1 データ<iOSection>
を使用してポジション 1に適用し、ポジション 2 データを使用してポジション 2 に適用する必要があります。<PDetails>
<iOSection>
<PDetails>
期待される OUTPUT は次のとおりです。
<IResponse>
<iOSection>
<Details>
<Info>
<pNumber>FB061689</pNumber>
<indicator>YES</indicator>
<Identifier>1</Identifier>
</Info>
</Details>
<Token>
<Reference>1UUYD05BHM21OJCK3881C7F</Reference>
</Token>
</iOSection>
<iOSection>
<Details>
<Info>
<pNumber>FB061690</pNumber>
<indicator>NO</indicator>
<Identifier>2</Identifier>
</Info>
</Details>
<Token>
<Reference>1UUYD05BHM21OJCK3881C7F</Reference>
</Token>
</iOSection>
</IResponse>
私はXSLの下で試しましたが、どこにも近づきませんでした
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="1.0" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:xs="http://www.w3.org/2001/XMLSchema" exclude-result-prefixes="#all" >
<xsl:template match="@* | node()">
<xsl:copy>
<xsl:apply-templates select="@* | node()"/>
</xsl:copy>
</xsl:template>
<xsl:template match="/*[local-name()='IResponse']/*[local-name()='iOSection']/*[local-name()='Details']/*[local-name()='Info']/*[local-name()='indicator']">
<xsl:variable name="RSDetails">
<RS PartID="abcd" SysID="mnc">
<PDetails>
<PN>FB063586</PN>
<PStatus>
<Code>0</Code>
<Description>Cancelled</Description>
</PStatus>
</PDetails>
<PDetails>
<Error>
<Code>92</Code>
<Message>failed</Message>
</Error>
</PDetails>
</RS>
</xsl:variable>
<xsl:element name="indicator">
<xsl:variable name="PStatus">
<xsl:value-of select="$RSDetails/RS/PDetails/PStatus" />
</xsl:variable>
<xsl:variable name="Message">
<xsl:value-of select="$RSDetails/RS/PDetails/Message" />
</xsl:variable>
<xsl:choose>
<xsl:when test="$PStatus='0' and $Message='Cancelled'">
<xsl:value-of select="'YES'" />
</xsl:when>
<xsl:otherwise>
<xsl:value-of select="'NO'" />
</xsl:otherwise>
</xsl:choose>
</xsl:element>
<xsl:copy-of select="@*" />
</xsl:template>
</xsl:stylesheet>