Versions Compared

Key

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

...

On the fourth exercise, you'll be going to be learn how to export information from multiple issues on a Section of a single template.

Info

In order to provide this functionality, the Xporter for JIRA plugin supports a special notation. That notation allows defining which sections of the template will be populated for each issue, and which sections will be static.

For further information please check our documentation here.

...

.

The notation we'll use is demonstrated below:

...

The following section will list the issues of the type Bug.


&{for issues|filter=%{'${IssueTypeName}'.equals('Bug')}}

Issue Key: ${Key}

Issue Summary: ${Summary}

&{end}


The following section will list the issues of the type Story.


&{for issues|filter=%{'${IssueTypeName}'.equals('Story')}}

Issue Key: ${Key}

Issue Summary: ${Summary}

&{end}

 

This is the footer of the Bulk Export, this section will be rendered a single time.

Info

Using a XLSX template however, please take note that to define an iteration for multiple columns, you need to merge a row of columns and define the "for" inside of those &{for issues...} inside that merged cells. The same thing should be made to define the &{end} of the same iteration. All content between the &{for issues...} definition and the end will &{end} won't be duplicated for each iteration.

For further information please check our documentation here.

...