Commit 438fbcf0 authored by pbhosale's avatar pbhosale

merged in svn as suggested by Piyush Sir on[17-03-2020]

AllowDednSalComp.java


git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@217954 ce508802-f39f-4f6c-b175-0d175dae99d5
parent bf406bdc
......@@ -185,6 +185,7 @@ public class AllowDednSalComp
pbToJavaSyntaxKeySize = pbSyntaxKeyList.size();
if(pbToJavaSyntaxKeySize > 0)
{
input = input.replace(" ", " "); // Modified on 17/03/2019
for (int i = 0; i < pbToJavaSyntaxKeySize; i++)
{
String pbKeyStr = (String) pbSyntaxKeyList.get(i);
......@@ -911,6 +912,8 @@ public class AllowDednSalComp
//Added by Varsha V on 22-07-19
exprsEngine.eval("function IIF(a,b,c) {return a?b:c}");
exprsEngine.eval("function ISNULL(a) {return a==null?true:false}");
// Modified 17/03/2020
exprsEngine.eval("function ROUND(value,decimals) {return Number(Math.round(value+'e'+decimals)+'e-'+decimals)}");
//Ended by Varsha V on 22-07-19
//Added by Varsha V on 02-12-19
//Commented by Poonam B[16-12-2019][To avoid nullPointer][START]
......
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