Commit c891d8c8 authored by sanashaikh's avatar sanashaikh

Sana S: Modified on 18/11/19

git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@212197 ce508802-f39f-4f6c-b175-0d175dae99d5
parent 23cf15c2
...@@ -491,7 +491,10 @@ public class CadreWisePerkIC extends ValidatorEJB implements CadreWisePerkLocal, ...@@ -491,7 +491,10 @@ public class CadreWisePerkIC extends ValidatorEJB implements CadreWisePerkLocal,
else if ("amount".equalsIgnoreCase(childNodeName)) else if ("amount".equalsIgnoreCase(childNodeName))
{ {
amount = Double.parseDouble(checkInt(genericUtility.getColumnValue("amount",dom))); amount = Double.parseDouble(checkInt(genericUtility.getColumnValue("amount",dom)));
if(genericUtility.getColumnValue("amount",dom) == null || amount <= 0) if(genericUtility.getColumnValue("amount",dom) == null || amount >= 0)
{
}
else
{ {
/*errCode="VTPAMT1"; /*errCode="VTPAMT1";
errList.add(errCode); errList.add(errCode);
......
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