Commit 5c1e7f31 authored by agaikwad's avatar agaikwad

Changes in MiscVoucher Confirm(instructed by sir)


git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@104788 ce508802-f39f-4f6c-b175-0d175dae99d5
parent 125dd1f6
......@@ -395,7 +395,7 @@ conn = getConnection();
pstmt = conn.prepareStatement(sql);
pstmt.setString(1,tranId);
rs = pstmt.executeQuery();
if(rs.next())
while (rs.next())
{
lineNo = rs.getString("line_no");
acctCode = rs.getString("acct_code");
......@@ -429,7 +429,7 @@ conn = getConnection();
projCodeDet = rs.getString("proj_code");
analCode1 = rs.getString("anal_code__1");
analCode2 = rs.getString("anal_code__2");
System.out.println("Line no is:-"+lineNo);
miscdetMap = new HashMap();
miscdetMap.put("line_no",lineNo);
miscdetMap.put("acct_code",acctCode);
......
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