| 
									
										
										
										
											2010-12-04 10:13:15 +00:00
										 |  |  | # Redmine - project management software | 
					
						
							| 
									
										
										
										
											2012-05-05 12:56:53 +00:00
										 |  |  | # Copyright (C) 2006-2012  Jean-Philippe Lang | 
					
						
							| 
									
										
										
										
											2007-06-24 16:07:06 +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. | 
					
						
							| 
									
										
										
										
											2011-08-21 09:26:32 +00:00
										 |  |  | # | 
					
						
							| 
									
										
										
										
											2007-06-24 16:07:06 +00:00
										 |  |  | # 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. | 
					
						
							| 
									
										
										
										
											2011-08-21 09:26:32 +00:00
										 |  |  | # | 
					
						
							| 
									
										
										
										
											2007-06-24 16:07:06 +00:00
										 |  |  | # 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. | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-03-23 12:22:31 +00:00
										 |  |  | class TimelogController < ApplicationController | 
					
						
							| 
									
										
										
										
											2008-01-19 11:53:43 +00:00
										 |  |  |   menu_item :issues | 
					
						
							| 
									
										
										
										
											2012-01-21 14:26:51 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-05-29 18:54:26 +00:00
										 |  |  |   before_filter :find_project_for_new_time_entry, :only => [:create] | 
					
						
							| 
									
										
										
										
											2011-04-04 11:54:47 +00:00
										 |  |  |   before_filter :find_time_entry, :only => [:show, :edit, :update] | 
					
						
							|  |  |  |   before_filter :find_time_entries, :only => [:bulk_edit, :bulk_update, :destroy] | 
					
						
							| 
									
										
										
										
											2012-01-21 14:26:51 +00:00
										 |  |  |   before_filter :authorize, :except => [:new, :index, :report] | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-05-29 18:54:26 +00:00
										 |  |  |   before_filter :find_optional_project, :only => [:index, :report] | 
					
						
							|  |  |  |   before_filter :find_optional_project_for_new_time_entry, :only => [:new] | 
					
						
							| 
									
										
										
										
											2012-01-21 14:26:51 +00:00
										 |  |  |   before_filter :authorize_global, :only => [:new, :index, :report] | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-07-09 08:56:07 +00:00
										 |  |  |   accept_rss_auth :index | 
					
						
							|  |  |  |   accept_api_auth :index, :show, :create, :update, :destroy | 
					
						
							| 
									
										
										
										
											2011-08-21 09:26:32 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-12-09 21:13:26 +00:00
										 |  |  |   rescue_from Query::StatementInvalid, :with => :query_statement_invalid | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-03-23 12:22:31 +00:00
										 |  |  |   helper :sort | 
					
						
							|  |  |  |   include SortHelper | 
					
						
							| 
									
										
										
										
											2007-10-03 17:20:04 +00:00
										 |  |  |   helper :issues | 
					
						
							| 
									
										
										
										
											2008-02-26 18:15:58 +00:00
										 |  |  |   include TimelogHelper | 
					
						
							| 
									
										
										
										
											2008-04-09 17:45:39 +00:00
										 |  |  |   helper :custom_fields | 
					
						
							|  |  |  |   include CustomFieldsHelper | 
					
						
							| 
									
										
										
										
											2012-12-09 17:57:18 +00:00
										 |  |  |   helper :queries | 
					
						
							| 
									
										
										
										
											2011-08-21 09:26:32 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-10-06 18:23:45 +00:00
										 |  |  |   def index | 
					
						
							| 
									
										
										
										
											2012-12-09 19:18:57 +00:00
										 |  |  |     @query = TimeEntryQuery.build_from_params(params, :project => @project, :name => '_') | 
					
						
							| 
									
										
										
										
											2012-12-09 17:57:18 +00:00
										 |  |  |     scope = time_entry_scope | 
					
						
							| 
									
										
										
										
											2011-08-21 09:26:32 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-12-09 17:57:18 +00:00
										 |  |  |     sort_init(@query.sort_criteria.empty? ? [['spent_on', 'desc']] : @query.sort_criteria) | 
					
						
							|  |  |  |     sort_update(@query.sortable_columns) | 
					
						
							| 
									
										
										
										
											2011-08-21 09:26:32 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-03-16 17:29:30 +00:00
										 |  |  |     respond_to do |format| | 
					
						
							|  |  |  |       format.html { | 
					
						
							|  |  |  |         # Paginate results | 
					
						
							| 
									
										
										
										
											2011-12-04 22:49:46 +00:00
										 |  |  |         @entry_count = scope.count | 
					
						
							| 
									
										
										
										
											2013-01-08 20:18:12 +00:00
										 |  |  |         @entry_pages = Paginator.new @entry_count, per_page_option, params['page'] | 
					
						
							| 
									
										
										
										
											2011-12-04 22:49:46 +00:00
										 |  |  |         @entries = scope.all( | 
					
						
							|  |  |  |           :include => [:project, :activity, :user, {:issue => :tracker}], | 
					
						
							|  |  |  |           :order => sort_clause, | 
					
						
							|  |  |  |           :limit  =>  @entry_pages.items_per_page, | 
					
						
							| 
									
										
										
										
											2013-01-08 20:18:12 +00:00
										 |  |  |           :offset =>  @entry_pages.offset | 
					
						
							| 
									
										
										
										
											2011-12-04 22:49:46 +00:00
										 |  |  |         ) | 
					
						
							|  |  |  |         @total_hours = scope.sum(:hours).to_f | 
					
						
							| 
									
										
										
										
											2008-04-05 16:40:26 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-03-16 17:29:30 +00:00
										 |  |  |         render :layout => !request.xhr? | 
					
						
							|  |  |  |       } | 
					
						
							|  |  |  |       format.api  { | 
					
						
							| 
									
										
										
										
											2011-12-04 22:49:46 +00:00
										 |  |  |         @entry_count = scope.count | 
					
						
							| 
									
										
										
										
											2011-05-22 10:48:59 +00:00
										 |  |  |         @offset, @limit = api_offset_and_limit | 
					
						
							| 
									
										
										
										
											2011-12-04 22:49:46 +00:00
										 |  |  |         @entries = scope.all( | 
					
						
							|  |  |  |           :include => [:project, :activity, :user, {:issue => :tracker}], | 
					
						
							|  |  |  |           :order => sort_clause, | 
					
						
							|  |  |  |           :limit  => @limit, | 
					
						
							|  |  |  |           :offset => @offset | 
					
						
							|  |  |  |         ) | 
					
						
							| 
									
										
										
										
											2011-03-16 17:29:30 +00:00
										 |  |  |       } | 
					
						
							|  |  |  |       format.atom { | 
					
						
							| 
									
										
										
										
											2011-12-04 22:49:46 +00:00
										 |  |  |         entries = scope.all( | 
					
						
							|  |  |  |           :include => [:project, :activity, :user, {:issue => :tracker}], | 
					
						
							|  |  |  |           :order => "#{TimeEntry.table_name}.created_on DESC", | 
					
						
							|  |  |  |           :limit => Setting.feeds_limit.to_i | 
					
						
							|  |  |  |         ) | 
					
						
							| 
									
										
										
										
											2011-03-16 17:29:30 +00:00
										 |  |  |         render_feed(entries, :title => l(:label_spent_time)) | 
					
						
							|  |  |  |       } | 
					
						
							|  |  |  |       format.csv { | 
					
						
							|  |  |  |         # Export all entries | 
					
						
							| 
									
										
										
										
											2011-12-04 22:49:46 +00:00
										 |  |  |         @entries = scope.all( | 
					
						
							|  |  |  |           :include => [:project, :activity, :user, {:issue => [:tracker, :assigned_to, :priority]}], | 
					
						
							|  |  |  |           :order => sort_clause | 
					
						
							|  |  |  |         ) | 
					
						
							| 
									
										
										
										
											2011-03-16 17:29:30 +00:00
										 |  |  |         send_data(entries_to_csv(@entries), :type => 'text/csv; header=present', :filename => 'timelog.csv') | 
					
						
							|  |  |  |       } | 
					
						
							| 
									
										
										
										
											2008-02-26 18:15:58 +00:00
										 |  |  |     end | 
					
						
							| 
									
										
										
										
											2007-03-23 12:22:31 +00:00
										 |  |  |   end | 
					
						
							| 
									
										
										
										
											2011-08-21 09:26:32 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-12-02 19:33:05 +00:00
										 |  |  |   def report | 
					
						
							| 
									
										
										
										
											2012-12-09 19:18:57 +00:00
										 |  |  |     @query = TimeEntryQuery.build_from_params(params, :project => @project, :name => '_') | 
					
						
							| 
									
										
										
										
											2012-12-09 17:57:18 +00:00
										 |  |  |     scope = time_entry_scope | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     @report = Redmine::Helpers::TimeReport.new(@project, @issue, params[:criteria], params[:columns], scope) | 
					
						
							| 
									
										
										
										
											2011-12-02 19:33:05 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     respond_to do |format| | 
					
						
							|  |  |  |       format.html { render :layout => !request.xhr? } | 
					
						
							|  |  |  |       format.csv  { send_data(report_to_csv(@report), :type => 'text/csv; header=present', :filename => 'timelog.csv') } | 
					
						
							|  |  |  |     end | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-12-04 10:13:15 +00:00
										 |  |  |   def show | 
					
						
							|  |  |  |     respond_to do |format| | 
					
						
							|  |  |  |       # TODO: Implement html response | 
					
						
							|  |  |  |       format.html { render :nothing => true, :status => 406 } | 
					
						
							| 
									
										
										
										
											2010-12-04 17:43:39 +00:00
										 |  |  |       format.api | 
					
						
							| 
									
										
										
										
											2010-12-04 10:13:15 +00:00
										 |  |  |     end | 
					
						
							|  |  |  |   end | 
					
						
							| 
									
										
										
										
											2010-10-07 15:51:09 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |   def new | 
					
						
							|  |  |  |     @time_entry ||= TimeEntry.new(:project => @project, :issue => @issue, :user => User.current, :spent_on => User.current.today) | 
					
						
							| 
									
										
										
										
											2012-03-06 20:23:00 +00:00
										 |  |  |     @time_entry.safe_attributes = params[:time_entry] | 
					
						
							| 
									
										
										
										
											2010-10-07 15:51:09 +00:00
										 |  |  |   end | 
					
						
							| 
									
										
										
										
											2010-10-08 15:39:39 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |   def create | 
					
						
							|  |  |  |     @time_entry ||= TimeEntry.new(:project => @project, :issue => @issue, :user => User.current, :spent_on => User.current.today) | 
					
						
							| 
									
										
										
										
											2012-03-06 20:23:00 +00:00
										 |  |  |     @time_entry.safe_attributes = params[:time_entry] | 
					
						
							| 
									
										
										
										
											2011-08-21 09:26:32 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-10-08 15:39:39 +00:00
										 |  |  |     call_hook(:controller_timelog_edit_before_save, { :params => params, :time_entry => @time_entry }) | 
					
						
							| 
									
										
										
										
											2011-08-21 09:26:32 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-10-08 15:39:39 +00:00
										 |  |  |     if @time_entry.save | 
					
						
							| 
									
										
										
										
											2010-12-04 10:13:15 +00:00
										 |  |  |       respond_to do |format| | 
					
						
							|  |  |  |         format.html { | 
					
						
							| 
									
										
										
										
											2012-01-21 10:37:19 +00:00
										 |  |  |           flash[:notice] = l(:notice_successful_create) | 
					
						
							|  |  |  |           if params[:continue] | 
					
						
							| 
									
										
										
										
											2012-01-21 14:26:51 +00:00
										 |  |  |             if params[:project_id] | 
					
						
							| 
									
										
										
										
											2012-12-11 19:39:47 +00:00
										 |  |  |               options = { | 
					
						
							| 
									
										
										
										
											2012-05-29 18:54:26 +00:00
										 |  |  |                 :time_entry => {:issue_id => @time_entry.issue_id, :activity_id => @time_entry.activity_id}, | 
					
						
							|  |  |  |                 :back_url => params[:back_url] | 
					
						
							| 
									
										
										
										
											2012-12-11 19:39:47 +00:00
										 |  |  |               } | 
					
						
							|  |  |  |               if @time_entry.issue | 
					
						
							|  |  |  |                 redirect_to new_project_issue_time_entry_path(@time_entry.project, @time_entry.issue, options) | 
					
						
							|  |  |  |               else | 
					
						
							|  |  |  |                 redirect_to new_project_time_entry_path(@time_entry.project, options) | 
					
						
							|  |  |  |               end | 
					
						
							| 
									
										
										
										
											2012-01-21 14:26:51 +00:00
										 |  |  |             else | 
					
						
							| 
									
										
										
										
											2012-12-11 19:39:47 +00:00
										 |  |  |               options = { | 
					
						
							| 
									
										
										
										
											2012-05-29 18:54:26 +00:00
										 |  |  |                 :time_entry => {:project_id => @time_entry.project_id, :issue_id => @time_entry.issue_id, :activity_id => @time_entry.activity_id}, | 
					
						
							|  |  |  |                 :back_url => params[:back_url] | 
					
						
							| 
									
										
										
										
											2012-12-11 19:39:47 +00:00
										 |  |  |               } | 
					
						
							|  |  |  |               redirect_to new_time_entry_path(options) | 
					
						
							| 
									
										
										
										
											2012-01-21 14:26:51 +00:00
										 |  |  |             end | 
					
						
							| 
									
										
										
										
											2012-01-21 10:37:19 +00:00
										 |  |  |           else | 
					
						
							| 
									
										
										
										
											2012-12-11 19:39:47 +00:00
										 |  |  |             redirect_back_or_default project_time_entries_path(@time_entry.project) | 
					
						
							| 
									
										
										
										
											2012-01-21 10:37:19 +00:00
										 |  |  |           end | 
					
						
							| 
									
										
										
										
											2010-12-04 10:13:15 +00:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2010-12-04 17:43:39 +00:00
										 |  |  |         format.api  { render :action => 'show', :status => :created, :location => time_entry_url(@time_entry) } | 
					
						
							| 
									
										
										
										
											2010-12-04 10:13:15 +00:00
										 |  |  |       end | 
					
						
							| 
									
										
										
										
											2010-10-08 15:39:39 +00:00
										 |  |  |     else | 
					
						
							| 
									
										
										
										
											2010-12-04 10:13:15 +00:00
										 |  |  |       respond_to do |format| | 
					
						
							| 
									
										
										
										
											2012-01-21 14:26:51 +00:00
										 |  |  |         format.html { render :action => 'new' } | 
					
						
							| 
									
										
										
										
											2010-12-04 10:13:15 +00:00
										 |  |  |         format.api  { render_validation_errors(@time_entry) } | 
					
						
							|  |  |  |       end | 
					
						
							| 
									
										
										
										
											2011-08-21 09:26:32 +00:00
										 |  |  |     end | 
					
						
							| 
									
										
										
										
											2010-10-08 15:39:39 +00:00
										 |  |  |   end | 
					
						
							| 
									
										
										
										
											2011-08-21 09:26:32 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-03-23 12:22:31 +00:00
										 |  |  |   def edit | 
					
						
							| 
									
										
										
										
											2012-03-06 20:23:00 +00:00
										 |  |  |     @time_entry.safe_attributes = params[:time_entry] | 
					
						
							| 
									
										
										
										
											2010-10-11 15:31:42 +00:00
										 |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   def update | 
					
						
							| 
									
										
										
										
											2012-03-06 20:23:00 +00:00
										 |  |  |     @time_entry.safe_attributes = params[:time_entry] | 
					
						
							| 
									
										
										
										
											2011-08-21 09:26:32 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-05-30 22:49:39 +00:00
										 |  |  |     call_hook(:controller_timelog_edit_before_save, { :params => params, :time_entry => @time_entry }) | 
					
						
							| 
									
										
										
										
											2011-08-21 09:26:32 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-10-11 15:31:42 +00:00
										 |  |  |     if @time_entry.save | 
					
						
							| 
									
										
										
										
											2010-12-04 10:13:15 +00:00
										 |  |  |       respond_to do |format| | 
					
						
							|  |  |  |         format.html { | 
					
						
							|  |  |  |           flash[:notice] = l(:notice_successful_update) | 
					
						
							| 
									
										
										
										
											2012-12-11 19:39:47 +00:00
										 |  |  |           redirect_back_or_default project_time_entries_path(@time_entry.project) | 
					
						
							| 
									
										
										
										
											2010-12-04 10:13:15 +00:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2012-07-14 08:13:55 +00:00
										 |  |  |         format.api  { render_api_ok } | 
					
						
							| 
									
										
										
										
											2010-12-04 10:13:15 +00:00
										 |  |  |       end | 
					
						
							| 
									
										
										
										
											2010-10-11 15:31:42 +00:00
										 |  |  |     else | 
					
						
							| 
									
										
										
										
											2010-12-04 10:13:15 +00:00
										 |  |  |       respond_to do |format| | 
					
						
							|  |  |  |         format.html { render :action => 'edit' } | 
					
						
							|  |  |  |         format.api  { render_validation_errors(@time_entry) } | 
					
						
							|  |  |  |       end | 
					
						
							| 
									
										
										
										
											2011-08-21 09:26:32 +00:00
										 |  |  |     end | 
					
						
							| 
									
										
										
										
											2007-03-23 12:22:31 +00:00
										 |  |  |   end | 
					
						
							| 
									
										
										
										
											2010-10-11 15:31:42 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-04-04 11:53:29 +00:00
										 |  |  |   def bulk_edit | 
					
						
							|  |  |  |     @available_activities = TimeEntryActivity.shared.active | 
					
						
							|  |  |  |     @custom_fields = TimeEntry.first.available_custom_fields | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   def bulk_update | 
					
						
							|  |  |  |     attributes = parse_params_for_bulk_time_entry_attributes(params) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     unsaved_time_entry_ids = [] | 
					
						
							|  |  |  |     @time_entries.each do |time_entry| | 
					
						
							|  |  |  |       time_entry.reload | 
					
						
							| 
									
										
										
										
											2012-03-06 20:23:00 +00:00
										 |  |  |       time_entry.safe_attributes = attributes | 
					
						
							| 
									
										
										
										
											2011-04-04 11:53:29 +00:00
										 |  |  |       call_hook(:controller_time_entries_bulk_edit_before_save, { :params => params, :time_entry => time_entry }) | 
					
						
							|  |  |  |       unless time_entry.save | 
					
						
							|  |  |  |         # Keep unsaved time_entry ids to display them in flash error | 
					
						
							|  |  |  |         unsaved_time_entry_ids << time_entry.id | 
					
						
							|  |  |  |       end | 
					
						
							|  |  |  |     end | 
					
						
							|  |  |  |     set_flash_from_bulk_time_entry_save(@time_entries, unsaved_time_entry_ids) | 
					
						
							| 
									
										
										
										
											2012-12-11 19:39:47 +00:00
										 |  |  |     redirect_back_or_default project_time_entries_path(@projects.first) | 
					
						
							| 
									
										
										
										
											2011-04-04 11:53:29 +00:00
										 |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-03-14 21:17:09 +00:00
										 |  |  |   def destroy | 
					
						
							| 
									
										
										
										
											2012-03-04 15:24:14 +00:00
										 |  |  |     destroyed = TimeEntry.transaction do | 
					
						
							|  |  |  |       @time_entries.each do |t| | 
					
						
							| 
									
										
										
										
											2011-04-04 11:54:47 +00:00
										 |  |  |         unless t.destroy && t.destroyed? | 
					
						
							| 
									
										
										
										
											2012-03-04 15:24:14 +00:00
										 |  |  |           raise ActiveRecord::Rollback | 
					
						
							| 
									
										
										
										
											2011-04-04 11:54:47 +00:00
										 |  |  |         end | 
					
						
							| 
									
										
										
										
											2010-12-04 10:13:15 +00:00
										 |  |  |       end | 
					
						
							| 
									
										
										
										
											2010-06-20 19:30:51 +00:00
										 |  |  |     end | 
					
						
							| 
									
										
										
										
											2011-04-04 11:54:47 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     respond_to do |format| | 
					
						
							|  |  |  |       format.html { | 
					
						
							| 
									
										
										
										
											2012-03-04 15:24:14 +00:00
										 |  |  |         if destroyed | 
					
						
							|  |  |  |           flash[:notice] = l(:notice_successful_delete) | 
					
						
							|  |  |  |         else | 
					
						
							|  |  |  |           flash[:error] = l(:notice_unable_delete_time_entry) | 
					
						
							|  |  |  |         end | 
					
						
							| 
									
										
										
										
											2012-12-11 19:39:47 +00:00
										 |  |  |         redirect_back_or_default project_time_entries_path(@projects.first) | 
					
						
							| 
									
										
										
										
											2011-04-04 11:54:47 +00:00
										 |  |  |       } | 
					
						
							| 
									
										
										
										
											2012-03-04 15:24:14 +00:00
										 |  |  |       format.api  { | 
					
						
							|  |  |  |         if destroyed | 
					
						
							| 
									
										
										
										
											2012-07-14 08:13:55 +00:00
										 |  |  |           render_api_ok | 
					
						
							| 
									
										
										
										
											2012-03-04 15:24:14 +00:00
										 |  |  |         else | 
					
						
							|  |  |  |           render_validation_errors(@time_entries) | 
					
						
							|  |  |  |         end | 
					
						
							|  |  |  |       } | 
					
						
							| 
									
										
										
										
											2011-04-04 11:54:47 +00:00
										 |  |  |     end | 
					
						
							| 
									
										
										
										
											2008-03-14 21:17:09 +00:00
										 |  |  |   end | 
					
						
							| 
									
										
										
										
											2007-03-23 12:22:31 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | private | 
					
						
							| 
									
										
										
										
											2010-11-16 20:27:45 +00:00
										 |  |  |   def find_time_entry | 
					
						
							|  |  |  |     @time_entry = TimeEntry.find(params[:id]) | 
					
						
							|  |  |  |     unless @time_entry.editable_by?(User.current) | 
					
						
							|  |  |  |       render_403 | 
					
						
							|  |  |  |       return false | 
					
						
							|  |  |  |     end | 
					
						
							|  |  |  |     @project = @time_entry.project | 
					
						
							|  |  |  |   rescue ActiveRecord::RecordNotFound | 
					
						
							|  |  |  |     render_404 | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-04-04 11:53:29 +00:00
										 |  |  |   def find_time_entries | 
					
						
							|  |  |  |     @time_entries = TimeEntry.find_all_by_id(params[:id] || params[:ids]) | 
					
						
							|  |  |  |     raise ActiveRecord::RecordNotFound if @time_entries.empty? | 
					
						
							|  |  |  |     @projects = @time_entries.collect(&:project).compact.uniq | 
					
						
							|  |  |  |     @project = @projects.first if @projects.size == 1
 | 
					
						
							|  |  |  |   rescue ActiveRecord::RecordNotFound | 
					
						
							|  |  |  |     render_404 | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   def set_flash_from_bulk_time_entry_save(time_entries, unsaved_time_entry_ids) | 
					
						
							|  |  |  |     if unsaved_time_entry_ids.empty? | 
					
						
							|  |  |  |       flash[:notice] = l(:notice_successful_update) unless time_entries.empty? | 
					
						
							|  |  |  |     else | 
					
						
							|  |  |  |       flash[:error] = l(:notice_failed_to_save_time_entries, | 
					
						
							|  |  |  |                         :count => unsaved_time_entry_ids.size, | 
					
						
							|  |  |  |                         :total => time_entries.size, | 
					
						
							|  |  |  |                         :ids => '#' + unsaved_time_entry_ids.join(', #')) | 
					
						
							|  |  |  |     end | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-05-29 18:54:26 +00:00
										 |  |  |   def find_optional_project_for_new_time_entry | 
					
						
							| 
									
										
										
										
											2012-01-22 10:37:57 +00:00
										 |  |  |     if (project_id = (params[:project_id] || params[:time_entry] && params[:time_entry][:project_id])).present? | 
					
						
							|  |  |  |       @project = Project.find(project_id) | 
					
						
							|  |  |  |     end | 
					
						
							| 
									
										
										
										
											2010-12-14 18:29:24 +00:00
										 |  |  |     if (issue_id = (params[:issue_id] || params[:time_entry] && params[:time_entry][:issue_id])).present? | 
					
						
							| 
									
										
										
										
											2010-12-04 10:13:15 +00:00
										 |  |  |       @issue = Issue.find(issue_id) | 
					
						
							| 
									
										
										
										
											2012-01-22 10:37:57 +00:00
										 |  |  |       @project ||= @issue.project | 
					
						
							|  |  |  |     end | 
					
						
							| 
									
										
										
										
											2012-05-29 18:54:26 +00:00
										 |  |  |   rescue ActiveRecord::RecordNotFound | 
					
						
							|  |  |  |     render_404 | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   def find_project_for_new_time_entry | 
					
						
							|  |  |  |     find_optional_project_for_new_time_entry | 
					
						
							| 
									
										
										
										
											2012-01-22 10:37:57 +00:00
										 |  |  |     if @project.nil? | 
					
						
							| 
									
										
										
										
											2007-03-23 12:22:31 +00:00
										 |  |  |       render_404 | 
					
						
							|  |  |  |     end | 
					
						
							|  |  |  |   end | 
					
						
							| 
									
										
										
										
											2011-08-21 09:26:32 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-08-31 16:34:54 +00:00
										 |  |  |   def find_optional_project | 
					
						
							|  |  |  |     if !params[:issue_id].blank? | 
					
						
							|  |  |  |       @issue = Issue.find(params[:issue_id]) | 
					
						
							|  |  |  |       @project = @issue.project | 
					
						
							|  |  |  |     elsif !params[:project_id].blank? | 
					
						
							|  |  |  |       @project = Project.find(params[:project_id]) | 
					
						
							|  |  |  |     end | 
					
						
							|  |  |  |   end | 
					
						
							| 
									
										
										
										
											2011-08-21 09:26:32 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-12-09 17:57:18 +00:00
										 |  |  |   # Returns the TimeEntry scope for index and report actions | 
					
						
							|  |  |  |   def time_entry_scope | 
					
						
							|  |  |  |     scope = TimeEntry.visible.where(@query.statement) | 
					
						
							|  |  |  |     if @issue | 
					
						
							|  |  |  |       scope = scope.on_issue(@issue) | 
					
						
							|  |  |  |     elsif @project | 
					
						
							|  |  |  |       scope = scope.on_project(@project, Setting.display_subprojects_issues?) | 
					
						
							|  |  |  |     end | 
					
						
							|  |  |  |     scope | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-04-04 11:53:29 +00:00
										 |  |  |   def parse_params_for_bulk_time_entry_attributes(params) | 
					
						
							|  |  |  |     attributes = (params[:time_entry] || {}).reject {|k,v| v.blank?} | 
					
						
							|  |  |  |     attributes.keys.each {|k| attributes[k] = '' if attributes[k] == 'none'} | 
					
						
							|  |  |  |     attributes[:custom_field_values].reject! {|k,v| v.blank?} if attributes[:custom_field_values] | 
					
						
							|  |  |  |     attributes | 
					
						
							|  |  |  |   end | 
					
						
							| 
									
										
										
										
											2007-03-23 12:22:31 +00:00
										 |  |  | end |