OpenProject is the leading open source project management software.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
openproject/lib/time_entry_patch.rb

93 lines
2.3 KiB

require_dependency 'time_entry'
# Patches Redmine's Users dynamically.
module TimeEntryPatch
def self.included(base) # :nodoc:
base.extend(ClassMethods)
base.send(:include, InstanceMethods)
# Same as typing in the class t.update_costs
base.class_eval do
unloadable
belongs_to :rate, :conditions => {:type => ["HourlyRate", "DefaultHourlyRate"]}, :class_name => "Rate"
attr_protected :costs, :rate_id
named_scope :visible, lambda{|*args|
{ :include => [:project, :user],
:conditions => (args.first || User.current).allowed_for(:view_time_entries, args[1])
}
}
unless singleton_methods.include? "visible_by_without_inheritance"
class << self
alias_method_chain :visible_by, :inheritance
end
alias_method_chain :editable_by?, :inheritance
end
end
end
module ClassMethods
def visible_by_with_inheritance(usr)
with_scope(:find => { :conditions => usr.allowed_for(:view_time_entries), :include => [:project, :user]}) do
yield
end
end
end
module InstanceMethods
def before_save
update_costs
end
def real_costs
# This methods returns the actual assigned costs of the entry
overridden_costs || costs || calculated_costs
end
def calculated_costs(rate_attr = nil)
rate_attr ||= current_rate
hours * rate_attr.rate
rescue
0.0
end
def update_costs(rate_attr = nil)
rate_attr ||= current_rate
if rate_attr.nil?
self.costs = 0.0
self.rate = nil
return
end
self.costs = calculated_costs(rate_attr)
self.rate = rate_attr
end
def update_costs!(rate_attr = nil)
self.update_costs(rate_attr)
self.save!
end
def current_rate
self.user.rate_at(self.spent_on, self.project_id)
end
# Returns true if the time entry can be edited by usr, otherwise false
def editable_by_with_inheritance?(usr)
usr.allowed_to?(:edit_time_entries, project, :for => user)
end
def visible_by?(usr)
usr.allowed_to?(:view_time_entries, project, :for => user)
end
def costs_visible_by?(usr)
usr.allowed_to?(:view_hourly_rates, project, :for => user)
end
end
end