Commit 185b5382 authored by wansari's avatar wansari

W15GSUN002 removed linenumber space for interface table.


git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@99237 ce508802-f39f-4f6c-b175-0d175dae99d5
parent e3cd6307
......@@ -214,8 +214,10 @@ public class PalletRequisitionActEJB extends ActionHandlerEJB implements PalletR
itemDescr = checkNullAndTrim(rs.getString("DESCR"));
lineNo = checkNullAndTrim(rs.getString("LINE_NO"));
lineNo = " " + lineNo;
lineNo = lineNo.substring(lineNo.length()-3);
//Changed by wasim on 26-11-2015 to remove space for interface table [START]
/*lineNo = " " + lineNo;
lineNo = lineNo.substring(lineNo.length()-3);*/
//Changed by wasim on 26-11-2015 to remove space for interface table [END]
quantity = rs.getDouble("QUANTITY");
unit = checkNullAndTrim(rs.getString("UNIT"));
......@@ -327,8 +329,12 @@ public class PalletRequisitionActEJB extends ActionHandlerEJB implements PalletR
itemCode = checkNullAndTrim(rs.getString("ITEM_CODE"));
itemDescr = checkNullAndTrim(rs.getString("DESCR"));
lineNo = checkNullAndTrim(rs.getString("LINE_NO"));
lineNo = " " + lineNo;
lineNo = lineNo.substring(lineNo.length()-3);
//Changed by wasim on 26-11-2015 to remove space for interface table [START]
/*lineNo = " " + lineNo;
lineNo = lineNo.substring(lineNo.length()-3);*/
//Changed by wasim on 26-11-2015 to remove space for interface table [END]
quantity = rs.getDouble("QUANTITY");
unit = checkNullAndTrim(rs.getString("UNIT"));
lotNo = checkNullAndTrim(rs.getString("LOT_NO"));
......@@ -525,8 +531,10 @@ public class PalletRequisitionActEJB extends ActionHandlerEJB implements PalletR
itemDescr = checkNullAndTrim(rs.getString("DESCR"));
lineNo = checkNullAndTrim(rs.getString("LINE_NO"));
lineNo = " " + lineNo;
lineNo = lineNo.substring(lineNo.length()-3);
//Changed by wasim on 26-11-2015 to remove space for interface table [START]
/*lineNo = " " + lineNo;
lineNo = lineNo.substring(lineNo.length()-3);*/
//Changed by wasim on 26-11-2015 to remove space for interface table [END]
quantity = rs.getDouble("QUANTITY");
unit = checkNullAndTrim(rs.getString("UNIT"));
......
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