To check out this repository please hg clone the following URL, or open the URL using EasyMercurial or your preferred Mercurial client.

Statistics Download as Zip
| Branch: | Tag: | Revision:

root / app / models / time_entry_query.rb @ 1533:59e13100ea95

History | View | Annotate | Download (5.28 KB)

1 1464:261b3d9a4903 Chris
# Redmine - project management software
2 1494:e248c7af89ec Chris
# Copyright (C) 2006-2014  Jean-Philippe Lang
3 1464:261b3d9a4903 Chris
#
4
# This program is free software; you can redistribute it and/or
5
# modify it under the terms of the GNU General Public License
6
# as published by the Free Software Foundation; either version 2
7
# of the License, or (at your option) any later version.
8
#
9
# This program is distributed in the hope that it will be useful,
10
# but WITHOUT ANY WARRANTY; without even the implied warranty of
11
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12
# GNU General Public License for more details.
13
#
14
# You should have received a copy of the GNU General Public License
15
# along with this program; if not, write to the Free Software
16
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
17
18
class TimeEntryQuery < Query
19
20
  self.queried_class = TimeEntry
21
22
  self.available_columns = [
23
    QueryColumn.new(:project, :sortable => "#{Project.table_name}.name", :groupable => true),
24
    QueryColumn.new(:spent_on, :sortable => ["#{TimeEntry.table_name}.spent_on", "#{TimeEntry.table_name}.created_on"], :default_order => 'desc', :groupable => true),
25
    QueryColumn.new(:user, :sortable => lambda {User.fields_for_order_statement}, :groupable => true),
26
    QueryColumn.new(:activity, :sortable => "#{TimeEntryActivity.table_name}.position", :groupable => true),
27
    QueryColumn.new(:issue, :sortable => "#{Issue.table_name}.id"),
28
    QueryColumn.new(:comments),
29
    QueryColumn.new(:hours, :sortable => "#{TimeEntry.table_name}.hours"),
30
  ]
31
32
  def initialize(attributes=nil, *args)
33
    super attributes
34
    self.filters ||= {}
35
    add_filter('spent_on', '*') unless filters.present?
36
  end
37
38
  def initialize_available_filters
39
    add_available_filter "spent_on", :type => :date_past
40
41
    principals = []
42
    if project
43
      principals += project.principals.sort
44
      unless project.leaf?
45
        subprojects = project.descendants.visible.all
46
        if subprojects.any?
47
          add_available_filter "subproject_id",
48
            :type => :list_subprojects,
49
            :values => subprojects.collect{|s| [s.name, s.id.to_s] }
50
          principals += Principal.member_of(subprojects)
51
        end
52
      end
53
    else
54
      if all_projects.any?
55
        # members of visible projects
56
        principals += Principal.member_of(all_projects)
57
        # project filter
58
        project_values = []
59
        if User.current.logged? && User.current.memberships.any?
60
          project_values << ["<< #{l(:label_my_projects).downcase} >>", "mine"]
61
        end
62
        project_values += all_projects_values
63
        add_available_filter("project_id",
64
          :type => :list, :values => project_values
65
        ) unless project_values.empty?
66
      end
67
    end
68
    principals.uniq!
69
    principals.sort!
70
    users = principals.select {|p| p.is_a?(User)}
71
72
    users_values = []
73
    users_values << ["<< #{l(:label_me)} >>", "me"] if User.current.logged?
74
    users_values += users.collect{|s| [s.name, s.id.to_s] }
75
    add_available_filter("user_id",
76
      :type => :list_optional, :values => users_values
77
    ) unless users_values.empty?
78
79
    activities = (project ? project.activities : TimeEntryActivity.shared.active)
80
    add_available_filter("activity_id",
81
      :type => :list, :values => activities.map {|a| [a.name, a.id.to_s]}
82
    ) unless activities.empty?
83
84
    add_available_filter "comments", :type => :text
85
    add_available_filter "hours", :type => :float
86
87
    add_custom_fields_filters(TimeEntryCustomField)
88
    add_associations_custom_fields_filters :project, :issue, :user
89
  end
90
91
  def available_columns
92
    return @available_columns if @available_columns
93
    @available_columns = self.class.available_columns.dup
94 1517:dffacf8a6908 Chris
    @available_columns += TimeEntryCustomField.visible.
95
                            map {|cf| QueryCustomFieldColumn.new(cf) }
96
    @available_columns += IssueCustomField.visible.
97
                            map {|cf| QueryAssociationCustomFieldColumn.new(:issue, cf) }
98 1464:261b3d9a4903 Chris
    @available_columns
99
  end
100
101
  def default_columns_names
102
    @default_columns_names ||= [:project, :spent_on, :user, :activity, :issue, :comments, :hours]
103
  end
104
105
  def results_scope(options={})
106
    order_option = [group_by_sort_order, options[:order]].flatten.reject(&:blank?)
107
108
    TimeEntry.visible.
109
      where(statement).
110
      order(order_option).
111
      joins(joins_for_order_statement(order_option.join(','))).
112
      includes(:activity)
113
  end
114
115
  def sql_for_activity_id_field(field, operator, value)
116
    condition_on_id = sql_for_field(field, operator, value, Enumeration.table_name, 'id')
117
    condition_on_parent_id = sql_for_field(field, operator, value, Enumeration.table_name, 'parent_id')
118
    ids = value.map(&:to_i).join(',')
119
    table_name = Enumeration.table_name
120
    if operator == '='
121
      "(#{table_name}.id IN (#{ids}) OR #{table_name}.parent_id IN (#{ids}))"
122
    else
123
      "(#{table_name}.id NOT IN (#{ids}) AND (#{table_name}.parent_id IS NULL OR #{table_name}.parent_id NOT IN (#{ids})))"
124
    end
125
  end
126
127
  # Accepts :from/:to params as shortcut filters
128
  def build_from_params(params)
129
    super
130
    if params[:from].present? && params[:to].present?
131
      add_filter('spent_on', '><', [params[:from], params[:to]])
132
    elsif params[:from].present?
133
      add_filter('spent_on', '>=', [params[:from]])
134
    elsif params[:to].present?
135
      add_filter('spent_on', '<=', [params[:to]])
136
    end
137
    self
138
  end
139
end