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]]
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.