Commit 2b2f8e1f authored by vpathare's avatar vpathare

duration data type related issue

git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@182650 ce508802-f39f-4f6c-b175-0d175dae99d5
parent e2d6f68d
......@@ -109,7 +109,8 @@ public class EDetailingReportEJB extends ValidatorEJB implements EDetailingRepor
for( int i=0; i< json.size();i++ )
{
JSONObject jsnObject = (JSONObject)json.get(i);
totalTime=(String)jsnObject.get("TOTAL_TIME");
// totalTime=(String)jsnObject.get("TOTAL_TIME");
totalTime = String.valueOf(jsnObject.get("TOTAL_TIME"));
if( totalTime.length()>0 )
{
totalMili += Integer.parseInt( totalTime );
......
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