Let's say that we want the Project Lead to be able to easily reschedule issues in one step, setting the Fix Versions, Assignee and an optional comment.
First off, we create the Reschedule action.
Then, we must make it available only for the project lead and only for issues that are not Resolved or Closed, so we write the following condition:
number ENABLED = 1; number DISABLED = 2; number HIDDEN = 3; if(projectPM(project) == currentUser() && status != "Resolved" && status != "Closed"){ return ENABLED; } return HIDDEN;
Next, we write the Screen Script. We must ask the user what Fix Versions to set, a new assignee (we will provide the old assignee as a default value) and a comment field.
string TEXT = "TEXT"; string TEXT_DISABLED = "TEXT_DISABLED"; string [] fields; // fix versions fields = addElement(fields, "Fix Versions"); fields = addElement(fields, TEXT); fields = addElement(fields, ""); // assignee fields = addElement(fields, "Assignee"); fields = addElement(fields, TEXT); fields = addElement(fields, assignee); // comment fields = addElement(fields, "Comment"); fields = addElement(fields, TEXT); fields = addElement(fields, ""); return fields;
This will generate the following screen
Type conversion
Don't forget that assigning a string value containing pipes to a string array, will split the original string at the position of each pipe. Therefore, we can use "1.0|2.0" as a value for Fix Versions to set multiple values.
Finally, the Action Script.
string [] fvers = getElement(argv, 1); string newAssignee = getElement(argv, 3); string comment = getElement(argv, 5); fixVersions = fvers; assignee = newAssignee; if(isNotNull(comment)){ addComment(key, currentUser(), comment); }
That's it! You now have a powerful tool, reusable across multiple projects!