]> source.dussan.org Git - redmine.git/commitdiff
Merged r19554 from trunk to 4.1-stable (#33052).
authorGo MAEDA <maeda@farend.jp>
Wed, 4 Mar 2020 07:45:36 +0000 (07:45 +0000)
committerGo MAEDA <maeda@farend.jp>
Wed, 4 Mar 2020 07:45:36 +0000 (07:45 +0000)
git-svn-id: http://svn.redmine.org/redmine/branches/4.1-stable@19557 e93f8b46-1217-0410-a6f0-8f06a7374b81

app/helpers/timelog_helper.rb
test/functional/timelog_report_test.rb

index d10b57332395f298d5980d2ab0f912fb2a7721cc..e0cc51d277d8b60f0e4ea94756f35b90fb0aa9fc 100644 (file)
@@ -68,7 +68,15 @@ module TimelogHelper
       "[#{l(:label_none)}]"
     elsif k = criteria_options[:klass]
       obj = k.find_by_id(value.to_i)
-      format_object(obj, html)
+      if obj.is_a?(Issue)
+        if obj.visible?
+          html ? link_to_issue(obj) : "#{obj.tracker} ##{obj.id}: #{obj.subject}"
+        else
+          "##{obj.id}"
+        end
+      else
+        format_object(obj, html)
+      end
     elsif cf = criteria_options[:custom_field]
       format_value(value, cf)
     else
index e9c13b3118940e235aca19a0f2bcac48728d8fc9..68ef80622bef25684fac1c29597f9b5ce2e890aa 100644 (file)
@@ -259,6 +259,21 @@ class TimelogReportTest < Redmine::ControllerTest
     assert_equal 'Total time,"","",154.25,8.65,162.90', lines.last
   end
 
+  def test_report_csv_should_fill_issue_criteria_with_tracker_id_and_subject
+    get :report, :params => {
+      :project_id => 1,
+      :columns => 'month',
+      :from => "2007-01-01",
+      :to => "2007-06-30",
+      :criteria => ["issue"],
+      :format => "csv"
+    }
+
+    assert_response :success
+    lines = @response.body.chomp.split("\n")
+    assert lines.detect {|line| line.include?('Bug #1: Cannot print recipes')}
+  end
+
   def test_csv_big_5
     str_big5  = (+"\xa4@\xa4\xeb").force_encoding('Big5')
     user = User.find_by_id(3)