本文介绍了我如何找到ChargeID的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我要做的是使用InternalOffenseHistoryID查找并显示Plea的ChargeID。
我需要在ChargeHistory中找到具有最高编号(示例2)的PleaEventSequence,然后找到与该ChargeHistory的InternalOffenseHistoryID匹配的Plea的InternalOffenseHistoryID。然后显示Plea ChargeID
我该怎么做?
这是我的xml代码
What I am trying to do is to use InternalOffenseHistoryID to find and display Plea's ChargeID.
I need to find the PleaEventSequence with the highest number (example 2) in ChargeHistory and then find the Plea's InternalOffenseHistoryID that matches that ChargeHistory's InternalOffenseHistoryID. Then display the Plea ChargeID
How do I do this?
Here is my xml code
<Integration xmlns:msxsl="urn:schemas-microsoft-com:xslt" xmlns:tsg="http://tsgweb.com" xmlns:IXML="http://tsgweb.com" xmlns:CMCodeQueryHelper="urn:CMCodeQueryHelper" PackageID="ChargeDispSent" MessageID="57834892" xmlns="">
<ControlPoint Timestamp="1/7/2015 9:15:07 AM" UserID="CunninghamC">SAVE-CR-PLEA</ControlPoint>
<Case InternalID="1616760662" ID="11683904" xmlns:user="http://tylertechnologies.com">
<PleaEvent Date="01/07/2015" ID="151480108" InternalPleaEventID="1714733342" xmlns:reslib="urn:reslib">
<PleaEventDate>01/07/2015</PleaEventDate>
<TimestampCreate>01/07/2015 09:14:48:533</TimestampCreate>
<PleaAmendmentReason Word="PLA">Plea agreement</PleaAmendmentReason>
<Plea ChargeID="10485838" ChargeHistoryID="41274044" InternalChargeID="1616399897" InternalOffenseHistoryID="1635787112">
<PleaType Word="GUI">Guilty</PleaType>
</Plea>
<PleaEvent Date="01/07/2015" ID="151480102" InternalPleaEventID="1714733336">
<PleaEventDate>01/07/2015</PleaEventDate>
<TimestampCreate>01/07/2015 09:10:29:813</TimestampCreate>
<Plea ChargeID="10485838" ChargeHistoryID="41274038" InternalChargeID="1616399897" InternalOffenseHistoryID="1635787106">
<PleaType Word="NGUI">Not guilty</PleaType>
</Plea>
<Plea ChargeID="10485839" ChargeHistoryID="41274039" InternalChargeID="1616399898" InternalOffenseHistoryID="1635787107">
<PleaType Word="NGUI">Not guilty</PleaType>
</Plea>
</PleaEvent>
</PleaEvent>
<PleaEvent Op="A" Date="01/07/2015" ID="151480109" InternalPleaEventID="1714733343" xmlns:reslib="urn:reslib">
<PleaEventDate Op="A">01/07/2015</PleaEventDate>
<TimestampCreate Op="A">01/07/2015 09:15:07:360</TimestampCreate>
<PleaAmendmentReason Op="A" Word="PLA">Plea agreement</PleaAmendmentReason>
<Plea Op="A" ChargeID="10485839" ChargeHistoryID="41274045" InternalChargeID="1616399898" InternalOffenseHistoryID="1635787113">
<PleaType Op="A" Word="GUI">Guilty</PleaType>
</Plea>
<PleaEvent Op="E" Date="01/07/2015" ID="151480103" InternalPleaEventID="1714733337">
<PleaEventDate>01/07/2015</PleaEventDate>
<TimestampCreate>01/07/2015 09:11:13:770</TimestampCreate>
<PleaAmendmentReason Word="AMENDC">Amended complaint</PleaAmendmentReason>
<Plea ChargeID="10485839" ChargeHistoryID="41274040" InternalChargeID="1616399898" InternalOffenseHistoryID="1635787108">
<PleaType Word="NONE">None</PleaType>
</Plea>
<PleaEvent Date="01/07/2015" ID="151480102" InternalPleaEventID="1714733336">
<PleaEventDate>01/07/2015</PleaEventDate>
<TimestampCreate>01/07/2015 09:10:29:813</TimestampCreate>
<Plea ChargeID="10485838" ChargeHistoryID="41274038" InternalChargeID="1616399897" InternalOffenseHistoryID="1635787106">
<PleaType Word="NGUI">Not guilty</PleaType>
</Plea>
<Plea ChargeID="10485839" ChargeHistoryID="41274039" InternalChargeID="1616399898" InternalOffenseHistoryID="1635787107">
<PleaType Word="NGUI">Not guilty</PleaType>
</Plea>
</PleaEvent>
</PleaEvent>
</PleaEvent>
<Charge ID="10485838" PartyID="16548350" InternalChargeID="1616399897" InternalPartyID="1614451487" xmlns:reslib="urn:reslib">
<ChargeOffenseDate>01/06/2015</ChargeOffenseDate>
<ChargeHistory ChargeHistoryID="41274035" Stage="Arrest" ArrestSequence="1" InternalOffenseHistoryID="1635787103">
<ChargeNumber>1</ChargeNumber>
</ChargeHistory>
<ChargeHistory ChargeHistoryID="41274034" Stage="Case Filing" FilingSequence="1" InternalOffenseHistoryID="1635787102">
<ChargeNumber>1</ChargeNumber>
</ChargeHistory>
<ChargeHistory ChargeHistoryID="41274038" Stage="Plea Event" PleaEventSequence="1" InternalOffenseHistoryID="1635787106">
<ChargeNumber>1</ChargeNumber>
</ChargeHistory>
<ChargeHistory ChargeHistoryID="41274044" Stage="Plea Event" PleaEventSequence="2" CurrentCharge="true" InternalOffenseHistoryID="1635787112">
<ChargeNumber>1</ChargeNumber>
</ChargeHistory>
</Charge>
<Charge Op="E" ID="10485839" PartyID="16548350" InternalChargeID="1616399898" InternalPartyID="1614451487" xmlns:reslib="urn:reslib">
<ChargeOffenseDate>01/06/2015</ChargeOffenseDate>
<DateOnOrAbout>false</DateOnOrAbout>
<ChargeHistory ChargeHistoryID="41274037" Stage="Arrest" ArrestSequence="1" InternalOffenseHistoryID="1635787105">
<ChargeNumber>2</ChargeNumber>
</ChargeHistory>
<ChargeHistory ChargeHistoryID="41274036" Stage="Case Filing" FilingSequence="1" InternalOffenseHistoryID="1635787104">
<ChargeNumber>2</ChargeNumber>
</ChargeHistory>
<ChargeHistory ChargeHistoryID="41274041" Stage="Case Filing" FilingSequence="2" InternalOffenseHistoryID="1635787109">
<ChargeNumber>2</ChargeNumber>
<AmendedDate>01/07/2015</AmendedDate>
<AmendedReason Word="RED">Reduced</AmendedReason>
</ChargeHistory>
<ChargeHistory ChargeHistoryID="41274043" Stage="Case Filing" FilingSequence="3" InternalOffenseHistoryID="1635787111">
<ChargeNumber>2</ChargeNumber>
</ChargeHistory>
<ChargeHistory ChargeHistoryID="41274039" Stage="Plea Event" PleaEventSequence="1" InternalOffenseHistoryID="1635787107">
<ChargeNumber>2</ChargeNumber>
</ChargeHistory>
<ChargeHistory ChargeHistoryID="41274040" Stage="Plea Event" PleaEventSequence="2" InternalOffenseHistoryID="1635787108">
<ChargeNumber>2</ChargeNumber>
</ChargeHistory>
<ChargeHistory Op="A" ChargeHistoryID="41274045" Stage="Plea Event" PleaEventSequence="3" CurrentCharge="true" InternalOffenseHistoryID="1635787113">
<ChargeNumber Op="A">2</ChargeNumber>
</ChargeHistory>
</Charge>
</Case>
<IntegrationConditions>
<IntegrationCondition Word="CHARGE" Description="Charge">
<NotificationEvent notificationType="ChargeNotification" elementState="PreDisposition" elementName="Charge" elementKey="10485839">PleaAmended</NotificationEvent>
</IntegrationCondition>
</IntegrationConditions>
</Integration>
Here is my xslt template code
Here is my xslt template code
<?xml version="1.0" encoding="UTF-8"?>
<?altova_samplexml file:///Z:/Training%20with%20Tim%20XML%20code%20various/PleaFix.xml?>
<xsl:stylesheet version="3.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:fn="http://www.w3.org/2005/xpath-functions">
<xsl:output method="xml" version="1.0" encoding="UTF-8" indent="yes"/>
<xsl:template match="/">
<xsl:variable name="vPleaEventID">
<xsl:call-template name="GetChargePleaEventID">
<xsl:with-param name="pChargeID"></xsl:with-param>
</xsl:call-template>
</xsl:variable>
<result>
<xsl:value-of select="$vPleaEventID"/>
</result>
</xsl:template>
<!--
-->
<xsl:template name="GetChargePleaEventID">
<xsl:param name="pChargeID"/>
<!--<xsl:text>12345</xsl:text>-<xsl:value-of select="$pChargeID"/>-->
</xsl:template>
</xsl:stylesheet>
推荐答案
<xsl:variable name="vInternalOffenseHistoryID" xmlns:xsl="#unknown">
<xsl:value-of select="//Charge[@ID=
这篇关于我如何找到ChargeID的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!