Project

General

Profile

Actions

Feature #29771

closed

Sort issues by due date in email reminders

Added by Go MAEDA over 5 years ago. Updated over 5 years ago.

Status:
Closed
Priority:
Normal
Assignee:
Category:
Email notifications
Target version:
Start date:
Due date:
% Done:

0%

Estimated time:
Resolution:
Fixed

Description

Currently, it seems that issues in email reminders are not sorted, or sorted in a less meaningful order for humans.

I think it is useful for most users to sort issues by the due date in descending order (overdue issues are shown first).


Files

29771-reminders-order-due-date.patch (2.64 KB) 29771-reminders-order-due-date.patch Yuichi HARADA, 2018-10-17 08:35
29771-v2.patch (1.8 KB) 29771-v2.patch slightly updated the test code Go MAEDA, 2018-11-04 02:26
29771-v3.patch (2.78 KB) 29771-v3.patch due_date in ascending order Yuichi HARADA, 2018-11-05 04:15

Related issues

Related to Redmine - Patch #6357: Show and sort by due_date in remindersClosed2010-09-10

Actions
Actions #1

Updated by Go MAEDA over 5 years ago

  • Related to Patch #6357: Show and sort by due_date in reminders added
Actions #2

Updated by Yuichi HARADA over 5 years ago

Currently, the order of arrangement depends on the DBMS. (In no order)

Go MAEDA wrote:

I think it is useful for most users to sort issues by the due date in descending order (overdue issues are shown first).

I made a patch, and attach it.

diff --git a/app/models/mailer.rb b/app/models/mailer.rb
index 468e6c21a..800fdde88 100644
--- a/app/models/mailer.rb
+++ b/app/models/mailer.rb
@@ -27,7 +27,7 @@ class Mailer < ActionMailer::Base
   include Roadie::Rails::Automatic

   # Overrides ActionMailer::Base#process in order to set the recipient as the current user
-  # and his language as the default locale. 
+  # and his language as the default locale.
   # The first argument of all actions of this Mailer must be a User (the recipient),
   # otherwise an ArgumentError is raised.
   def process(action, *args)
@@ -584,6 +584,7 @@ class Mailer < ActionMailer::Base
     issues_by_assignee.each do |assignee, issues|
       if assignee.is_a?(User) && assignee.active? && issues.present?
         visible_issues = issues.select {|i| i.visible?(assignee)}
+        visible_issues.sort!{|a, b| (b.due_date <=> a.due_date).nonzero? || (a.id <=> b.id)}
         reminder(assignee, visible_issues, days).deliver_later if visible_issues.present?
       end
     end

Actions #3

Updated by Go MAEDA over 5 years ago

  • Target version set to Candidate for next major release
Actions #4

Updated by Go MAEDA over 5 years ago

Thank you for posting the patch. The patch works fine for me.

I slightly updated the test code in Yuichi HARADA's patch to make it even easier to read. Attaching the new patch.

Actions #5

Updated by Yuichi HARADA over 5 years ago

Go MAEDA wrote:

I slightly updated the test code in Yuichi HARADA's patch to make it even easier to read. Attaching the new patch.

It is easy to understand using assert_select.

Actions #6

Updated by Yuichi HARADA over 5 years ago

Yuichi HARADA wrote:

Go MAEDA wrote:

I slightly updated the test code in Yuichi HARADA's patch to make it even easier to read. Attaching the new patch.

It is easy to understand using assert_select.

I'm sorry.
The new patch was not attach.

I changed due_date in ascending order, because overdue issues are shown first.
I rebuilt a patch, and attach it.

Actions #7

Updated by Go MAEDA over 5 years ago

  • Status changed from New to Closed
  • Assignee set to Go MAEDA
  • Target version changed from 4.1.0 to 4.0.0
  • Resolution set to Fixed

Committed. Thank you for improving Redmine.

Actions

Also available in: Atom PDF