Commit 0067907b authored by sshinde's avatar sshinde

Change Condition For Checking PorcpTranType and trantype are equal or not


git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@94001 ce508802-f39f-4f6c-b175-0d175dae99d5
parent 069b8dd8
...@@ -819,9 +819,10 @@ public class PoRcpConf extends ActionHandlerEJB implements PoRcpConfLocal, PoRcp ...@@ -819,9 +819,10 @@ public class PoRcpConf extends ActionHandlerEJB implements PoRcpConfLocal, PoRcp
} }
else else
{ {
if ( porcpTranType.trim() != tranType ) System.out.println(" porcpTranType is "+porcpTranType.trim()+ "tranType is = "+tranType.trim());
if (! porcpTranType.trim().equalsIgnoreCase(tranType.trim()))
{ {
if ( porcpTranType.trim() != cwipTranType ) if (! porcpTranType.trim().equalsIgnoreCase(cwipTranType))
{ {
retString = itmDBAccessLocal.getErrorString("","VTRCPTYPE1",""); retString = itmDBAccessLocal.getErrorString("","VTRCPTYPE1","");
} }
......
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