Commit b8479000 authored by manohar's avatar manohar

in case both debit and credit amount are zero skipped inserting in gltrace


git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@95386 ce508802-f39f-4f6c-b175-0d175dae99d5
parent 95192032
......@@ -8082,7 +8082,10 @@ public class FinCommon
errString = itmDBAccessEJB.getErrorString("","VTEXRAT1","","",conn);
return errString;
}
if (drAmt == 0 && crAmt == 0)
{
return "";
}
tempDrAmt = drAmt * exchRate;
tempCrAmt = crAmt * exchRate;
......
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