Commit 8fd4f7b1 authored by prane's avatar prane

added logic to set spaces in line no ref

git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@217412 ce508802-f39f-4f6c-b175-0d175dae99d5
parent 17c4f7c6
......@@ -216,7 +216,11 @@ public class InvDemSuppSummVerifyPrc extends ProcessEJB
currentDemand = rs.getDouble("demand");
currentSupply = rs.getDouble("supply");
tranId = checkNull(rs.getString("tran_id"));
lineNo = checkNull(rs.getString("line_no"));
//Modified by Pavan Rane 02MAR2020 START[added default spaces in ref line no]
lineNo = checkNull(rs.getString("line_no")).trim();
lineNo = " " + lineNo;
lineNo = lineNo.substring(lineNo.length() - 3, lineNo.length());
//Modified by Pavan Rane 02MAR2020 END[added default spaces in ref line no]
tranSer = checkNull(rs.getString("tran_ser"));
siteCode = checkNull(rs.getString("site_code"));
......
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