Hi,
the requirement is to subtract months from a date a custom field and put the result in another date custom field.
example
Datefield2 = Datefield1 - 10 months
I could subtract days only using script runner, any ideas?
Thanks,
Flan
Hi Flan,
If you want the result in a scripted field then the script will br something like
import com.atlassian.jira.component.ComponentAccessor
def customFieldManager = ComponentAccessor.getCustomFieldManager()
def months = 3
def dateACF = customFieldManager.getCustomFieldObjectByName("First DateTime")
def dateAValue = issue.getCustomFieldValue(dateACF) as Date
def dateB = Calendar.getInstance()
dateB.setTime(dateAValue)
dateB.add(Calendar.MONTH, -months)
dateB.getTime()
with
Searcher: Date Time Range picker
Template: Date Time Picker
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.