Scriptrunner behaviour not working with getFieldById(getFieldChanged()) mapped to issuetype field

gabe vid October 4, 2019
import com.atlassian.jira.ComponentAccessor
import com.atlassian.jira.component.ComponentAccessor
import com.atlassian.jira.ComponentManager
import com.atlassian.jira.issue.CustomFieldManager
import com.atlassian.jira.issue.Issue
import com.atlassian.jira.issue.MutableIssue
import com.atlassian.jira.issue.comments.CommentManager
import com.atlassian.jira.issue.fields.CustomField
import com.atlassian.jira.util.ImportUtils
import com.atlassian.jira.user.util.DefaultUserManager
import com.atlassian.crowd.embedded.api.User
import com.atlassian.jira.issue.IssueManager
import com.atlassian.jira.user.util.UserManager
import static groovyx.net.http.ContentType.*
import static groovyx.net.http.Method.*
import static com.atlassian.jira.issue.IssueFieldConstants.ASSIGNEE
import com.onresolve.jira.groovy.user.FieldBehaviours
import static com.atlassian.jira.issue.IssueFieldConstants.*
import groovy.transform.BaseScript

@BaseScript FieldBehaviours fieldBehaviours

def issueManager = ComponentAccessor.getIssueManager()
def issueService = ComponentAccessor.getIssueService()

def selectedIssueType = getIssueContext().getProjectObject().getKey()

def issueType = getFieldById(getFieldChanged())
def optionsManager = ComponentAccessor.getOptionsManager()


def instance = getFieldByName("Instance")
def selectedOption = issueType.getValue() as String

def desc = getFieldById("description")
def descValue = "test desc"

switch (selectedOption) {

case "Epic":

instance.setRequired(true)
desc.setFormValue(descValue)
break

case "Story":

instance.setRequired(true)
desc.setFormValue(descValue)
break

break
}

 

This code does not work, if I change issue type, nothing changes

1 answer

1 accepted

Suggest an answer

Log in or Sign up to answer
0 votes
Answer accepted
Ravi Sagar _Sparxsys_
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.
October 7, 2019

Hi @gabe vid 

Behaviours are based on combination of project and issue type.

This page has information about it.

What exactly are you trying to do in your code? Make the instance field mandatory when Issue Type is either Epic or Story? For which project?

Ravi

gabe vid October 8, 2019

Yes, that's what I'm trying to do

The project is selected in the behaviour "Mappings"

gabe vid October 8, 2019

I need to do so cause I want the fields to be mandatory even in case you change the issue type of an old issue to the Epic or Story ones

Ravi Sagar _Sparxsys_
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.
October 8, 2019

Hi @gabe vid 

Try this code to make Instance field required when Issue Type is either Epic or Story.

def issueTypeValue = getFieldById(getFieldChanged()).getValue()
def instanceField = getFieldByName("Instance")

switch (issueContext.issueType.name ) {

case "Epic":
instanceField.setRequired(true)
break
case "Story":
instanceField.setRequired(true)
break
default:
instanceField.setRequired(false)
break

}

I hope it helps.

Ravi 

Like gabe vid likes this
gabe vid October 9, 2019

Great, it worked this way.

shrikant maheshwari March 31, 2022

@Ravi Sagar _Sparxsys_ 

Hi Ravi,

The script works fine at the time of creation of issue. But when i am trying to edit an Existing Issue and then changing the "Issue type" the custom field does not becomes mandatory or non mandatory.

I have placed the same script in the Server Script for the field "ISSUE TYPE" but it does not seems to be working

TAGS
AUG Leaders

Atlassian Community Events