Project

General

Profile

Actions

Defect #29918

closed

Related issues section ignores the date format setting

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

Status:
Closed
Priority:
Normal
Category:
UI
Target version:
Start date:
Due date:
% Done:

0%

Estimated time:
Resolution:
Fixed
Affected version:

Description

Start date and due date in the related issues section are always displayed in the format YYYY-MM-DD regardless of the date format setting.


Files

incorrect-date-format@2x.png (41.2 KB) incorrect-date-format@2x.png Go MAEDA, 2018-11-07 08:58

Related issues

Related to Redmine - Feature #3425: View progress bar of related issuesClosedJean-Philippe Lang2009-05-27

Actions
Actions #1

Updated by Mizuki ISHIKAWA over 5 years ago

The following changes should solve the problem.

diff --git a/app/helpers/issues_helper.rb b/app/helpers/issues_helper.rb
index e1e0fc559b..f71eb13b23 100644
--- a/app/helpers/issues_helper.rb
+++ b/app/helpers/issues_helper.rb
@@ -129,8 +129,8 @@ module IssuesHelper
              content_tag('td', check_box_tag("ids[]", other_issue.id, false, :id => nil), :class => 'checkbox') +
              content_tag('td', relation.to_s(@issue) {|other| link_to_issue(other, :project => Setting.cross_project_issue_relations?)}.html_safe, :class => 'subject', :style => 'width: 50%') +
              content_tag('td', other_issue.status, :class => 'status') +
-             content_tag('td', other_issue.start_date, :class => 'start_date') +
-             content_tag('td', other_issue.due_date, :class => 'due_date') +
+             content_tag('td', format_date(other_issue.start_date), :class => 'start_date') +
+             content_tag('td', format_date(other_issue.due_date), :class => 'due_date') +
              content_tag('td', other_issue.disabled_core_fields.include?('done_ratio') ? '' : progress_bar(other_issue.done_ratio), :class=> 'done_ratio') +
              content_tag('td', buttons, :class => 'buttons'),
              :id => "relation-#{relation.id}",

Actions #2

Updated by Go MAEDA over 5 years ago

  • Target version set to 4.1.0

LGTM. Setting the target version to 4.1.0.

Actions #3

Updated by Go MAEDA over 5 years ago

  • Related to Feature #3425: View progress bar of related issues added
Actions #4

Updated by Go MAEDA over 5 years ago

  • Target version changed from 4.1.0 to 3.4.7
  • Affected version set to 3.4.0

format_date was removed in r15981 (#3425).

Actions #5

Updated by Marius BĂLTEANU over 5 years ago

We should add some assertions to source:trunk/test/functional/issues_controller_test.rb#L1215 just to be sure that will not reproduce anymore.

Actions #6

Updated by Jean-Philippe Lang over 5 years ago

  • Status changed from New to Resolved
  • Assignee set to Jean-Philippe Lang
  • Resolution set to Fixed

Patch committed, thanks. I also added a test as suggested by Marius.

BTW, in the subtasks list, we display the subject, status, assignee and done ratio. In the related issues list, we display the subject, status, start date, due date and done ratio. Shouldn't we display the same attributes in both lists?

Actions #7

Updated by Jean-Philippe Lang over 5 years ago

  • Status changed from Resolved to Closed
Actions #8

Updated by Marius BĂLTEANU over 5 years ago

Jean-Philippe Lang wrote:

BTW, in the subtasks list, we display the subject, status, assignee and done ratio. In the related issues list, we display the subject, status, start date, due date and done ratio. Shouldn't we display the same attributes in both lists?

Indeed, could be an improvement, but I think that it'll be better to make the attributes configurable because the use cases and the relevant information depends from instance to instance. For example, in my production environment, we modified the view in order to show the subject, status, assignee, estimated and spent because we do not use done ratio, start date and due date. Also, other users requested this, please see #11969 and #5130.

Actions

Also available in: Atom PDF