Commit d5faeb7b authored by jshaikh's avatar jshaikh

Some minor changes at line no 15378 of SalesOrderIC

git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@197194 ce508802-f39f-4f6c-b175-0d175dae99d5
parent 041a5333
...@@ -15374,9 +15374,12 @@ public class SalesOrderIC extends ValidatorEJB implements SalesOrderICLocal, Sal ...@@ -15374,9 +15374,12 @@ public class SalesOrderIC extends ValidatorEJB implements SalesOrderICLocal, Sal
lbProceed = false; lbProceed = false;
do { do {
lsToken = distCommon.getToken(appOrderType, ","); lsToken = distCommon.getToken(appOrderType, ",");
System.out.println("lsToken == "+lsToken+" appOrderType = "+appOrderType); System.out.println("orderType == "+orderType+" lsToken == "+lsToken+" appOrderType == "+appOrderType);
if (orderType.trim().length() == lsToken.trim().length()) { //if (orderType.trim().length() == lsToken.trim().length())
if(orderType.equalsIgnoreCase(lsToken))//Changed by Jaffar S. on 15-02-19
{
lbProceed = true; lbProceed = true;
break;
} }
} while (appOrderType.trim().length() > 0); } while (appOrderType.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