Commit a1554919 authored by steurwadkar's avatar steurwadkar

Changes made for trim issue in checkNull() by Santosh


git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@101915 ce508802-f39f-4f6c-b175-0d175dae99d5
parent 1816b9dd
......@@ -516,9 +516,14 @@ public class DespatchConfirm extends ActionHandlerEJB implements DespatchConfirm
if(statusDesp != "X") {
lineNo = checkNull(rs3.getString("line_no"));
//Changed by Santosh on 13-06-2016 for trim issue in checkNull() [Start]
/*lineNo = checkNull(rs3.getString("line_no"));
lineNoSord = checkNull(rs3.getString("line_no__sord"));
expLev = checkNull(rs3.getString("exp_lev"));
expLev = checkNull(rs3.getString("exp_lev"));*/
lineNo = rs3.getString("line_no");
lineNoSord = rs3.getString("line_no__sord");
expLev = rs3.getString("exp_lev");
//Changed by Santosh on 13-06-2016 for trim issue in checkNull() [End]
itemCodeOrd = checkNull(rs3.getString("item_code__ord"));
itemCode = checkNull(rs3.getString("item_code"));
lotNo = rs3.getString("lot_no");
......
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