Maria,
> Hi, is there a way to display the add up of Time Spent in minutes?
> In List issue and time tracking, i would like to display the "time
> spent" in minutes as it is stored in the database instead of hours .
> Then It would be possbile for me in "advanced search" to make a search
> for all issues regardless of priority, status, assigned and category
> during a date interval, export the list of issues to excel and very
> easily add up the total time spent in Excel.
>
Yes, just open /path-to-eventum/include/class.issue.php and comment line
2218 on function getListing():
$res[$i]["time_spent"] =
Misc::getFormattedTime($res[$i]["time_spent"]);
--Joao