Issue:
Issues that transition to "Close" with a Due Date that is 7 days or more past Due from Current Date at the time of transition cannot Close. Due date must be changed before transition is allowed.
Need:
I have been looking for a code that will work for Scriptrunner. I have not found one. Would anyone have a suggestion I could try?
Jira DC is what we are using.
Hi @Hector Hood
You need to add a validator on the transition you want with the following simple script validator
import java.sql.Timestamp
def duedate = issue.DueDate
def copareToDate = new Timestamp((new Date() -7).getTime())
duedate > copareToDate
Thanks in Advance
Mohamed
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.