<?xml version="1.0"?>
<!--
@author Last Changed:$Author: theegarten $
@version $Revision: 7826 $
@date $Date: 2011-04-21 15:17:40 +0200 (Do, 21 Apr 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">
	<!---->
	<!-- template to insert -->
	<xsl:template name="VDADateTime">
		<!-- parameter -->
		<xsl:param name="name"/>
		<xsl:param name="date"/>
		<xsl:param name="time"/>
		<!---->
		<xsl:if test="$date !='00000000'">
			<xsl:call-template name="DateTime">
				<xsl:with-param name="name">
					<xsl:value-of select="$name"/>
				</xsl:with-param>
				<xsl:with-param name="date">
					<xsl:value-of select="$date"/>
				</xsl:with-param>
				<xsl:with-param name="time">
					<xsl:value-of select="$time"/>
				</xsl:with-param>
			</xsl:call-template>
		</xsl:if>
	</xsl:template>
</xsl:stylesheet>
