fetch Selected value from Priority field from Service desk project using behaviour

Suresh Srini December 14, 2020

Hi,

I want to access the value from field "Priority" from my service desk project. Tried all different combination but nothing seems to be working.

Similar code is working for other custom fields. My code is below.

I am using Summary field to see what data is populating so I can start using the result value for my project purpose.

 

import com.onresolve.jira.groovy.user.FieldBehaviours
import com.atlassian.jira.issue.priority.Priority
import groovy.transform.BaseScript
@BaseScript FieldBehaviours fieldBehaviours

def priorityField = getFieldById(getFieldChanged()) // Priority
def summaryField = getFieldById("summary") // Summary Field
def descriptionField = getFieldById("description") // Description Field
def priorityFieldValue = priorityField.getValue() as String
//descriptionField.setFormValue(priorityFieldValue)
summaryField.setFormValue(priorityFieldValue)

 

result for this is : 

IssueConstantImpl[[GenericEntity:Priority][sequence,2][statusColor,#ff8f73][name,High][iconurl,/images/icons/priorities/high.png][description,Serious problem that could block progress.][id,2]]

0 answers

Suggest an answer

Log in or Sign up to answer