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.