Hi,
I need to create a sub-task and then to set child customfield values in the same transaction.
I've used "Create Subtask" script in a post-function and I've seen than in this script you can manage with modifying customfield after using: Additional issue actions
I need to know how to make reference to parent customfields and child customfield in order to set a child's customfield using the value of a parent customfield.
Any help is welcome
Begoña
Does this thread help?
Thanks! It works! import com.atlassian.jira.ComponentManager import com.atlassian.jira.issue.CustomFieldManager import com.atlassian.jira.issue.fields.CustomField import com.atlassian.jira.issue.IssueManager import com.atlassian.jira.issue.Issue import com.atlassian.jira.issue.MutableIssue CustomFieldManager customFieldManager = ComponentManager.getInstance().getCustomFieldManager() CustomField customField_codigo_req = customFieldManager.getCustomFieldObjectByName('Código del requisito') CustomField customField_codigo_subreq = customFieldManager.getCustomFieldObjectByName('Código del sub-requisito') def parentMyFieldValue = transientVars["issue"].getCustomFieldValue(customField_codigo_subreq) issue.setCustomFieldValue(customField_codigo_req, parentMyFieldValue)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
thank you Udo ;-)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.