﻿<?xml version="1.0" encoding="utf-8"?>
<xsl:stylesheet version="1.0"
                xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
                xmlns:ms="urn:schemas-microsoft-com:xslt"
                xmlns:prop="urn:PropertyXmlUtil"
                exclude-result-prefixes="ms prop">

   <xsl:template match="/">
      <xsl:copy>
         <summary>
            <value id="TotalPrice" label="Total Price">
               <xsl:value-of select="prop:FormatProperty('Price', //unitprice)"/>
            </value>
         </summary>
      </xsl:copy>
   </xsl:template>
</xsl:stylesheet>