Commit d7767402 authored by mnair's avatar mnair

Changed the condition in line no 788

 if("N".equals(active)) ------> if("N".equalsIgnoreCase(active))

git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@183473 ce508802-f39f-4f6c-b175-0d175dae99d5
parent ef4e68bc
......@@ -785,7 +785,7 @@ ItemAcctDetrICLocal, ItemAcctDetrICRemote
active = rs.getString("active");
System.out.println("Active"+active);
if("N".equals(active))
if("N".equalsIgnoreCase(active))
{
errCode="VMTRNCAT1";
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