Create
cancel
Showing results for 
Search instead for 
Did you mean: 
Sign up Log in
Celebration

Earn badges and make progress

You're on your way to the next level! Join the Kudos program to earn points and save your progress.

Deleted user Avatar
Deleted user

Level 1: Seed

25 / 150 points

Next: Root

Avatar

1 badge earned

Collect

Participate in fun challenges

Challenges come and go, but your rewards stay with you. Do more to earn more!

Challenges
Coins

Gift kudos to your peers

What goes around comes around! Share the love by gifting kudos to your peers.

Recognition
Ribbon

Rise up in the ranks

Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!

Leaderboard

Come for the products,
stay for the community

The Atlassian Community can help you and your team get more value out of Atlassian products and practices.

Atlassian Community about banner
4,555,854
Community Members
 
Community Events
184
Community Groups

Update Priority Threw Behavior (Scriptrunner)

Hello there,

 

is there a way to update the priority on a issue according to a value on another customfield.

 

I found out that scriptrunner behavior's can do this.

 

I wrote a behavior but i am not able to set the priority.

I mean i set it but it is not taking into account.

 

How can i update the priority of the current issue ?

 

The issue.SetPriorityId( 1) seems to not working.

 

here is the code i wrote:

import com.atlassian.jira.issue.MutableIssue
import com.atlassian.jira.ComponentManager;
import org.apache.log4j.Category

def cfniveauescalade = getFieldById("customfield_10809") // *name* of your custom field
def cfniveauescaladevalue = cfniveauescalade.getValue()


def cfpriority = getFieldById("Priority")

log.debug("///////////////////////BEhavior PRIORITYYYYYYYYYYYYYYYYY//////////////////")

log.debug("cfniveauescaladevalue: " + cfniveauescaladevalue)

switch (cfniveauescaladevalue)
{
case "0": case "2": case "2c":

log.debug("///////////////////////case 0 2 2c")
cfpriority.setFormValue(4)

break;

case "4": case "5": case "4c":

log.debug("///////////////////////case 4 5 4c")
cfpriority.setFormValue(1)

break;

case "3c":

log.debug("///////////////////////case 3C")
cfpriority.setFormValue(2)

break;

default:

log.debug("///////////////////////case default 3")

cfpriority.setFormValue(3)


break;
}

 

0 answers

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events