| 
									
										
										
										
											2019-03-16 09:37:35 +00:00
										 |  |  | # frozen_string_literal: true | 
					
						
							| 
									
										
										
										
											2019-03-15 01:32:57 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-12-02 18:46:43 +00:00
										 |  |  | # Redmine - project management software | 
					
						
							| 
									
										
										
										
											2017-06-25 08:40:31 +00:00
										 |  |  | # Copyright (C) 2006-2017  Jean-Philippe Lang | 
					
						
							| 
									
										
										
										
											2011-12-02 18:46:43 +00:00
										 |  |  | # | 
					
						
							|  |  |  | # 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. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | module Redmine | 
					
						
							|  |  |  |   module Helpers | 
					
						
							|  |  |  |     class TimeReport | 
					
						
							| 
									
										
										
										
											2012-12-09 17:57:18 +00:00
										 |  |  |       attr_reader :criteria, :columns, :hours, :total_hours, :periods | 
					
						
							| 
									
										
										
										
											2011-12-02 18:46:43 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-12-09 17:57:18 +00:00
										 |  |  |       def initialize(project, issue, criteria, columns, time_entry_scope) | 
					
						
							| 
									
										
										
										
											2011-12-02 18:46:43 +00:00
										 |  |  |         @project = project | 
					
						
							|  |  |  |         @issue = issue | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         @criteria = criteria || [] | 
					
						
							|  |  |  |         @criteria = @criteria.select{|criteria| available_criteria.has_key? criteria} | 
					
						
							|  |  |  |         @criteria.uniq! | 
					
						
							|  |  |  |         @criteria = @criteria[0,3] | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         @columns = (columns && %w(year month week day).include?(columns)) ? columns : 'month' | 
					
						
							| 
									
										
										
										
											2012-12-09 17:57:18 +00:00
										 |  |  |         @scope = time_entry_scope | 
					
						
							| 
									
										
										
										
											2011-12-02 18:46:43 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |         run | 
					
						
							|  |  |  |       end | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       def available_criteria | 
					
						
							|  |  |  |         @available_criteria || load_available_criteria | 
					
						
							|  |  |  |       end | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       private | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       def run | 
					
						
							|  |  |  |         unless @criteria.empty? | 
					
						
							| 
									
										
										
										
											2011-12-05 18:27:10 +00:00
										 |  |  |           time_columns = %w(tyear tmonth tweek spent_on) | 
					
						
							|  |  |  |           @hours = [] | 
					
						
							| 
									
										
										
										
											2016-08-20 10:27:39 +00:00
										 |  |  |           @scope.includes(:activity). | 
					
						
							| 
									
										
										
										
											2017-03-13 19:17:59 +00:00
										 |  |  |               reorder(nil). | 
					
						
							| 
									
										
										
										
											2014-02-14 02:33:00 +00:00
										 |  |  |               group(@criteria.collect{|criteria| @available_criteria[criteria][:sql]} + time_columns). | 
					
						
							|  |  |  |               joins(@criteria.collect{|criteria| @available_criteria[criteria][:joins]}.compact). | 
					
						
							|  |  |  |               sum(:hours).each do |hash, hours| | 
					
						
							| 
									
										
										
										
											2011-12-05 18:27:10 +00:00
										 |  |  |             h = {'hours' => hours} | 
					
						
							|  |  |  |             (@criteria + time_columns).each_with_index do |name, i| | 
					
						
							|  |  |  |               h[name] = hash[i] | 
					
						
							|  |  |  |             end | 
					
						
							|  |  |  |             @hours << h | 
					
						
							| 
									
										
										
										
											2011-12-05 17:58:01 +00:00
										 |  |  |           end | 
					
						
							| 
									
										
										
										
											2011-12-05 18:27:10 +00:00
										 |  |  |            | 
					
						
							| 
									
										
										
										
											2011-12-02 18:46:43 +00:00
										 |  |  |           @hours.each do |row| | 
					
						
							|  |  |  |             case @columns | 
					
						
							|  |  |  |             when 'year' | 
					
						
							|  |  |  |               row['year'] = row['tyear'] | 
					
						
							|  |  |  |             when 'month' | 
					
						
							|  |  |  |               row['month'] = "#{row['tyear']}-#{row['tmonth']}" | 
					
						
							|  |  |  |             when 'week' | 
					
						
							| 
									
										
										
										
											2013-02-24 12:18:29 +00:00
										 |  |  |               row['week'] = "#{row['spent_on'].cwyear}-#{row['tweek']}" | 
					
						
							| 
									
										
										
										
											2011-12-02 18:46:43 +00:00
										 |  |  |             when 'day' | 
					
						
							|  |  |  |               row['day'] = "#{row['spent_on']}" | 
					
						
							|  |  |  |             end | 
					
						
							|  |  |  |           end | 
					
						
							| 
									
										
										
										
											2011-12-05 17:58:01 +00:00
										 |  |  |            | 
					
						
							| 
									
										
										
										
											2012-12-09 17:57:18 +00:00
										 |  |  |           min = @hours.collect {|row| row['spent_on']}.min | 
					
						
							| 
									
										
										
										
											2016-05-07 10:42:22 +00:00
										 |  |  |           @from = min ? min.to_date : User.current.today | 
					
						
							| 
									
										
										
										
											2011-12-02 18:46:43 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-12-09 17:57:18 +00:00
										 |  |  |           max = @hours.collect {|row| row['spent_on']}.max | 
					
						
							| 
									
										
										
										
											2016-05-07 10:42:22 +00:00
										 |  |  |           @to = max ? max.to_date : User.current.today | 
					
						
							| 
									
										
										
										
											2011-12-05 17:58:01 +00:00
										 |  |  |            | 
					
						
							| 
									
										
										
										
											2011-12-02 18:46:43 +00:00
										 |  |  |           @total_hours = @hours.inject(0) {|s,k| s = s + k['hours'].to_f} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |           @periods = [] | 
					
						
							|  |  |  |           # Date#at_beginning_of_ not supported in Rails 1.2.x | 
					
						
							|  |  |  |           date_from = @from.to_time | 
					
						
							|  |  |  |           # 100 columns max | 
					
						
							|  |  |  |           while date_from <= @to.to_time && @periods.length < 100
 | 
					
						
							|  |  |  |             case @columns | 
					
						
							|  |  |  |             when 'year' | 
					
						
							|  |  |  |               @periods << "#{date_from.year}" | 
					
						
							|  |  |  |               date_from = (date_from + 1.year).at_beginning_of_year | 
					
						
							|  |  |  |             when 'month' | 
					
						
							|  |  |  |               @periods << "#{date_from.year}-#{date_from.month}" | 
					
						
							|  |  |  |               date_from = (date_from + 1.month).at_beginning_of_month | 
					
						
							|  |  |  |             when 'week' | 
					
						
							| 
									
										
										
										
											2013-02-24 12:18:29 +00:00
										 |  |  |               @periods << "#{date_from.to_date.cwyear}-#{date_from.to_date.cweek}" | 
					
						
							| 
									
										
										
										
											2011-12-02 18:46:43 +00:00
										 |  |  |               date_from = (date_from + 7.day).at_beginning_of_week | 
					
						
							|  |  |  |             when 'day' | 
					
						
							|  |  |  |               @periods << "#{date_from.to_date}" | 
					
						
							|  |  |  |               date_from = date_from + 1.day | 
					
						
							|  |  |  |             end | 
					
						
							|  |  |  |           end | 
					
						
							|  |  |  |         end | 
					
						
							|  |  |  |       end | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       def load_available_criteria | 
					
						
							|  |  |  |         @available_criteria = { 'project' => {:sql => "#{TimeEntry.table_name}.project_id", | 
					
						
							|  |  |  |                                               :klass => Project, | 
					
						
							|  |  |  |                                               :label => :label_project}, | 
					
						
							| 
									
										
										
										
											2012-01-14 09:51:56 +00:00
										 |  |  |                                  'status' => {:sql => "#{Issue.table_name}.status_id", | 
					
						
							|  |  |  |                                               :klass => IssueStatus, | 
					
						
							|  |  |  |                                               :label => :field_status}, | 
					
						
							| 
									
										
										
										
											2011-12-02 18:46:43 +00:00
										 |  |  |                                  'version' => {:sql => "#{Issue.table_name}.fixed_version_id", | 
					
						
							| 
									
										
										
										
											2016-07-12 19:45:05 +00:00
										 |  |  |                                               :klass => ::Version, | 
					
						
							| 
									
										
										
										
											2011-12-02 18:46:43 +00:00
										 |  |  |                                               :label => :label_version}, | 
					
						
							|  |  |  |                                  'category' => {:sql => "#{Issue.table_name}.category_id", | 
					
						
							|  |  |  |                                                 :klass => IssueCategory, | 
					
						
							|  |  |  |                                                 :label => :field_category}, | 
					
						
							| 
									
										
										
										
											2012-12-09 18:09:44 +00:00
										 |  |  |                                  'user' => {:sql => "#{TimeEntry.table_name}.user_id", | 
					
						
							| 
									
										
										
										
											2011-12-02 18:46:43 +00:00
										 |  |  |                                              :klass => User, | 
					
						
							| 
									
										
										
										
											2012-12-09 18:09:44 +00:00
										 |  |  |                                              :label => :label_user}, | 
					
						
							| 
									
										
										
										
											2011-12-02 18:46:43 +00:00
										 |  |  |                                  'tracker' => {:sql => "#{Issue.table_name}.tracker_id", | 
					
						
							|  |  |  |                                               :klass => Tracker, | 
					
						
							|  |  |  |                                               :label => :label_tracker}, | 
					
						
							|  |  |  |                                  'activity' => {:sql => "#{TimeEntry.table_name}.activity_id", | 
					
						
							|  |  |  |                                                :klass => TimeEntryActivity, | 
					
						
							|  |  |  |                                                :label => :label_activity}, | 
					
						
							|  |  |  |                                  'issue' => {:sql => "#{TimeEntry.table_name}.issue_id", | 
					
						
							|  |  |  |                                              :klass => Issue, | 
					
						
							|  |  |  |                                              :label => :label_issue} | 
					
						
							|  |  |  |                                } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-02-24 08:57:04 +00:00
										 |  |  |         # Add time entry custom fields | 
					
						
							| 
									
										
										
										
											2018-07-12 21:58:22 +00:00
										 |  |  |         custom_fields = TimeEntryCustomField.visible | 
					
						
							| 
									
										
										
										
											2013-02-24 08:57:04 +00:00
										 |  |  |         # Add project custom fields | 
					
						
							| 
									
										
										
										
											2018-07-12 21:58:22 +00:00
										 |  |  |         custom_fields += ProjectCustomField.visible | 
					
						
							| 
									
										
										
										
											2013-02-24 08:57:04 +00:00
										 |  |  |         # Add issue custom fields | 
					
						
							| 
									
										
										
										
											2018-07-12 21:58:22 +00:00
										 |  |  |         custom_fields += @project.nil? ? IssueCustomField.visible.for_all : @project.all_issue_custom_fields.visible | 
					
						
							| 
									
										
										
										
											2013-02-24 08:57:04 +00:00
										 |  |  |         # Add time entry activity custom fields | 
					
						
							| 
									
										
										
										
											2018-07-12 21:58:22 +00:00
										 |  |  |         custom_fields += TimeEntryActivityCustomField.visible | 
					
						
							| 
									
										
										
										
											2013-01-03 13:59:15 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-02-24 08:57:04 +00:00
										 |  |  |         # Add list and boolean custom fields as available criteria | 
					
						
							| 
									
										
										
										
											2014-04-06 11:29:44 +00:00
										 |  |  |         custom_fields.select {|cf| %w(list bool).include?(cf.field_format) && !cf.multiple?}.each do |cf| | 
					
						
							| 
									
										
										
										
											2013-12-14 08:22:43 +00:00
										 |  |  |           @available_criteria["cf_#{cf.id}"] = {:sql => cf.group_statement, | 
					
						
							| 
									
										
										
										
											2013-01-03 13:57:27 +00:00
										 |  |  |                                                  :joins => cf.join_for_order_statement, | 
					
						
							| 
									
										
										
										
											2011-12-02 18:46:43 +00:00
										 |  |  |                                                  :format => cf.field_format, | 
					
						
							| 
									
										
										
										
											2013-12-14 08:22:43 +00:00
										 |  |  |                                                  :custom_field => cf, | 
					
						
							| 
									
										
										
										
											2011-12-02 18:46:43 +00:00
										 |  |  |                                                  :label => cf.name} | 
					
						
							|  |  |  |         end | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         @available_criteria | 
					
						
							|  |  |  |       end | 
					
						
							|  |  |  |     end | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  | end |