Commit 8f0dcd51 authored by cpatil's avatar cpatil

modify for splitting


git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@92930 ce508802-f39f-4f6c-b175-0d175dae99d5
parent 6f5779f6
...@@ -3246,14 +3246,23 @@ public class DistCommon ...@@ -3246,14 +3246,23 @@ public class DistCommon
//System.out.println("Date in pickRate...."+tranDate); //System.out.println("Date in pickRate...."+tranDate);
if (aLotNo.indexOf("~t") > 0) if (aLotNo.indexOf("~t") > 0)
{ {
siteCode = getTokenList(aLotNo,"~t"); //siteCode = getTokenList(aLotNo,"~t"); // commented by cpatil
locCode = getTokenList(aLotNo,"~t"); //locCode = getTokenList(aLotNo,"~t"); // commented by cpatil
lotNo = getTokenList(aLotNo,"~t"); //lotNo = getTokenList(aLotNo,"~t"); // commented by cpatil
lotSl = getTokenList(aLotNo,"~t"); //lotSl = getTokenList(aLotNo,"~t"); // commented by cpatil
///System.out.println("siteCode..**..*>"+siteCode); ///System.out.println("siteCode..**..*>"+siteCode);
//System.out.println("locCode..**..*>"+locCode); //System.out.println("locCode..**..*>"+locCode);
//System.out.println("lotNo..**..*>"+lotNo); //System.out.println("lotNo..**..*>"+lotNo);
//System.out.println("lotSl..**..*>"+lotSl); //System.out.println("lotSl..**..*>"+lotSl);
// modify by cpatil start
String MulStr[] = aLotNo.split("~t");
siteCode = MulStr[0];
locCode = MulStr[1];
lotNo = MulStr[2];
lotSl = MulStr[3];
// end
} }
else else
{ {
......
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