Repeating Issues add-on allow to edit system and custom field values when setup repeating actions. To edit custom fields please clicking on "More..." link on repeating issue dialog - this will load fields that can be edited for given issue type.
...
Info |
---|
Only fields added to screens for given issue type will be available for edition |
All fields will have simple form input where static value or dynamic value can be provided - see Velocity Template Language in Repeating Issues add-on.
Special velocity variable for custom field
Each custom field has special variable $this available in velocity context. This is just the current field id (e.g. 'custom field_100001') and this can be used e.g. together with Issue.getCustomField(<fieldId>) method.
Sample custom field values or expressions
Custom field type | Value | Description |
---|---|---|
Any custom field type | $!sourceIssue.getCustomFieldValue($this) | Field will have the same custom field value as source issue. |
Date Time | $!sourceIssue.getCustomFieldValue($this).addMonth(1) | Date field will have the date equal to the corresponding field value of source issue + 1 month |
Date Time picker | 11/sep/19 1:15 PM | Datetime field will have the date and time equal to '11/sep/19 1:15 PM' |
Select List (single choice) | #if(${repeating.date.month} === '10")10000#{else}10001#end | If the repeating occur in October then the select list custom field value will be option with id 10000. In other months the value will be option with id 10001 |
Select List (cascading) | [20000, 20020/] | Field wil have cascading value with parent option with id 20000 and child option with id 20020 |
Checkboxes | [10000] | Field will have selected checkbox for option with id 10000 |
...