The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
Hi Team,
We have a requirement to update a custom filed "Due Date Provided On" with the date on which "Due Date" field is populated.
Below is the actual requirement, how can we implement this?
Case | “Due Date” field in JIRA | “Due Date Provided On” field in JIRA |
XYZ-123 is created with no Due Date | <empty> | <empty> |
User A adds the Due Date of 1-Jan-2020 to XYZ-123 on the 31-Oct-2019 | 01/01/2020 | 31/10/2019 |
User B deletes the Due Date on the 5-Nov-2019 | <empty> | 31/10/2019 |
User A adds the new Due Date of 5-Jan-2020 to XYZ-123 on the 10-Nov-2019 | 05/01/2020 | 10/11/2019 |
Hi @Neenu jose ,
Here is a script you can use for your need :
import com.atlassian.jira.component.ComponentAccessor
import com.atlassian.jira.issue.ModifiedValue
import com.atlassian.jira.issue.util.DefaultIssueChangeHolder
import java.sql.Timestamp
def dueDateChanged = event?.getChangeLog()?.getRelated("ChildChangeItem")?.find {it.field == "duedate"}
if (issue.getDueDate() != null){
def customFieldManager = ComponentAccessor.getCustomFieldManager()
def dueDateProvidedOnId = 12500
def dueDateProvidedOn = customFieldManager.getCustomFieldObject(dueDateProvidedOnId)
def dueDateProvidedOnValue = issue.getCustomFieldValue(dueDateProvidedOn)
dueDateProvidedOn.updateValue(null, issue, new ModifiedValue(dueDateProvidedOnValue, new Timestamp(new Date().getTime())), new DefaultIssueChangeHolder())
}
Use a script listener on the "Issue Updated" event, and any additional event where you are likely to change the due date.
Also add a script post function in the create transition, use this script while removing this line :
def dueDateChanged = event?.getChangeLog()?.getRelated("ChildChangeItem")?.find {it.field == "duedate"}
Let me know if that helped.
Antoine
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hello everyone, Hope everyone is safe! A few months ago we posted an article sharing all the new articles and documentation that we, the AMER Jira Service Management team created. As mentioned ...
Connect with like-minded Atlassian users at free events near you!
Find an eventConnect with like-minded Atlassian users at free events near you!
Unfortunately there are no Community Events near you at the moment.
Host an eventYou're one step closer to meeting fellow Atlassian users at your local event. Learn more about Community Events
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.