You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
Unable to set a custom script based condition from a Select List (cascading) custom field type to set approvers
cfValues['Field Name']?.get(null)?.value == 'Value'
Hi @Norma Pena
From what you have mentioned in your description, it appears that you want to pass the value from a Cascade Select List to the Approver field. Can you please confirm if this is correct?
If yes, you can try this approach:-
import com.atlassian.jira.component.ComponentAccessor
import com.atlassian.jira.event.type.EventDispatchOption
import com.atlassian.jira.user.ApplicationUser
def customFieldManager = ComponentAccessor.customFieldManager
def userManager = ComponentAccessor.userManager
def issueManager = ComponentAccessor.issueManager
def loggedInUser = ComponentAccessor.jiraAuthenticationContext.loggedInUser
def cascadeField = customFieldManager.getCustomFieldObjectsByName('Sample Cascade').first()
def cascadeFieldValue = issue.getCustomFieldValue(cascadeField) as Map
def approversField = customFieldManager.getCustomFieldObjectsByName('Approvers').first()
if( cascadeFieldValue ) {
def userName = cascadeFieldValue.values().last().toString()
def user = userManager.getUserByName(userName)
def users = [] as ArrayList<ApplicationUser>
users.add(user)
issue.setCustomFieldValue(approversField, users)
} else {
issue.setCustomFieldValue(approversField, null)
}
issueManager.updateIssue(loggedInUser, issue, EventDispatchOption.DO_NOT_DISPATCH, false)
Please note that the sample code provided above is not 100% exact to your environment. Hence, you will need to make the required modifications.
Another point, for the cascading field, you should set the Application User's name and not the display name for it to work.
I hope this helps to solve your question. :)
Thank you and Kind regards,
Ram
Hey @Ram Kumar Aravindakshan _Adaptavist_ , I want the approver to be based on the value selected from the custom field options.
Example:
Select List (cascading) custom field value name:
cf name "Site Location"
Parent value "California" then approver field updates to user "TBOB" and "ROBT"
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
import com.atlassian.jira.component.ComponentAccessor
import com.atlassian.jira.event.type.EventDispatchOption
import com.atlassian.jira.user.ApplicationUser
def customFieldManager = ComponentAccessor.customFieldManager
def userManager = ComponentAccessor.userManager
def issueManager = ComponentAccessor.issueManager
def loggedInUser = ComponentAccessor.jiraAuthenticationContext.loggedInUser
def cascadeField = customFieldManager.getCustomFieldObjectsByName('Site Location').first()
def cascadeFieldValue = issue.getCustomFieldValue(cascadeField) as Map
def approversField = customFieldManager.getCustomFieldObjectsByName('Approvers').first()
if ( "California" ) {def cf = customFieldManager.getCustomFieldObjects(issue).find {it.name == 'Approvers'}
List<ApplicationUser> userList = new ArrayList<>()
userList.add(userManager.getUserByName("TBOB"))
userList.add(userManager.getUserByName("ROBT"))
issue.setCustomFieldValue(cf, userList);
} else {
issue.setCustomFieldValue(approversField, null)
}
issueManager.updateIssue(loggedInUser, issue, EventDispatchOption.DO_NOT_DISPATCH, false)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.