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

Making a field Read-Only while a specific sub-task is open

CLINTON E. SMITH October 23, 2017

We are using JIRA issues to track work and estimates, so we have the need to make the estimate at the issue level read-only while the sub-task related to developing a new estimate is unresolved.  So far, I've tried using a Behaviors script on the estimate field, but it doesn't seem to actually make the field read-only.  I'm hoping I'm just missing something simple.

Here is the Behavior I have tried so far:

 

def ROMe = getFieldById('ROM Estimate')
def subTasks = UnderlyingIssue.getSubTaskObjects()

subTasks.each {
if (it.getIssueType() == 'Test CoS' && ! it.getResolution()) {
ROMe.setReadOnly(true)
} else {
ROMe.setReadOnly(false)
}
}

JIRA Version - 7.1.9

ScriptRunner Version - 5.1.6

1 answer

Suggest an answer

Log in or Sign up to answer
0 votes
Alexey Matveev
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 31, 2017

Reace

it.getIssueType()

With

it.getIssueType().Name

TAGS
AUG Leaders

Atlassian Community Events