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.
import com.atlassian.jira.component.ComponentAccessor
import com.atlassian.jira.issue.fields.CustomField
import com.atlassian.jira.issue.CustomFieldManager
import java.sql.Timestamp
def customFieldManager = ComponentAccessor.getCustomFieldManager()
def issue = ComponentAccessor.getIssueManager().getIssueByCurrentKey('xxxx-xxxx')
def months = 1
def dateACF = customFieldManager.getCustomFieldObject("customfield_xxxx")
def dateAValue = issue.getCustomFieldValue(dateACF) as Date
log.warn dateACF
log.warn dateAValue
def dateB = Calendar.getInstance()
dateB.setTime(dateAValue)
dateB.add(Calendar.MONTH, +months)
dateB.getTime()
log.warn dateB.getTime()
LOGS:
2021-09-08 11:44 WARN [runner.ScriptBindingsManager]: EMP Effective Date 2021-09-08 11:44:08,595 WARN [runner.ScriptBindingsManager]: 2021-08-02 00:00:00.0 2021-09-08 11:44:08,596 WARN [runner.ScriptBindingsManager]: Thu Sep 02 00:00:00 MDT 2021
Hi @Justin Mele,
if I understood correctly, you want to add months to fetched value. if so you can try below snippet
def dateB = dateAValue as Date
dateB.setMonth(dateB.getMonth() + months)
hope this helps
BR,
Leo
Leo,
I did get that part of the script figured out. thank you! what I am trying to do now is place them in another custom field as an employee review. So it would go out 30, 60, 90, 180, and 12 months from their effective date.
Thank you,
Justin
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.