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 @Aaron Andrade,
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.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.