Commit 6340351e authored by prane's avatar prane

bug fixed @ case 2- itemdefault

git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@214074 ce508802-f39f-4f6c-b175-0d175dae99d5
parent 57f8158a
...@@ -1225,7 +1225,10 @@ public class DistIssueIC extends ValidatorEJB { ...@@ -1225,7 +1225,10 @@ public class DistIssueIC extends ValidatorEJB {
rs = pstmt.executeQuery(); rs = pstmt.executeQuery();
if(rs.next()) if(rs.next())
{ {
varValue = rs.getString("tran_type__parent"); //Changed by Pavan R26dec19 start[bug fixed]
//varValue = rs.getString("tran_type__parent");
varValue = checkNull(rs.getString("loc_code__cons"));
//Changed by Pavan R26dec19 end[bug fixed]
} }
pstmt.close(); pstmt.close();
pstmt = null; pstmt = null;
......
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