Groovy script for sub-task is not working in jira 7

Krithica Gowri Shankar March 1, 2017

Hi,

We recently upgraded JIRA to version 7.2.4 and script runner plugin 4.3.16 is used.

The groovy scripts used for sub-task creation, assignee, set due date is not working now.

I used the below script in JIRA 6 at additional issue actions section and it was working there.

import com.atlassian.jira.user.ApplicationUsers

issue.summary = sourceIssue.summary + ' - Summary ';
//SET ASSIGNEE FOR Sub-task
if (cfValues['Product]*.value.contains("A")){
cfParent = customFieldManager.getCustomFieldObjectByName('Userpickerfield')
parentMyFieldValue = transientVars["issue"].getCustomFieldValue(cfParent)
if (parentMyFieldValue != null)
{
issue.setAssignee(ApplicationUsers.toDirectoryUser(parentMyFieldValue))
}
//SET DUE DATE
def cf = customFieldManager.getCustomFieldObjectByName('Datefield')
val = issue.getCustomFieldValue(cf) - 9
issue.setDueDate(val)
}
 

I am getting error at bold lines.

Please suggest a solution.

 

Thanks

1 answer

0 votes
Sachin Dhamale
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
March 2, 2017
  1. What exactly error you get in first bold Line?
  2. On Second Bold Line: You cannot set the long or int value into Due Date. It has to be Date Object.
Krithica Gowri Shankar March 6, 2017

1.cfParent- The variable cfParent is undeclared.

2. parentMyFieldValue - The variable parentMyFieldValue is undeclared.

3. getCustomFieldValue-Cannot find matching method

4.issue.setAssignee--Cannot find matching method

even we corrected these errors, sub-tasks are not getting assigned to the custom field value which we entered as users.

Sachin Dhamale
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
March 6, 2017

If you corrected mentioned error and the error mentioned by me then it should worked

you can write a log.error("==="+ parentMyFieldValue) and check in the log file that you get a expected value for assignee.

like this you can debug your script line by line and find out the where exactly error comes

Suggest an answer

Log in or Sign up to answer