I am using custom code - on workflow transition - when creating sub-task, code is updating text in summary field.
The code i am using with scriptrunner
import com.atlassian.jira.component.ComponentAccessor;
import com.atlassian.jira.issue.Issue
def issueManager = ComponentAccessor.getIssueManager()
def customFieldManager = ComponentAccessor.getCustomFieldManager()
def cField = customFieldManager.getCustomFieldObject("customfield_11201")
def cFieldValue = issue.getCustomFieldValue(cField)
def a = cFieldValue.toString()
def x = a.indexOf('[')
def y = a.indexOf(']')
if (cFieldValue != null )
{def newSummary = a[x..y+1] + issue.summary
issue.summary = newSummary}
It should update summary field with text from another custom field. If in custom filed is text [ACC] - Accounting, then when user creates sub-task, field summary should be updated like this [ACC] + summary
The problem i noticed that in filter for an issues, ie. Open issues i am getting this:
(this text [nul] - is dynamic, when i scroll issues it dissapears, or when i click on an issue, but then it show back again.
Any help would be appreciated?
Hi hreich,
It looks like you have a relatively simple error here. You wrote issue.summary = newSummary. However, this will not allow you to actually set the summary. You just need to use the setSummary method, e.g. issue.setSummary(newSummary).
import com.atlassian.jira.component.ComponentAccessor; import com.atlassian.jira.issue.Issue def issueManager = ComponentAccessor.getIssueManager() def customFieldManager = ComponentAccessor.getCustomFieldManager() def cField = customFieldManager.getCustomFieldObjectByName("textField") def cFieldValue = issue.getCustomFieldValue(cField) def a = cFieldValue.toString() def x = a.indexOf('[') def y = a.indexOf(']') if (cFieldValue != null ) {def newSummary = a[x..y] + " " + issue.summary issue.setSummary(newSummary)}
I also think you just need a[x..y]. a[x..y+1] doesn't seem nescessary and throws errors. I added an extra space between the array values and the issue summary, otherwise it will display as [ACC]texthere.
Welcome to great meetings, with less work. Automatically record, summarize, and share instant recaps of your meetings with Loom AI.
Learn moreOnline 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.