Class: TimeEntryQuery
- Inherits:
-
Query
- Object
- ActiveRecord::Base
- Query
- TimeEntryQuery
show all
- Defined in:
- app/models/time_entry_query.rb
Overview
Redmine - project management software Copyright (C) 2006-2017
Jean-Philippe Lang
This program is free software; you can redistribute it and/or modify it
under the terms of the GNU General Public License as published by the Free
Software Foundation; either version 2 of the License, or (at your option)
any later version.
This program is distributed in the hope that it will be useful, but WITHOUT
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
more details.
You should have received a copy of the GNU General Public License along
with this program; if not, write to the Free Software Foundation, Inc., 51
Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
Constant Summary
Constants inherited
from Query
Query::VISIBILITY_PRIVATE, Query::VISIBILITY_PUBLIC, Query::VISIBILITY_ROLES
Instance Method Summary
collapse
-
#available_columns ⇒ Object
-
#base_scope ⇒ Object
-
#build_from_params(params, defaults = {}) ⇒ Object
Accepts :from/:to params as shortcut filters.
-
#default_columns_names ⇒ Object
-
#default_sort_criteria ⇒ Object
-
#default_totalable_names ⇒ Object
-
#filtered_issue_id ⇒ Object
If a filter against a single issue is set, returns its id, otherwise nil.
-
#initialize(attributes = nil, *args) ⇒ TimeEntryQuery
constructor
A new instance of TimeEntryQuery.
-
#initialize_available_filters ⇒ Object
-
#joins_for_order_statement(order_options) ⇒ Object
-
#results_scope(options = {}) ⇒ Object
-
#sql_for_activity_id_field(field, operator, value) ⇒ Object
-
#sql_for_issue_category_id_field(field, operator, value) ⇒ Object
-
#sql_for_issue_fixed_version_id_field(field, operator, value) ⇒ Object
-
#sql_for_issue_id_field(field, operator, value) ⇒ Object
-
#sql_for_issue_status_id_field(field, operator, value) ⇒ Object
-
#sql_for_issue_tracker_id_field(field, operator, value) ⇒ Object
-
#sql_for_project_status_field(field, operator, value, options = {}) ⇒ Object
-
#total_for_hours(scope) ⇒ Object
Returns sum of all the spent hours.
Methods inherited from Query
add_available_column, #add_available_filter, #add_filter, #add_filter_error, #add_filters, #add_short_filter, #all_projects, #all_projects_values, #as_params, #assigned_to_values, #author_values, #available_block_columns, #available_filters, #available_filters_as_json, #available_inline_columns, #available_totalable_columns, #block_columns, build_from_params, #column_names=, #columns, #css_classes, #delete_available_filter, #editable_by?, #fixed_version_values, #group_by_column, #group_by_sort_order, #group_by_statement, #groupable_columns, #grouped?, #has_column?, #has_custom_field_column?, #has_default_columns?, #has_filter?, #inline_columns, #is_global?, #is_private?, #is_public?, #issue_custom_fields, #issue_statuses_values, #label_for, #operator_for, operators_labels, #principals, #project_statement, #project_statuses_values, #project_values, #queried_table_name, #result_count_by_group, #sort_clause, #sort_criteria, #sort_criteria=, #sort_criteria_key, #sort_criteria_order, #sortable_columns, #statement, #subproject_values, #total_by_group_for, #total_for, #totalable_columns, #totalable_names, #totalable_names=, #totals, #totals_by_group, #trackers, #type_for, #users, #validate_query_filters, #value_for, #values_for, visible, #visible?, #watcher_values
Constructor Details
#initialize(attributes = nil, *args) ⇒ TimeEntryQuery
Returns a new instance of TimeEntryQuery
38
39
40
41
|
# File 'app/models/time_entry_query.rb', line 38
def initialize(attributes=nil, *args)
super attributes
self.filters ||= { 'spent_on' => {:operator => "*", :values => []} }
end
|
Instance Method Details
#available_columns ⇒ Object
#base_scope ⇒ Object
132
133
134
135
136
137
138
139
|
# File 'app/models/time_entry_query.rb', line 132
def base_scope
TimeEntry.visible.
joins(:project, :user).
includes(:activity).
references(:activity).
left_join_issue.
where(statement)
end
|
#build_from_params(params, defaults = {}) ⇒ Object
Accepts :from/:to params as shortcut filters
219
220
221
222
223
224
225
226
227
228
229
|
# File 'app/models/time_entry_query.rb', line 219
def build_from_params(params, defaults={})
super
if params[:from].present? && params[:to].present?
add_filter('spent_on', '><', [params[:from], params[:to]])
elsif params[:from].present?
add_filter('spent_on', '>=', [params[:from]])
elsif params[:to].present?
add_filter('spent_on', '<=', [params[:to]])
end
self
end
|
#default_columns_names ⇒ Object
110
111
112
113
114
115
|
# File 'app/models/time_entry_query.rb', line 110
def default_columns_names
@default_columns_names ||= begin
default_columns = Setting.time_entry_list_defaults.symbolize_keys[:column_names].map(&:to_sym)
project.present? ? default_columns : [:project] | default_columns
end
end
|
#default_sort_criteria ⇒ Object
121
122
123
|
# File 'app/models/time_entry_query.rb', line 121
def default_sort_criteria
[['spent_on', 'desc']]
end
|
#default_totalable_names ⇒ Object
117
118
119
|
# File 'app/models/time_entry_query.rb', line 117
def default_totalable_names
Setting.time_entry_list_defaults.symbolize_keys[:totalable_names].map(&:to_sym)
end
|
#filtered_issue_id ⇒ Object
If a filter against a single issue is set, returns its id, otherwise nil.
126
127
128
129
130
|
# File 'app/models/time_entry_query.rb', line 126
def filtered_issue_id
if value_for('issue_id').to_s =~ /\A(\d+)\z/
$1
end
end
|
#initialize_available_filters ⇒ Object
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
|
# File 'app/models/time_entry_query.rb', line 43
def initialize_available_filters
add_available_filter "spent_on", :type => :date_past
add_available_filter("project_id",
:type => :list, :values => lambda { project_values }
) if project.nil?
if project && !project.leaf?
add_available_filter "subproject_id",
:type => :list_subprojects,
:values => lambda { subproject_values }
end
add_available_filter("issue_id", :type => :tree, :label => :label_issue)
add_available_filter("issue.tracker_id",
:type => :list,
:name => l("label_attribute_of_issue", :name => l(:field_tracker)),
:values => lambda { trackers.map {|t| [t.name, t.id.to_s]} })
add_available_filter("issue.status_id",
:type => :list,
:name => l("label_attribute_of_issue", :name => l(:field_status)),
:values => lambda { issue_statuses_values })
add_available_filter("issue.fixed_version_id",
:type => :list,
:name => l("label_attribute_of_issue", :name => l(:field_fixed_version)),
:values => lambda { fixed_version_values })
add_available_filter "issue.category_id",
:type => :list_optional,
:name => l("label_attribute_of_issue", :name => l(:field_category)),
:values => lambda { project.issue_categories.collect{|s| [s.name, s.id.to_s] } } if project
add_available_filter("user_id",
:type => :list_optional, :values => lambda { author_values }
)
activities = (project ? project.activities : TimeEntryActivity.shared)
add_available_filter("activity_id",
:type => :list, :values => activities.map {|a| [a.name, a.id.to_s]}
)
add_available_filter("project.status",
:type => :list,
:name => l(:label_attribute_of_project, :name => l(:field_status)),
:values => lambda { project_statuses_values }
) if project.nil? || !project.leaf?
add_available_filter "comments", :type => :text
add_available_filter "hours", :type => :float
add_custom_fields_filters(TimeEntryCustomField)
add_associations_custom_fields_filters :project
add_custom_fields_filters(issue_custom_fields, :issue)
add_associations_custom_fields_filters :user
end
|
#joins_for_order_statement(order_options) ⇒ Object
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
|
# File 'app/models/time_entry_query.rb', line 231
def joins_for_order_statement(order_options)
joins = [super]
if order_options
if order_options.include?('issue_statuses')
joins << "LEFT OUTER JOIN #{IssueStatus.table_name} ON #{IssueStatus.table_name}.id = #{Issue.table_name}.status_id"
end
if order_options.include?('trackers')
joins << "LEFT OUTER JOIN #{Tracker.table_name} ON #{Tracker.table_name}.id = #{Issue.table_name}.tracker_id"
end
if order_options.include?('issue_categories')
joins << "LEFT OUTER JOIN #{IssueCategory.table_name} ON #{IssueCategory.table_name}.id = #{Issue.table_name}.category_id"
end
end
joins.compact!
joins.any? ? joins.join(' ') : nil
end
|
#results_scope(options = {}) ⇒ Object
141
142
143
144
145
146
147
|
# File 'app/models/time_entry_query.rb', line 141
def results_scope(options={})
order_option = [group_by_sort_order, (options[:order] || sort_clause)].flatten.reject(&:blank?)
base_scope.
order(order_option).
joins(joins_for_order_statement(order_option.join(',')))
end
|
#sql_for_activity_id_field(field, operator, value) ⇒ Object
190
191
192
193
194
195
196
197
198
199
200
|
# File 'app/models/time_entry_query.rb', line 190
def sql_for_activity_id_field(field, operator, value)
condition_on_id = sql_for_field(field, operator, value, Enumeration.table_name, 'id')
condition_on_parent_id = sql_for_field(field, operator, value, Enumeration.table_name, 'parent_id')
ids = value.map(&:to_i).join(',')
table_name = Enumeration.table_name
if operator == '='
"(#{table_name}.id IN (#{ids}) OR #{table_name}.parent_id IN (#{ids}))"
else
"(#{table_name}.id NOT IN (#{ids}) AND (#{table_name}.parent_id IS NULL OR #{table_name}.parent_id NOT IN (#{ids})))"
end
end
|
#sql_for_issue_category_id_field(field, operator, value) ⇒ Object
210
211
212
|
# File 'app/models/time_entry_query.rb', line 210
def sql_for_issue_category_id_field(field, operator, value)
sql_for_field("category_id", operator, value, Issue.table_name, "category_id")
end
|
#sql_for_issue_fixed_version_id_field(field, operator, value) ⇒ Object
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
|
# File 'app/models/time_entry_query.rb', line 172
def sql_for_issue_fixed_version_id_field(field, operator, value)
issue_ids = Issue.where(:fixed_version_id => value.map(&:to_i)).pluck(:id)
case operator
when "="
if issue_ids.any?
"#{TimeEntry.table_name}.issue_id IN (#{issue_ids.join(',')})"
else
"1=0"
end
when "!"
if issue_ids.any?
"#{TimeEntry.table_name}.issue_id NOT IN (#{issue_ids.join(',')})"
else
"1=1"
end
end
end
|
#sql_for_issue_id_field(field, operator, value) ⇒ Object
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
|
# File 'app/models/time_entry_query.rb', line 154
def sql_for_issue_id_field(field, operator, value)
case operator
when "="
"#{TimeEntry.table_name}.issue_id = #{value.first.to_i}"
when "~"
issue = Issue.where(:id => value.first.to_i).first
if issue && (issue_ids = issue.self_and_descendants.pluck(:id)).any?
"#{TimeEntry.table_name}.issue_id IN (#{issue_ids.join(',')})"
else
"1=0"
end
when "!*"
"#{TimeEntry.table_name}.issue_id IS NULL"
when "*"
"#{TimeEntry.table_name}.issue_id IS NOT NULL"
end
end
|
#sql_for_issue_status_id_field(field, operator, value) ⇒ Object
206
207
208
|
# File 'app/models/time_entry_query.rb', line 206
def sql_for_issue_status_id_field(field, operator, value)
sql_for_field("status_id", operator, value, Issue.table_name, "status_id")
end
|
#sql_for_issue_tracker_id_field(field, operator, value) ⇒ Object
202
203
204
|
# File 'app/models/time_entry_query.rb', line 202
def sql_for_issue_tracker_id_field(field, operator, value)
sql_for_field("tracker_id", operator, value, Issue.table_name, "tracker_id")
end
|
#sql_for_project_status_field(field, operator, value, options = {}) ⇒ Object
214
215
216
|
# File 'app/models/time_entry_query.rb', line 214
def sql_for_project_status_field(field, operator, value, options={})
sql_for_field(field, operator, value, Project.table_name, "status")
end
|
#total_for_hours(scope) ⇒ Object
Returns sum of all the spent hours
150
151
152
|
# File 'app/models/time_entry_query.rb', line 150
def total_for_hours(scope)
map_total(scope.sum(:hours)) {|t| t.to_f.round(2)}
end
|