Commit c5912fd6 authored by spawar's avatar spawar

Removed last Q from pallet no while inserting into AWMS interface table


git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@99461 ce508802-f39f-4f6c-b175-0d175dae99d5
parent afe7bc70
......@@ -2561,6 +2561,10 @@ private String checkNull(String input)
palletStatus=getPalletStatus(palletNo, siteCode, expNeExpStockList, conn);
System.out.println("palletStatus for AWMS :"+palletStatus);
//palletNo = palletNo.substring(palletNo.length()-1, palletNo.length())=="Q"?palletNo.substring(0,palletNo.length()-1):palletNo;
palletNo = palletNo.charAt(palletNo.length()-1)=='Q'?palletNo.substring(0,palletNo.length()-1):palletNo;
System.out.println("Pallet No After removing Q: "+palletNo);
rs = pstmt.executeQuery();
//lineNo++;
HashMap awmsMap = new HashMap();
......
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