Commit 19469848 authored by kshinde's avatar kshinde

modified condition to check 'Success' in return string before creating voucher.

git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@179921 ce508802-f39f-4f6c-b175-0d175dae99d5
parent d809cce4
......@@ -1022,10 +1022,17 @@ public class PoRcpConf extends ActionHandlerEJB implements PoRcpConfLocal, PoRcp
{
retString = " ";
}*/
if(retString == null || "Success".equalsIgnoreCase(retString) || retString.trim().length() == 0 )
/*if(retString == null || "Success".equalsIgnoreCase(retString) || retString.trim().length() == 0 )
{
retString = " ";
}*/
//modified by kunal [8/2/2018] start
if(retString == null || retString.indexOf("Success") > -1 || retString.trim().length() == 0 )
{
retString = " ";
}
//modified by kunal [8/2/2018] end
//modified by Rupesh Pawar [17/10/2017][End]
//Change by Manish on 28/04/16 [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