Hi.
I am trying to write the listener that will copy data from "scripted field" to text field (or a field with url type).
"search url" - this is "scripted field" in which the hyperlink is calculated.
"Test" - this is text custom field. I want to copy the value of the first field into it.
But getCustomFieldValue function does not work. Following the logs, script execution stops on the line "getCustomFieldValue". The most incomprehensible thing is that еt does not return any errors or exceptions.
However, if I take another field as the data source, the script works well!
There is code of my listener:
import com.atlassian.jira.issue.Issue
import com.atlassian.jira.issue.ModifiedValue
import com.atlassian.jira.issue.util.DefaultIssueChangeHolder
import com.atlassian.jira.component.ComponentAccessor
import com.atlassian.jira.event.issue.IssueEventListener
import com.atlassian.jira.event.issue.IssueEvent
import com.atlassian.jira.issue.fields.CustomField
log.info("tasknumber: " + event.issue);
def issue = event.issue as Issue
def customFieldManager = ComponentAccessor.getCustomFieldManager()
def tgtField = customFieldManager.getCustomFieldObjects(event.issue).find {it.name == "Test"}
log.info ("targetField: " +tgtField);
def sourseField = customFieldManager.getCustomFieldObjects(event.issue).find {it.name == "search url"}
log.info ("sourseField: " +sourseField.getIdAsLong());
def changeHolder = new DefaultIssueChangeHolder();
log.info ("field value3");
try {
def String copyurl = issue.getCustomFieldValue(sourseField);
log.info ("field value2");
log.info ("field value: " + copyurl);
tgtField.updateValue(null, issue, new ModifiedValue(issue.getCustomFieldValue(tgtField), copyurl),changeHolder)
} catch(Exception e) {
log.info ("field value5");
log.info ("field value err: " + e);
}
Please help to understand the causes of the problem.
I've just tested your code and it worked for me.
On which event(s) do you fire this script? I've tried it only with the "Issue Commented" event.
How is your scripted field defined? I've inserted only random text value without any code.
Which version of Jira/ScriptRunner do you have?
Hi, @Hana Kučerová
Version of ScriptRunner is 5.6.2.1-jira8
I use "all issue events".
The result of calculating the field value is formed as follows:
def result = RName + " (" +RDate.format("dd-MMM-yyyy") + ")"
def jqlname = URLEncoder.encode(RDate, "utf-8")
return '<a href=https://"mybazeURL"' + jqlname + '" >' + result + '</a>'
Here is "mybaseurl" - replaces full URL address, "RDate" and "RDate" - calculated value.
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.