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]]