]> source.dussan.org Git - redmine.git/commitdiff
Don't show project column by default when inside a project.
authorJean-Philippe Lang <jp_lang@yahoo.fr>
Sat, 3 Dec 2016 08:29:44 +0000 (08:29 +0000)
committerJean-Philippe Lang <jp_lang@yahoo.fr>
Sat, 3 Dec 2016 08:29:44 +0000 (08:29 +0000)
git-svn-id: http://svn.redmine.org/redmine/trunk@16042 e93f8b46-1217-0410-a6f0-8f06a7374b81

app/models/time_entry_query.rb

index 74263ba9c243de8e7c834aa533442b5bdc8d201c..620847da06e82f70a66bca03f6db0aa544a9b331 100644 (file)
@@ -122,7 +122,11 @@ class TimeEntryQuery < Query
   end
 
   def default_columns_names
-    @default_columns_names ||= [:project, :spent_on, :user, :activity, :issue, :comments, :hours]
+    @default_columns_names ||= begin
+      default_columns = [:spent_on, :user, :activity, :issue, :comments, :hours]
+
+      project.present? ? default_columns : [:project] | default_columns
+    end
   end
 
   def default_totalable_names