<?xml version="1.0"?>
<!--
@author Last Changed:$Author: lenz $
@version $Revision: 5199 $
@date $Date: 2010-10-22 08:16:16 +0200 (Fr, 22 Okt 2010) $
-->
<xsl:stylesheet version="2.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns="http://schema.infor.com/InforOAGIS/2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
    <!---->
    <!-- imports -->
    <xsl:import href="includes/fields/IDs.xsl" xml:base="../../"/>
    <!---->
    <!-- template to insert -->
    <xsl:template name="Facility">
        <!---->
        <!-- parameter -->
        <xsl:param name="id"/>
        <xsl:param name="accountingEntity"/>
        <xsl:param name="location"/>
        <!---->
        <xsl:call-template name="IDs">
            <xsl:with-param name="name">
                <xsl:value-of select="'Facility'"/>
            </xsl:with-param>
            <xsl:with-param name="id">
                <xsl:value-of select="$id"/>
            </xsl:with-param>
            <xsl:with-param name="location">
                <xsl:value-of select="$location"/>
            </xsl:with-param>
            <xsl:with-param name="accountingEntity">
                <xsl:value-of select="$accountingEntity"/>
            </xsl:with-param>
        </xsl:call-template>
    </xsl:template>
</xsl:stylesheet>
