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??
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?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.