Commit 96c2b3f1 authored by pchavan's avatar pchavan

Change the Condition To Compare total DR/CR Amount.

git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@192175 ce508802-f39f-4f6c-b175-0d175dae99d5
parent 13fe793e
...@@ -12604,8 +12604,9 @@ public class FinCommon ...@@ -12604,8 +12604,9 @@ public class FinCommon
//Changed By PriyankaC on 3Oct2018. [END].. //Changed By PriyankaC on 3Oct2018. [END]..
} }
rs.close(); rs.close();
if(totDrAmt == totCrAmt) if( totDrAmt.compareTo(totCrAmt) == 0)
{ {
System.out.println("Compare Total DR/Cr Amount :");
return ""; return "";
} }
// diffAmt = totDrAmt - totCrAmt; // diffAmt = totDrAmt - totCrAmt;
......
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