Commit 9035cb0f authored by manohar's avatar manohar

Bug fixing in select 1 column and getting 2 column value in result for rcpacct oth_amt corrected


git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@94108 ce508802-f39f-4f6c-b175-0d175dae99d5
parent f8aebbfb
...@@ -142,8 +142,7 @@ public class ReceiptAdvPostSave extends ValidatorEJB implements ReceiptAdvPostSa ...@@ -142,8 +142,7 @@ public class ReceiptAdvPostSave extends ValidatorEJB implements ReceiptAdvPostSa
rs = pstmt.executeQuery(); rs = pstmt.executeQuery();
if (rs.next()) if (rs.next())
{ {
advAmtRact = rs.getDouble(1); othAmt = rs.getDouble(1);
othAmt = rs.getDouble(2);
} }
rs.close(); rs.close();
rs = null; rs = 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