Create
cancel
Showing results for 
Search instead for 
Did you mean: 
Sign up Log in
Celebration

Earn badges and make progress

You're on your way to the next level! Join the Kudos program to earn points and save your progress.

Deleted user Avatar
Deleted user

Level 1: Seed

25 / 150 points

Next: Root

Avatar

1 badge earned

Collect

Participate in fun challenges

Challenges come and go, but your rewards stay with you. Do more to earn more!

Challenges
Coins

Gift kudos to your peers

What goes around comes around! Share the love by gifting kudos to your peers.

Recognition
Ribbon

Rise up in the ranks

Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!

Leaderboard

Come for the products,
stay for the community

The Atlassian Community can help you and your team get more value out of Atlassian products and practices.

Atlassian Community about banner
4,639,449
Community Members
 
Community Events
196
Community Groups

Issue Created Listener: Copy Custom Field Value from Parent to Sub-task on Creation

Edited

I am trying to write a scripted listener that will copy down a Custom Field's value (Select List) from parent to child on creation.

I am trying to avoid using a post function, as I want this rule to fire across an entire project whenever a sub-task is created. 

I currently have a listener that is working whenever the Parent is UPDATED...

import com.atlassian.jira.component.ComponentAccessor
import com.atlassian.jira.event.type.EventDispatchOption
import com.atlassian.jira.issue.MutableIssue

def change = event?.getChangeLog()?.getRelated("ChildChangeItem")?.find {it.field == "Source of Request - JudahTest"}
if (change) {
log.debug "Value changed from ${change.oldstring} to ${change.newstring}"

def subtasks = event.issue.getSubTaskObjects()
def customField = ComponentAccessor.getCustomFieldManager().getCustomFieldObjectByName("Source of Request - JudahTest")

if (subtasks){
subtasks.each {it ->
def options = ComponentAccessor.getOptionsManager().getOptions(customField.getRelevantConfig(it))
((MutableIssue) it).setCustomFieldValue(customField, options.find {it.value == change.newstring})
ComponentAccessor.getIssueManager().updateIssue(event.user, ((MutableIssue) it), EventDispatchOption.DO_NOT_DISPATCH, false)
}
}
}

Unfortunately, simply changing the listening event did not work. I need this to update on Issue Created! Any one out there want to help tackle this?? 

1 answer

0 votes
Ivan Tovbin
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
Oct 26, 2018 • edited

Hi,

Judging by your code, it's not working because:

1) There's no changelog in Issue Created event, and thus there's not point in trying to get field values from there. Get them from the issue directly.

2) It's supposed to trigger on sub-task creation, right? If so you need to change the logic of using your issue variable, because right now it is as if you are creating a parent issue, not a sub-task.

With that in mind this should help:

import com.atlassian.jira.component.ComponentAccessor
import com.atlassian.jira.event.type.EventDispatchOption


def issue = event.issue

if(issue.isSubTask()){
def currentUser = ComponentAccessor.getJiraAuthenticationContext().getLoggedInUser()
def parent = issue.getParentObject()
def customField = ComponentAccessor.getCustomFieldManager().getCustomFieldObjectByName("Source of Request - JudahTest")
def cfValue = parent.getCustomFieldValue(customField)
issue.setCustomFieldValue(customField, cfValue)
ComponentAccessor.getIssueManager().updateIssue(currentUser, issue, EventDispatchOption.ISSUE_UPDATED, false)
}


Thank you for the suggestion. When we tried it out we get errors on these lines 

issue.setCustomFieldValue(customField, cfValue)
ComponentAccessor.getIssueManager().updateIssue(currentUser, issue, EventDispatchOption.ISSUE_UPDATED, false)

Can not find matching method for both.

Is that because we need to define options to use setCustomFieldValue for a select list (single) field?

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events