Commit 88f82c9d authored by pchavan's avatar pchavan

Update to show DR/CR total amount up to three decimal.

git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@190247 ce508802-f39f-4f6c-b175-0d175dae99d5
parent a558e0da
......@@ -122,14 +122,14 @@ var isAnyRecordSelected = false;
<div class="eachSection alighrt">
<div class="eachSection alighlt ">Total Debit:
<span class="dr-amt">Dr
<xsl:value-of select= "sum(/DocumentRoot/group0/Header0/Detail1[attribute/@updateFlag!='D']/dr_amt__bc)"/>
<xsl:value-of select= "format-number(round(100*(sum(/DocumentRoot/group0/Header0/Detail1[attribute/@updateFlag!='D']/dr_amt__bc)))div 100,'##.000')"/>
</span>
<xsl:text> </xsl:text>
<xsl:value-of select="/DocumentRoot/group0/Header0/Detail1[attribute/@updateFlag!='D']/finent_curr_code"/>
</div>
<div class="eachSection alighlt ">Total Credit:
<span class="cr-amt">Cr
<xsl:value-of select="sum(/DocumentRoot/group0/Header0/Detail1[attribute/@updateFlag!='D']/cr_amt__bc)"/>
<xsl:value-of select="format-number(round(100*(sum(/DocumentRoot/group0/Header0/Detail1[attribute/@updateFlag!='D']/cr_amt__bc)))div 100,'##.000')"/>
</span>
<xsl:text> </xsl:text>
<xsl:value-of select="/DocumentRoot/group0/Header0/Detail1[attribute/@updateFlag!='D']/finent_curr_code"/>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment