Commit 7a7bca0e authored by prane's avatar prane

changes in confirm condition as sm sir


git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@187751 ce508802-f39f-4f6c-b175-0d175dae99d5
parent 1714c703
......@@ -169,8 +169,7 @@ conn = getConnection();
else{
//Changed By PriyankaC on 9JULY2018.
//if((confirm != null && confirm.equalsIgnoreCase("N")))
if((confirm != null && "N".equalsIgnoreCase(confirm)) || ("Y".equalsIgnoreCase(confirm)) && ("B".equalsIgnoreCase(runMode)))
if((confirm == null || "N".equalsIgnoreCase(confirm)) || ("Y".equalsIgnoreCase(confirm) && "B".equalsIgnoreCase(runMode)))
{
errString = gbfRetrieveReceipt(tranId,siteCode,xtraParams,conn);
System.out.println("err String from gdfRetrieveMiscRcp ="+errString);
......
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