Hi,
We are using script runner and I would like to create the scripted field that should calculate the date based on existing date date field.
we would like to have the field Estimated Project End date to have a script to add two weeks based on date entered on Project Launch Date.
Example - If Project Launch Date = 3/12/2019,
the script will automate date for this field to
Estimated End Date = 3/26/2019
Thanks,
Ravi
Hello,
This should work as a scripted field:
import com.atlassian.jira.component.ComponentAccessor;
def customFieldManager = ComponentAccessor.getCustomFieldManager();
def projectLaunchDate= customFieldManager.getCustomFieldObject('customfield_11300');
def dateValue= issue.getCustomFieldValue(projectLaunchDate) as Date
def daysToAdd = 14
def estimatedEndDate = Calendar.getInstance()
estimatedEndDate.setTime(dateValue)
estimatedEndDate.add(Calendar.DATE, daysToAdd)
return estimatedEndDate.getTime()
Regards.
Hi Elifcan,
Thanks, the above script worked for me.
Thanks,
Ravi
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.