Commit bbcc9782 authored by kmandhre's avatar kmandhre

bug fix: get decimal value for rate__clg


git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@93468 ce508802-f39f-4f6c-b175-0d175dae99d5
parent 32f22572
......@@ -1021,7 +1021,8 @@ public class DistIssueAct extends ActionHandlerEJB implements DistIssueActLocal,
rs2 = pstmt2.executeQuery();
if (rs2.next())
{
rateClg = rs2.getInt("rate__clg");
//rateClg = rs2.getInt("rate__clg");
rateClg = rs2.getDouble("rate__clg"); //added by kunal on 09/AUG/13 bug fix get decimal value for rate__clg
}
pstmt2.close();
rs2.close();
......
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