Interval to hours function
Convert the interval value from a worklog or other source to hours.
function intervalToHours(interval time) {
int m = time["TOMILLIS"];
int hours = m/(1000*60*60);
return hours;
}Need support? Create a request with our support team.
Copyright © 2005 - 2025 Appfire | All rights reserved.
