'hours' => 'hours'
cond = ARCondition.new
- if @project.nil?
- cond << Project.allowed_to_condition(User.current, :view_time_entries)
- elsif @issue.nil?
- cond << @project.project_condition(Setting.display_subprojects_issues?)
- else
+ if @issue
cond << "#{Issue.table_name}.root_id = #{@issue.root_id} AND #{Issue.table_name}.lft >= #{@issue.lft} AND #{Issue.table_name}.rgt <= #{@issue.rgt}"
+ elsif @project
+ cond << @project.project_condition(Setting.display_subprojects_issues?)
end
retrieve_date_range
cond << ['spent_on BETWEEN ? AND ?', @from, @to]
- TimeEntry.visible_by(User.current) do
- respond_to do |format|
- format.html {
- # Paginate results
- @entry_count = TimeEntry.count(:include => [:project, :issue], :conditions => cond.conditions)
- @entry_pages = Paginator.new self, @entry_count, per_page_option, params['page']
- @entries = TimeEntry.find(:all,
- :include => [:project, :activity, :user, {:issue => :tracker}],
- :conditions => cond.conditions,
- :order => sort_clause,
- :limit => @entry_pages.items_per_page,
- :offset => @entry_pages.current.offset)
- @total_hours = TimeEntry.sum(:hours, :include => [:project, :issue], :conditions => cond.conditions).to_f
+ respond_to do |format|
+ format.html {
+ # Paginate results
+ @entry_count = TimeEntry.visible.count(:include => [:project, :issue], :conditions => cond.conditions)
+ @entry_pages = Paginator.new self, @entry_count, per_page_option, params['page']
+ @entries = TimeEntry.visible.find(:all,
+ :include => [:project, :activity, :user, {:issue => :tracker}],
+ :conditions => cond.conditions,
+ :order => sort_clause,
+ :limit => @entry_pages.items_per_page,
+ :offset => @entry_pages.current.offset)
+ @total_hours = TimeEntry.visible.sum(:hours, :include => [:project, :issue], :conditions => cond.conditions).to_f
- render :layout => !request.xhr?
- }
- format.api {
- @entry_count = TimeEntry.count(:include => [:project, :issue], :conditions => cond.conditions)
- @entry_pages = Paginator.new self, @entry_count, per_page_option, params['page']
- @entries = TimeEntry.find(:all,
- :include => [:project, :activity, :user, {:issue => :tracker}],
- :conditions => cond.conditions,
- :order => sort_clause,
- :limit => @entry_pages.items_per_page,
- :offset => @entry_pages.current.offset)
- }
- format.atom {
- entries = TimeEntry.find(:all,
- :include => [:project, :activity, :user, {:issue => :tracker}],
- :conditions => cond.conditions,
- :order => "#{TimeEntry.table_name}.created_on DESC",
- :limit => Setting.feeds_limit.to_i)
- render_feed(entries, :title => l(:label_spent_time))
- }
- format.csv {
- # Export all entries
- @entries = TimeEntry.find(:all,
- :include => [:project, :activity, :user, {:issue => [:tracker, :assigned_to, :priority]}],
- :conditions => cond.conditions,
- :order => sort_clause)
- send_data(entries_to_csv(@entries), :type => 'text/csv; header=present', :filename => 'timelog.csv')
- }
- end
+ render :layout => !request.xhr?
+ }
+ format.api {
+ @entry_count = TimeEntry.visible.count(:include => [:project, :issue], :conditions => cond.conditions)
+ @entry_pages = Paginator.new self, @entry_count, per_page_option, params['page']
+ @entries = TimeEntry.visible.find(:all,
+ :include => [:project, :activity, :user, {:issue => :tracker}],
+ :conditions => cond.conditions,
+ :order => sort_clause,
+ :limit => @entry_pages.items_per_page,
+ :offset => @entry_pages.current.offset)
+ }
+ format.atom {
+ entries = TimeEntry.visible.find(:all,
+ :include => [:project, :activity, :user, {:issue => :tracker}],
+ :conditions => cond.conditions,
+ :order => "#{TimeEntry.table_name}.created_on DESC",
+ :limit => Setting.feeds_limit.to_i)
+ render_feed(entries, :title => l(:label_spent_time))
+ }
+ format.csv {
+ # Export all entries
+ @entries = TimeEntry.visible.find(:all,
+ :include => [:project, :activity, :user, {:issue => [:tracker, :assigned_to, :priority]}],
+ :conditions => cond.conditions,
+ :order => sort_clause)
+ send_data(entries_to_csv(@entries), :type => 'text/csv; header=present', :filename => 'timelog.csv')
+ }
end
end
-# redMine - project management software
-# Copyright (C) 2006-2008 Jean-Philippe Lang
+# Redmine - project management software
+# Copyright (C) 2006-2011 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
validates_presence_of :user_id, :activity_id, :project_id, :hours, :spent_on
validates_numericality_of :hours, :allow_nil => true, :message => :invalid
validates_length_of :comments, :maximum => 255, :allow_nil => true
+
+ named_scope :visible, lambda {|*args| {
+ :include => :project,
+ :conditions => Project.allowed_to_condition(args.first || User.current, :view_time_entries)
+ }}
def after_initialize
if new_record? && self.activity.nil?
(usr == user && usr.allowed_to?(:edit_own_time_entries, project)) || usr.allowed_to?(:edit_time_entries, project)
end
+ # TODO: remove this method in 1.3.0
def self.visible_by(usr)
+ ActiveSupport::Deprecation.warn "TimeEntry.visible_by is deprecated and will be removed in Redmine 1.3.0. Use the visible scope instead."
with_scope(:find => { :conditions => Project.allowed_to_condition(usr, :view_time_entries) }) do
yield
end