From: Jean-Philippe Lang Date: Thu, 21 Feb 2008 17:57:00 +0000 (+0000) Subject: Added 'estimated time' in the csv export of the issue list. X-Git-Tag: 0.7.0-RC1~121 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=3f4a8469ac6b7dbaa849c2ffe206ddccbc9abca8;p=redmine.git Added 'estimated time' in the csv export of the issue list. git-svn-id: http://redmine.rubyforge.org/svn/trunk@1166 e93f8b46-1217-0410-a6f0-8f06a7374b81 --- diff --git a/app/helpers/issues_helper.rb b/app/helpers/issues_helper.rb index 197760b53..e5a557f31 100644 --- a/app/helpers/issues_helper.rb +++ b/app/helpers/issues_helper.rb @@ -123,6 +123,7 @@ module IssuesHelper l(:field_start_date), l(:field_due_date), l(:field_done_ratio), + l(:field_estimated_hours), l(:field_created_on), l(:field_updated_on) ] @@ -146,6 +147,7 @@ module IssuesHelper format_date(issue.start_date), format_date(issue.due_date), issue.done_ratio, + issue.estimated_hours, format_time(issue.created_on), format_time(issue.updated_on) ]