Commit a600c7ee authored by vdhoble's avatar vdhoble

changes made to remove parsing of double.


git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@96953 ce508802-f39f-4f6c-b175-0d175dae99d5
parent ff81ce56
...@@ -152,10 +152,10 @@ public String process(Document headerDom, Document detailDom, String windowName, ...@@ -152,10 +152,10 @@ public String process(Document headerDom, Document detailDom, String windowName,
rs = pstmt.executeQuery(); rs = pstmt.executeQuery();
if (rs.next()) if (rs.next())
{ {
sumCrAmt = Double.parseDouble(rs.getString(1)); sumCrAmt = rs.getDouble(1);
sumDrAmt = Double.parseDouble(rs.getString(2)); sumDrAmt = rs.getDouble(2);
sumCrAmtBase = Double.parseDouble(rs.getString(3)); sumCrAmtBase = rs.getDouble(3);
sumDrAmtBase = Double.parseDouble(rs.getString(4)); sumDrAmtBase = rs.getDouble(4);
} }
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