kanbanworkflowstimelinescrumrubyroadmapproject-planningproject-managementopenprojectangularissue-trackerifcgantt-chartganttbug-trackerboardsbcf
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.
66 lines
1.8 KiB
66 lines
1.8 KiB
15 years ago
|
require_dependency 'query'
|
||
|
|
||
|
module CostsQueryPatch
|
||
|
class CurrencyQueryColumn < QueryColumn
|
||
|
unloadable
|
||
|
include ActionView::Helpers::NumberHelper
|
||
|
|
||
|
def value(issue)
|
||
|
number_to_currency(issue.send(name))
|
||
|
end
|
||
|
end
|
||
|
|
||
|
def self.included(base) # :nodoc:
|
||
|
base.extend(ClassMethods)
|
||
|
|
||
|
base.send(:include, InstanceMethods)
|
||
|
|
||
|
# Same as typing in the class
|
||
|
base.class_eval do
|
||
|
unloadable # Send unloadable so it will not be unloaded in development
|
||
|
|
||
|
add_available_column(QueryColumn.new(:cost_object_subject))
|
||
|
add_available_column(CurrencyQueryColumn.new(:material_costs))
|
||
|
add_available_column(CurrencyQueryColumn.new(:labor_costs))
|
||
|
add_available_column(CurrencyQueryColumn.new(:overall_costs))
|
||
|
|
||
|
alias_method_chain :available_filters, :costs
|
||
|
end
|
||
|
end
|
||
|
|
||
|
module ClassMethods
|
||
|
|
||
|
# Setter for +available_columns+ that isn't provided by the core.
|
||
|
def available_columns=(v)
|
||
|
self.available_columns = (v)
|
||
|
end
|
||
|
|
||
|
# Method to add a column to the +available_columns+ that isn't provided by the core.
|
||
|
def add_available_column(column)
|
||
|
self.available_columns << (column)
|
||
|
end
|
||
|
end
|
||
|
|
||
|
module InstanceMethods
|
||
|
|
||
|
# Wrapper around the +available_filters+ to add a new Cost Object filter
|
||
|
def available_filters_with_costs
|
||
|
@available_filters = available_filters_without_costs
|
||
|
|
||
|
if project
|
||
|
redmine_costs_filters = {
|
||
|
"cost_object_id" => {
|
||
|
:type => :list_optional,
|
||
|
:order => 14,
|
||
|
:values => CostObject.find(:all, :conditions => ["project_id IN (?)", project], :order => 'subject ASC').collect { |d| [d.subject, d.id.to_s]}
|
||
|
},
|
||
|
}
|
||
|
else
|
||
|
redmine_costs_filters = { }
|
||
|
end
|
||
|
return @available_filters.merge(redmine_costs_filters)
|
||
|
end
|
||
|
end
|
||
|
end
|
||
|
|
||
|
Query.send(:include, CostsQueryPatch)
|