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/costs_timelog_controller_pa...

54 lines
1.6 KiB

require_dependency 'timelog_controller'
module CostsTimelogControllerPatch
def self.included(base) # :nodoc:
base.send(:include, InstanceMethods)
base.class_eval do
unloadable
alias_method_chain :details, :reports_view
end
end
module InstanceMethods
def details_with_reports_view
# we handle single project reporting currently
return details_without_reports_view if @project.nil?
if @issue
if @issue.respond_to?("lft")
issue_ids = Issue.all(:select => :id, :conditions => ["root_id = ? AND lft >= ? AND rgt <= ?", @issue.root_id, @issue.lft, @issue.rgt]).collect{|i| i.id.to_s}
else
issue_ids = [@issue.id.to_s]
end
filters = [{
:column_name => "issue_id",
:enabled => "1",
:operator => "=",
:scope => "costs",
:values => issue_ids
}]
end
respond_to do |format|
format.html {
session[:cost_query] = {:project_id => @project.id,
:filters => (filters || {}),
:group_by => {},
:display_cost_entries => "0",
:display_time_entries => "1"
}
redirect_to :controller => "cost_reports", :action => "index", :project_id => @project
}
format.all {
details_without_report_view
}
end
end
end
end
TimelogController.send(:include, CostsTimelogControllerPatch)