<?xml version="1.0"?>
<!--
@author Last Changed:$Author: theegarten $
@version $Revision: 7262 $
@date $Date: 2011-03-18 08:02:41 +0100 (Fr, 18 Mrz 2011) $
-->
<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/Party.xsl" xml:base="../../"/>
    <!---->
    <!-- template to insert -->
    <xsl:template name="ShipToParty">
        <!---->
        <!-- parameter -->
        <xsl:param name="id"/>
        <xsl:param name="accountingEntity"/>
        <xsl:param name="location"/>
        <xsl:param name="toLocation"/>
        <xsl:param name="contactName"/>
        <!---->
        <xsl:call-template name="Party">
            <xsl:with-param name="name">
                <xsl:value-of select="'ShipToParty'"/>
            </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:with-param name="toLocation">
                <xsl:value-of select="$toLocation"/>
            </xsl:with-param>
            <xsl:with-param name="contactName">
                <xsl:value-of select="$contactName"/>
            </xsl:with-param>
        </xsl:call-template>
    </xsl:template>
</xsl:stylesheet>
