Create
cancel
Showing results for 
Search instead for 
Did you mean: 
Sign up Log in

getCustomFieldValue does not get a value from the "scripted field".

Fomin Dmitriy November 25, 2019

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.

 

1 answer

Suggest an answer

Log in or Sign up to answer
0 votes
Hana Kučerová
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
November 25, 2019

Hi @Fomin Dmitriy 

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?

Fomin Dmitriy November 26, 2019

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.

TAGS
AUG Leaders

Atlassian Community Events