Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Section
Column

Tempo timesheet integration improved

This release will allow exporting more information related to the Tempo timesheets, now it's possible to export worklog attributesTempo Timesheets allows the customer to configure custom attributes on the worklog level. In that way, this new Xporter version will allow those attributes from Tempo Timesheets.

Here is the new notation to get the worklog attributes printed:

Code Block
#{for worklogs}
   Author: ${Worklogs[n].Author}
   Comment: ${Worklogs[n].Comment}
   Time Spent: ${Worklogs[n].TimeSpentFormatted}
   Attribute: ${Worklogs[n].My<My Attribute Name>}
   2nd Attribute: ${Worklogs[n].<My Seconde Attribute NameName>}
   Billed hours: ${Worklogs[n].BilledHoursFormatted}
#{end}

...