Commit e1ab5136 authored by pchavan's avatar pchavan

Update For rounding the Base amount value.

git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@194733 ce508802-f39f-4f6c-b175-0d175dae99d5
parent af33828d
......@@ -95,7 +95,7 @@ var isAnyRecordSelected = false;
<xsl:if test="dr_amt &gt; 0">
<div class="eachContent textRtAlign">
<span class="dr-amt">Base Amount:
<xsl:value-of select='dr_amt__bc'/><xsl:text> </xsl:text>
<xsl:value-of select="format-number(round(100*(sum(dr_amt__bc)))div 100,'##.000')"/><xsl:text> </xsl:text>
</span>
<xsl:value-of select='finent_curr_code'/>
......@@ -119,7 +119,7 @@ var isAnyRecordSelected = false;
<xsl:if test="cr_amt &gt; 0">
<div class="eachContent textRtAlign">
<span class="cr-amt">Base Amount:
<xsl:value-of select='cr_amt__bc'/><xsl:text> </xsl:text>
<xsl:value-of select= "format-number(round(100*(sum(cr_amt__bc)))div 100,'##.000')"/><xsl:text> </xsl:text>
</span>
<xsl:value-of select='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