<?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/Party.xsl" xml:base="../../"/>
	<!---->
	<!-- template to insert -->
	<xsl:template name="CustomerParty">
		<!---->
		<!-- parameter -->
		<xsl:param name="id"/>
		<xsl:param name="taxIDCustomer"/>
		<xsl:param name="accountingEntity"/>
		<xsl:param name="location"/>
		<xsl:param name="contactName"/>
		<!-- Party -->
		<xsl:call-template name="Party">
			<xsl:with-param name="name" select="'CustomerParty'"/>
			<xsl:with-param name="id" select="$id"/>
			<xsl:with-param name="accountingEntity" select="$accountingEntity"/>
			<xsl:with-param name="location" select="$location"/>
			<xsl:with-param name="taxID" select="$taxIDCustomer"/>
			<xsl:with-param name="contactName" select="$contactName"/>
		</xsl:call-template>
	</xsl:template>
</xsl:stylesheet>
