Working days between two dates

Ganesh Gembali February 26, 2012

How can I calculate number of working days between two dates. It should use the jira configuration in jira where we specify working days.

2 answers

0 votes
tousifs
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
February 28, 2012

JqlQueryBuilder builder = JqlQueryBuilder.newBuilder();

createdBetween(startDate, endDate)

now you have the result from start date to end date.

you just set the date format by using formater.

now you can long milliseconds1 = startDate.getTimeInMillis();
long milliseconds2 = endDate.getTimeInMillis();
long diff = milliseconds2 - milliseconds1;
long diffSeconds = diff / 1000;
long diffMinutes = diff / (60 * 1000);
long diffHours = diff / (60 * 60 * 1000);
long diffDays = diff / (24 * 60 * 60 * 1000);
System.out.println("\nThe Date Different Example");
System.out.println("Time in milliseconds: " + diff
+
" milliseconds.");
System.out.println("Time in seconds: " + diffSeconds
+
" seconds.");
System.out.println("Time in minutes: " + diffMinutes
+
" minutes.");
System.out.println("Time in hours: " + diffHours
+
" hours.");
System.out.println("Time in days: " + diffDays
+
" days.");

you can get expected result.

0 votes
JamieA
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
February 26, 2012
componentManager.getJiraDurationUtils().getFormattedDuration(remaining)

Well, that will convert a long to days based on the information you have put into timetracking.

To get working days between two dates you might need to dig into the greenhopper config, where you can specify what are not working days.

Ganesh Gembali February 27, 2012

To get days between two dates I have used jodatime API which is already in jira classpath. But I am looking for a utility which just takes weekends (jira configuration of working days) into consideration while calculating days between

Like Мочалов Илья likes this

Suggest an answer

Log in or Sign up to answer