Files
redmine_overhead/lib/overhead_time_entry_activity_patch.rb
Eric Davis cb8d2bc6df [#2279] Added TimeEntryActivity#billable_custom_field to lookup and return
the configured CustomField for the Billing Status.
2009-04-22 11:53:50 -07:00

65 lines
1.7 KiB
Ruby

require_dependency 'time_entry_activity'
module OverheadTimeEntryActivityPatch
def self.included(base)
base.extend(ClassMethods)
base.send(:include, InstanceMethods)
base.class_eval do
unloadable
end
end
module ClassMethods
# Returns the CustomField used for tracking Billable activities
def billable_custom_field
if overhead_configured?
TimeEntryActivityCustomField.find_by_id(Setting['plugin_redmine_overhead']['custom_field'])
end
end
def overhead_configured?
Setting['plugin_redmine_overhead'] && Setting['plugin_redmine_overhead']['custom_field']
end
end
module InstanceMethods
# Is the Activity Billable, based on it's custom data?
def billable?
if overhead_configured?
billable_field = TimeEntryActivity.billable_custom_field
return field_equals_the_configured_billable_field?(billable_field)
else
return false
end
end
private
def overhead_configured?
TimeEntryActivity.overhead_configured?
end
# Checks if the field's value equals the configured billable
# value.
def field_equals_the_configured_billable_field?(field=nil)
return false unless field
custom_value = self.custom_value_for(field)
return false unless custom_value
if field.field_format == 'bool'
# Map string values to proper booleans
setting = (Setting['plugin_redmine_overhead']['billable_value'] == "true") ? true : false
activity_field = (custom_value.value == "1") ? true : false
return activity_field == setting
else
return custom_value.value == Setting['plugin_redmine_overhead']['billable_value']
end
end
end
end