Commit fde60a9d authored by ngadkari's avatar ngadkari

git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@191856 ce508802-f39f-4f6c-b175-0d175dae99d5
parent e97a22ab
...@@ -388,7 +388,7 @@ public class PayRecXfrPrc extends ProcessEJB implements PayRecXfrPrcLocal , PayR ...@@ -388,7 +388,7 @@ public class PayRecXfrPrc extends ProcessEJB implements PayRecXfrPrcLocal , PayR
String errCode = ""; String errCode = "";
String errString = ""; String errString = "";
String insertSql = "",sql=""; String insertSql = "",sql="";
String tranId = null,RectopayAutoConf=""; String tranId = null,paytoRecAutoConf="";
Connection conn = null; Connection conn = null;
Statement st = null; Statement st = null;
PreparedStatement pstmt = null; PreparedStatement pstmt = null;
...@@ -636,13 +636,13 @@ public class PayRecXfrPrc extends ProcessEJB implements PayRecXfrPrcLocal , PayR ...@@ -636,13 +636,13 @@ public class PayRecXfrPrc extends ProcessEJB implements PayRecXfrPrcLocal , PayR
System.out.println("tran_id [" + tranId + "]"); System.out.println("tran_id [" + tranId + "]");
errString = null; errString = null;
} }
//RectopayAutoConf conditon added by nandkumar Gadkari on 10/10/18----------------------Start ----------------- //paytoRecAutoConf conditon added by nandkumar Gadkari on 10/10/18----------------------Start -----------------
RectopayAutoConf=checkNull(finCommon.getFinparams("999999", "PAYTOREC_AUTOCONF", conn)).trim(); paytoRecAutoConf=checkNull(finCommon.getFinparams("999999", "PAYTOREC_AUTOCONF", conn)).trim();
if (("NULLFOUND".equalsIgnoreCase(RectopayAutoConf) || RectopayAutoConf == null || RectopayAutoConf.trim().length() == 0) || !"Y".equalsIgnoreCase(RectopayAutoConf) ) if (("NULLFOUND".equalsIgnoreCase(paytoRecAutoConf) || paytoRecAutoConf == null || paytoRecAutoConf.trim().length() == 0) || !"Y".equalsIgnoreCase(paytoRecAutoConf) )
{ {
RectopayAutoConf="N"; paytoRecAutoConf="N";
} }
if ("Y".equalsIgnoreCase(RectopayAutoConf)) if ("Y".equalsIgnoreCase(paytoRecAutoConf))
{ {
RecPayTrfConf recPayTrfConf = new RecPayTrfConf(); RecPayTrfConf recPayTrfConf = new RecPayTrfConf();
String forcedFlag="N"; String forcedFlag="N";
...@@ -670,7 +670,7 @@ public class PayRecXfrPrc extends ProcessEJB implements PayRecXfrPrcLocal , PayR ...@@ -670,7 +670,7 @@ public class PayRecXfrPrc extends ProcessEJB implements PayRecXfrPrcLocal , PayR
} }
return errString; return errString;
} }
//RectopayAutoConf conditon added by nandkumar Gadkari on 10/10/18----------------------end ----------------- //paytoRecAutoConf conditon added by nandkumar Gadkari on 10/10/18----------------------end -----------------
}//try end }//try end
......
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