Commit 3deae494 authored by vvengurlekar's avatar vvengurlekar

ChqNoChgIC.java - corrected the condition for confirmed column of direct payment


git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@193369 ce508802-f39f-4f6c-b175-0d175dae99d5
parent eb399f22
...@@ -155,7 +155,8 @@ public class ChqNoChgIC extends ValidatorEJB implements ChqNoChgICLocal,ChqNoChg ...@@ -155,7 +155,8 @@ public class ChqNoChgIC extends ValidatorEJB implements ChqNoChgICLocal,ChqNoChg
pstmt.close(); pstmt.close();
pstmt = null; pstmt = null;
} }
if(cnt == 0 || confirmed.equalsIgnoreCase("N")) //if(cnt == 0 || confirmed.equalsIgnoreCase("N")) condition change by Varsha V on 22-11-18
if(cnt == 0 || !(confirmed.equalsIgnoreCase("Y")))
{ {
errCode = "VTPAY3"; errCode = "VTPAY3";
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