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.
Hello All,
We are using Script runner for JIRA to achieve following functionality:
We have three custom fields:
Start Date(Date/Time picker)
End Date(Date/Time Picker)
No. of Days(numeric type)
Upon selection of Start Date and No. of Days, End Date should be automatically calculated and displayed. I have implemented this functionality.
As an additional requirement, I am unable exclude Saturday and Sunday for being calculated in the End Date.
Since Saturday and Sunday are non-working days, I want the script to exclude Saturday and Sunday and then display the End Date.
Kindly help me with the script correction.
Regards,
Prashant
Following is the script:
import com.atlassian.jira.component.ComponentAccessor
import com.atlassian.jira.issue.Issue
Issue issue = issue
def customFieldManager = ComponentAccessor.getCustomFieldManager()
//Custom field defined for No of days
def daysToAddCF = customFieldManager.getCustomFieldObjectByName("Number of Days")
//custome field for defining Start Date
def dateACF = customFieldManager.getCustomFieldObjectByName("Start Date")
def dateAValue = issue.getCustomFieldValue(dateACF) as Date
def daysToAdd = issue.getCustomFieldValue(daysToAddCF) as int
def dateB = Calendar.getInstance()
dateB.setTime(dateAValue)
dateB.add(Calendar.DATE,daysToAdd)
return dateB.getTime()