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,692
Community Members
 
Community Events
184
Community Groups

How to set if-else in groovy script for due date in JIRA workflow post function?

Edited

I'm using this script to set due date for post function (in JIRA workflow) after a ticket is created:-

issue.setDueDate(new Timestamp((issue.dueDate + 14).time)) // set due date

 

But now, instead I need to create multiple groovy script for different days, how can I put it in if-else statement to determine for different days of due date?

 

Let's say this:-

if (workflow = create)

issue.setDueDate(new Timestamp((issue.dueDate + 10).time)) // set due date

else if (workflow = open)

issue.setDueDate(new Timestamp((issue.dueDate + 12).time)) // set due date

else if (workflow = in progress)

issue.setDueDate(new Timestamp((issue.dueDate + 14).time)) // set due date

 else

//do nothing

 

How can I put these in one groovy script?

 

Urgent matter. Thanks in advance.

 

Regards,

Camelia

1 answer

1 vote
Neta Elyakim
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
Apr 30, 2018

Use this:

def duedate = issue.getDueDate()

if( duedate [Calendar.DAY_OF_WEEK] == Calendar.WEDNESDAY){

}

 Calendar.DAY_OF_WEEK- return int 1-SUNDAY, 2-MONDAY, 3-... exc

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events