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

ScriptRunner Initalizer Behaviour to not pre-fill if value present

Mark Iveson July 28, 2020

Morning,

I'm setting up a Behaviour with an initalizer that I want to check if a specific custom field has a value or not (null). In the instance where there is value already present in the custom field then I don't want the initalizer to run.

// Retrieve the value of the customfield

def outcome = getFieldByName('Board Summary Outcome for Applicant').getValue()

if(outcome != null ) {return}

// It's null so let's add some default text

getFieldByName('Board Summary Outcome for Applicant').setFormValue("Dummy Text Here.")

 

The code above looks reasonable however what I'm finding is it works perfectly when there is no value in the custom field (tick) but if the field has an entry (i.e. text) then that text is updated with the "Dummy Text Here" which is not the behaviour that I want.

Any help would be much appreciated, for whatever reason the outcome variable always resolves to null

1 answer

1 accepted

Suggest an answer

Log in or Sign up to answer
2 votes
Answer accepted
Peter-Dave Sheehan
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
July 28, 2020

Behavior initializer run before the fields are populated from the data associated with the issue (from the database).

So to check if a field already has a value in the initializer, you want to look at the binding variable "underlyingIssue" and load those values from that issue object

Something like

def fieldName = 'Board Summary Outcome for Applicant'
def outcome
if(underlyingIssue){ 
def cf = ComponentAccessor.customFieldManager.getCustomFieldObjects(underlyingIssue).find{it.name == fieldName}
def outcome = underlyingIssue.getCustomFieldValue(cf)
} else {
//underlyingIssue is null on issue create screen
outcome = ''
}
if(!outcome){
getFieldByName(fieldName).setFormValue("Dummy Text Here.")
}
Mark Iveson July 28, 2020

Thanks Peter - worked a treat. I've modified your initial code block slightly as you defined outcome twice and the block is missing an import to enable the use of the ComponentAssessor.

 

import com.atlassian.jira.component.ComponentAccessor;

def fieldName = 'Board Summary Outcome for Applicant'
def outcome

if(underlyingIssue){

def cf = ComponentAccessor.customFieldManager.getCustomFieldObjects(underlyingIssue).find{it.name == fieldName}
outcome = underlyingIssue.getCustomFieldValue(cf)

} else {
outcome = ''
}
if(!outcome){
getFieldByName(fieldName).setFormValue("Dummy Text Here.")
}
Peter-Dave Sheehan
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
July 28, 2020

Yeah I wrote all that directly in the answer box... not in an actual environment, so it was all from memory. I assumed you might have had the ComponentAccessor import already for other aspects of your script.
The double def was just me deciding to define it outside the if block mid-way through my response and not being very diligent in reviewing.

 

Glad I pointed you in the correct direction. Don't forget to accept the answer.

Mark Iveson July 28, 2020

Legend.. thank you.

TAGS
AUG Leaders

Atlassian Community Events