Our developers are required to add specific notes and instructions when resolving a ticket.
I've created a specific field for them to do this, which is hidden from the client portal, however I'm struggling to get this working properly.
I've successfully made it mandatory on transition to another status but, the developers don't have (and shouldn't have) the Service Desk Agent role so they can't transition tickets.
Is there any way to setup a field that is:
Appreciate I might be missing something in workflows, any advice is mega appreciate as I've read every article and community query around this but just haven't found a resolution
Update -
Never mind, figured out how to do this with conditions in the workflow
Obsolete due to the update of the initial question.
Hi Ana,
I'm not sure if this is what you're trying to achieve but you can set the field to be shown, required and editable only for users in certain roles via Scriptrunner Behaviours.
Just add in the condition to validate if the logged in user is in the certain roles, then the field is showed and required, and it can be edited.
import com.atlassian.jira.component.ComponentAccessor
import com.atlassian.jira.security.roles.ProjectRoleManager
def projectRoleManager = ComponentAccessor.getComponent(ProjectRoleManager)
def user = ComponentAccessor.jiraAuthenticationContext.loggedInUser
def remoteUsersRoles = projectRoleManager.getProjectRoles(user, issueContext.projectObject)*.name
def note = getFieldByName("Notes and Instructions")
note.setHidden(true)
note.setReadOnly(true)
//If the user's roles contain "Developers"
if ("Developers" in remoteUsersRoles) {
note.setHidden(false)
note.setRequired(true)
note.setReadOnly(false)
}
else {
note.setHidden(true)
note.setRequired(false)
note.setReadOnly(true)
}
Hope this help!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
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.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.