Commit 669a9632 authored by manohar's avatar manohar

Bug fix while expiring old record one character skipped and length become less than original


git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@93794 ce508802-f39f-4f6c-b175-0d175dae99d5
parent 6b0b536c
......@@ -130,7 +130,11 @@ public class ItemLotPacksizePrs extends ValidatorEJB implements ItemLotPacksizeP
{
String original = lotNoFrom.substring(0,counter);
set = set + original;
lotNoFrom = lotNoFrom.substring(counter+1);
//lotNoFrom = lotNoFrom.substring(counter+1); // 18/10/13 Manoharan commented as one character skipped
lotNoFrom = lotNoFrom.substring(counter); // 18/10/13 Manoharan added as one character skipped
}
counter ++;
}//end while
......
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