Commit 0a27eafc authored by vvengurlekar's avatar vvengurlekar

PoReceiptIc.java remove trim method for allowing space in Lot SI


git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@182591 ce508802-f39f-4f6c-b175-0d175dae99d5
parent e43522d5
...@@ -1190,7 +1190,8 @@ public class PoReceiptIc extends ValidatorEJB implements PoReceiptIcLocal,PoRec ...@@ -1190,7 +1190,8 @@ public class PoReceiptIc extends ValidatorEJB implements PoReceiptIcLocal,PoRec
if (childNodeName.equalsIgnoreCase("lot_sl")) if (childNodeName.equalsIgnoreCase("lot_sl"))
{ {
String lotSl=(genericUtility.getColumnValue("lot_sl",dom)); String lotSl=(genericUtility.getColumnValue("lot_sl",dom));
if(lotSl==null || lotSl.trim().length()==0) //removed trim by varsha v for allowing space in field
if(lotSl==null || lotSl.length()==0)
{ {
errCode = "VTLOTSL"; errCode = "VTLOTSL";
errList.add(errCode); errList.add(errCode);
......
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