Hi,everyone!
Please tell me how I can get the number of days (difference) between the old date value and the new one.I started writing code but I'm having trouble getting the date.They are not deductible.
import com.atlassian.jira.component.ComponentAccessor
def issue = Issues.getByKey('PROJECT-xxxx')
String customFieldName = "Target end"
def changeHistoryManager = ComponentAccessor.changeHistoryManager
def changeHistory = changeHistoryManager.getChangeItemsForField(issue, customFieldName)
def oldDate = changeHistory.last().from
def newDate = changeHistory.last().to
//def n_day = newDate - oldDate
Any help is important.
Thank you .
Best regards, Alex!
Hi @Alex
You can refer to this example.
https://library.adaptavist.com/entity/calculate-difference-between-dates
Regards
@Florian Bonniec Hi! Thank you for answer ! This Is helpfull!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
If you are trying to implement this as a scripted field, this worked for me. Running Jira ScriptRunner cloud version. Just go to Scripted Fields, create a field, drop this code below and replace my custom ID numbers with yours. NOTE: This only takes custom ID numbers... not names of fields. Credits to Chat GPT for iterating through the errors with me until I finally got it to spit out the right answer.
import java.time.ZonedDateTime
import java.time.format.DateTimeFormatter
import java.time.temporal.ChronoUnit
import java.time.ZoneId
// Define the issue key and the custom field IDs for start date and end date
final String issueKey = issue.key
final String startDateFieldId = "customfield_10037" // Replace with the actual ID of your start date field
final String endDateFieldId = "customfield_10038" // Replace with the actual ID of your end date field
// Define the temporal unit for calculation
final ChronoUnit chronoUnit = ChronoUnit.DAYS
// Define the date format expected in the custom fields
final DateTimeFormatter formatter = DateTimeFormatter.ofPattern("yyyy-MM-dd")
// Get the values of the custom date fields from the issue
def startDateString = issue.fields[startDateFieldId] ?: ""
def endDateString = issue.fields[endDateFieldId] ?: ""
// Parse the dates if they are not empty
ZonedDateTime startDate = startDateString ? ZonedDateTime.parse(startDateString + 'T00:00:00Z') : null
ZonedDateTime endDate = endDateString ? ZonedDateTime.parse(endDateString + 'T00:00:00Z') : null
// Calculate the difference between the dates if they are not null
def dateDifference = null
if (startDate && endDate) {
dateDifference = chronoUnit.between(startDate, endDate) as Integer
}
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
My final code with the condition that I also had to work with date conversion.
Because I compared the old and new values obtained from "changelog" , and there the date is in string format. I
hope this helps someone.
Best regards, Alex!
import com.atlassian.jira.component.ComponentAccessor
import java.text.SimpleDateFormat
import java.util.Date
import java.time.temporal.ChronoUnit
def issue = Issues.getByKey('PROJECT-xxxx')
String customFieldName = "Target end" //your cf date
def changeHistoryManager = ComponentAccessor.changeHistoryManager
def changeHistory = changeHistoryManager.getChangeItemsForField(issue, customFieldName)
def oldDate = changeHistory.last().from
def newDate = changeHistory.last().to
String strDateOld = oldDate
String strDateNew = newDate
SimpleDateFormat format = new SimpleDateFormat("yyyy-MM-dd");
Date date_old = format.parse(strDateOld)
Date date_new = format.parse(strDateNew)
// Transform both values to instants
def oldDateInstant = date_old?.toInstant()
def newDateInstant = date_new?.toInstant()
// Change the chrono unit to obtain the difference in other time unit.
def chronoUnit = ChronoUnit.DAYS
// Calculate the difference between the lower and the higher date.
oldDateInstant && newDateInstant ? chronoUnit.between(oldDateInstant, newDateInstant) : null
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.