Commit 6a690c4c authored by pdas's avatar pdas

Request ID- m15dsun003

In QcOrderAct.java  the condition for comparing the string values   changed from (locType != "R")  to (!"R".equals(locType))


git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@98270 ce508802-f39f-4f6c-b175-0d175dae99d5
parent 984f9d5e
......@@ -461,7 +461,7 @@ public class QcOrderAct extends ActionHandlerEJB implements QcOrderActLocal , Q
conn = null;
return errString;
}
if ("U".equalsIgnoreCase(locLogic) && locType != "R" )
if ("U".equalsIgnoreCase(locLogic) && !("R".equalsIgnoreCase(locType)))
{
if (!(locUdf.equalsIgnoreCase("NULLFOUND")|| locUdf.trim().length() == 0))
{
......
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