﻿<ViewDefinitions xmlns="http://www.windex.nl/schemas/viewdefinition/2007">
	<Views>
		<View Name="Leveranciersbegrotingen" ColumnWidths="auto;auto;75px;75px" HiddenColumnIds="0;5;6;7;8" DefaultOrderColumn="1">
			<Columns>
				<XsltColumn HeaderText="Leverancier" Ordinal="1" OrderBy="Supplier.SortName">
					<Transform>
						<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:msxsl="urn:schemas-microsoft-com:xslt" exclude-result-prefixes="msxsl">
							<xsl:output method="html" indent="yes"/>
							<xsl:template match="/Row">
								<xsl:value-of select="Column[@name = 'Supplier']/."/>
							</xsl:template>
						</xsl:stylesheet>
					</Transform>
				</XsltColumn>
				<XsltColumn HeaderText="Contactpersoon" Ordinal="2" OrderBy="ContactPerson.SortName">
					<Transform>
						<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:msxsl="urn:schemas-microsoft-com:xslt" exclude-result-prefixes="msxsl">
							<xsl:output method="html" indent="yes"/>
							<xsl:template match="/Row">
								<xsl:value-of select="substring-after(Column[@name = 'ContactPerson']/., ';#')" />
							</xsl:template>
						</xsl:stylesheet>
					</Transform>
				</XsltColumn>
				<XsltColumn HeaderText="Begroot" Ordinal="3" OrderBy="Estimated">
					<Transform>
						<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:msxsl="urn:schemas-microsoft-com:xslt" exclude-result-prefixes="msxsl">
							<xsl:output method="html" indent="yes"/>
							<xsl:template match="/Row">
								<div style="position: absolute">€</div>
								<div width="100%" align="right">
									<xsl:value-of disable-output-escaping="yes" select="concat(Column[@name = 'Estimated']/., '&amp;nbsp;')" />
								</div>
							</xsl:template>
						</xsl:stylesheet>
					</Transform>
				</XsltColumn>
				<XsltColumn HeaderText="Werkelijk" Ordinal="4" OrderBy="ActualAmount">
					<Transform>
						<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:msxsl="urn:schemas-microsoft-com:xslt" exclude-result-prefixes="msxsl">
							<xsl:output method="html" indent="yes"/>
							<xsl:template match="/Row">
								<div style="position: absolute">€</div>
								<div width="100%" align="right">
									<xsl:value-of disable-output-escaping="yes" select="concat(Column[@name = 'ActualAmount']/., '&amp;nbsp;')" />
								</div>
							</xsl:template>
						</xsl:stylesheet>
					</Transform>
				</XsltColumn>
			</Columns>
		</View>
	</Views>
</ViewDefinitions>