Commit 5d30d98c authored by kshinde's avatar kshinde

Receipt Dishonour duplicate data in HashMap bug fix


git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@199029 ce508802-f39f-4f6c-b175-0d175dae99d5
parent f62f1b7f
...@@ -734,6 +734,7 @@ public class ReceiptDishonourConf extends ActionHandlerEJB implements ReceiptDis ...@@ -734,6 +734,7 @@ public class ReceiptDishonourConf extends ActionHandlerEJB implements ReceiptDis
rs = pstmt.executeQuery(); rs = pstmt.executeQuery();
while(rs.next()) while(rs.next())
{ {
rcpHnrDeta = new HashMap();
rcpHnrDeta.put("line_no", checkNull(rs.getString("line_no"))); rcpHnrDeta.put("line_no", checkNull(rs.getString("line_no")));
rcpHnrDeta.put("acct_code", checkNull(rs.getString("acct_code"))); rcpHnrDeta.put("acct_code", checkNull(rs.getString("acct_code")));
rcpHnrDeta.put("cctr_code", checkNull(rs.getString("cctr_code"))); rcpHnrDeta.put("cctr_code", checkNull(rs.getString("cctr_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