| 1234567891011121314151617 |
- <?xml version="1.0" encoding="UTF-8"?>
- <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
- xmlns:xs="http://www.w3.org/2001/XMLSchema"
- exclude-result-prefixes="xs"
- version="2.0">
- <!-- template uzywane do wykrycia jakie zasoby sa w procesie przy glownym wywolaniu -->
- <xsl:template name="Pools">
- <xsl:param name="proces_id" />
- <xsl:for-each select="document('CRM_WSKAZNIK.xml')/data/items/item[A_STATUS!='DELETED' and ID_PROCES=$proces_id]">
- <xsl:element name="ID_ZASOB">
- <xsl:value-of select="ID_ZASOB"/>
- </xsl:element>
-
- </xsl:for-each>
- </xsl:template>
- </xsl:stylesheet>
|