Commit c3d133df authored by rtiwari's avatar rtiwari

*** empty log message ***


git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@94272 ce508802-f39f-4f6c-b175-0d175dae99d5
parent f4d52c2a
......@@ -750,11 +750,6 @@ public class ChargeBackFormVerify extends ActionHandlerEJB implements ChargeBack
sql= " update charge_back_form set verify_flag = 'P', error_code = ? , error_msg = ? where tran_id = ? ";
errString = itmDBAccessEJB.getErrorString("","VTPARVFY","","",conn);
}
if(verifyDetailFlag == false)
{
sql= " update charge_back_form set verify_flag = 'R', error_code = ? , error_msg = ? where tran_id = ? ";
errString = itmDBAccessEJB.getErrorString("","VTREJCHB1 ","","",conn);
}
else
{
sql= " update charge_back_form set verify_flag = 'Y' , error_code = ?, error_msg = ? where tran_id = ? ";
......@@ -762,6 +757,18 @@ public class ChargeBackFormVerify extends ActionHandlerEJB implements ChargeBack
errString = itmDBAccessEJB.getErrorString("","VTCHBSUC ","","",conn);
}
if(verifyDetailFlag == false)
{
sql= " update charge_back_form set verify_flag = 'R', error_code = ? , error_msg = ? where tran_id = ? ";
errString = itmDBAccessEJB.getErrorString("","VTREJCHB1 ","","",conn);
}
if(verifyDetailFlag ==true && errorflag == true)
{
System.out.println(" ERROR FOUND IN DETAIL 2");
sql= " update charge_back_form set verify_flag = 'P', error_code = ? , error_msg = ? where tran_id = ? ";
errString = itmDBAccessEJB.getErrorString("","VTPARVFY","","",conn);
}
}
......
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