Commit 8577c1bb authored by smestry's avatar smestry

Changed despatchConfirm component to remove check null for line_no


git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@104709 ce508802-f39f-4f6c-b175-0d175dae99d5
parent cb72d028
......@@ -444,9 +444,15 @@ public class DespatchConfirm extends ActionHandlerEJB implements DespatchConfirm
{
if(statusDesp != "X")
{
lineNo = checkNull(rs3.getString("line_no"));
// Changed by Sneha on 22-02-2017, to remove 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 Sneha on 22-02-2017, to remove 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