On Wed, Apr 10, 2013 at 3:41 AM, Emiliano Heyns
<
emilian...@iris-advies.com> wrote:
> I've reworked one of the taskjuggler samples to show the issue. When ran,
> "All open TODOs.csv" shows effort for "build boat" as 0.3; I would like to
> have a number in hours instead.
>
Sorry, took me a while to get to this. See the textreport attribute `loadunit`
- All textreport attributes:
http://www.taskjuggler.org/tj3/manual/textreport.html
- loadunit:
http://www.taskjuggler.org/tj3/manual/loadunit.html
I changed your report to this:
taskreport "All open TODOs" {
formats csv
loadunit hours
hidetask plan.complete >= 100
journalattributes date, headline, summary, details
}
The resultant csv is this:
"Name";"Effort"
"Long term projects";523.0
" Build boat";2.0
"Errands";357.0
" Pickup Jacket from dry cleaner";8.0
" Buy present for wife";1.0
Hopefully that's what you were looking for.
John