Commit f6315b27 authored by vpathare's avatar vpathare

edetailing report related changes for zero duration record should not display

git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@184197 ce508802-f39f-4f6c-b175-0d175dae99d5
parent 1003c0e8
......@@ -363,6 +363,12 @@ public class EDetailingReportEJB extends ValidatorEJB implements EDetailingRepor
jsonObject.put( "content_duration", minutes );
}
if( totalMili< 60000 )
{
totalMinute = (totalMili / 1000);
jsonObject.put( "content_duration", totalMinute );
}
}
}
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