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.
96 lines
3.2 KiB
96 lines
3.2 KiB
class VariableCostObject < CostObject
|
|
has_many :material_budget_items, :include => :cost_type, :foreign_key => 'cost_object_id', :dependent => :destroy
|
|
has_many :labor_budget_items, :include => :user, :foreign_key => 'cost_object_id', :dependent => :destroy
|
|
|
|
validates_associated :material_budget_items
|
|
validates_associated :labor_budget_items
|
|
|
|
after_update :save_material_budget_items
|
|
after_update :save_labor_budget_items
|
|
|
|
def copy_from(arg)
|
|
cost_object = arg.is_a?(VariableCostObject) ? arg : VariableCostObject.find(arg)
|
|
self.attributes = cost_object.attributes.dup
|
|
self.material_budget_items = cost_object.material_budget_items.collect {|v| v.clone}
|
|
self.labor_budget_items = cost_object.labor_budget_items.collect {|v| v.clone}
|
|
end
|
|
|
|
# Label of the current cost_object type for display in GUI.
|
|
def type_label
|
|
return l(:label_variable_cost_object)
|
|
end
|
|
|
|
def material_budget
|
|
material_budget_items.inject(0.0) {|sum, d| d.costs + sum}
|
|
end
|
|
|
|
def labor_budget
|
|
labor_budget_items.inject(0.0) {|sum,d| sum + d.costs}
|
|
end
|
|
|
|
def spent
|
|
spent_material + spent_labor
|
|
end
|
|
|
|
def spent_material
|
|
return @spent_material if @spent_material
|
|
return 0 unless issues.size > 0
|
|
@spent_material = issues.collect(&:material_costs).compact.sum
|
|
end
|
|
|
|
def spent_labor
|
|
return @spent_labor if @spent_labor
|
|
return 0 unless issues.size > 0
|
|
@spent_labor = issues.collect(&:labor_costs).compact.sum
|
|
end
|
|
|
|
def new_material_budget_item_attributes=(material_budget_item_attributes)
|
|
material_budget_item_attributes.each do |index, attributes|
|
|
material_budget_items.build(attributes) if attributes[:units].to_i > 0
|
|
end
|
|
end
|
|
|
|
def existing_material_budget_item_attributes=(material_budget_item_attributes)
|
|
material_budget_items.reject(&:new_record?).each do |material_budget_item|
|
|
attributes = material_budget_item_attributes[material_budget_item.id.to_s]
|
|
|
|
if attributes && attributes[:units].to_i > 0
|
|
attributes[:budget] = Rate.clean_currency(attributes[:budget])
|
|
material_budget_item.attributes = attributes
|
|
else
|
|
material_budget_items.delete(material_budget_item)
|
|
end
|
|
end
|
|
end
|
|
|
|
def save_material_budget_items
|
|
material_budget_items.each do |material_budget_item|
|
|
material_budget_item.save(false)
|
|
end
|
|
end
|
|
|
|
def new_labor_budget_item_attributes=(labor_budget_item_attributes)
|
|
labor_budget_item_attributes.each do |index, attributes|
|
|
labor_budget_items.build(attributes) if attributes[:hours].to_i > 0 && attributes[:user_id].to_i > 0
|
|
end
|
|
end
|
|
|
|
def existing_labor_budget_item_attributes=(labor_budget_item_attributes)
|
|
labor_budget_items.reject(&:new_record?).each do |labor_budget_item|
|
|
attributes = labor_budget_item_attributes[labor_budget_item.id.to_s]
|
|
|
|
attributes[:budget] = Rate.clean_currency(attributes[:budget])
|
|
if attributes && attributes[:hours].to_i > 0 && attributes[:user_id].to_i > 0
|
|
labor_budget_item.attributes = attributes
|
|
else
|
|
labor_budget_items.delete(labor_budget_item)
|
|
end
|
|
end
|
|
end
|
|
|
|
def save_labor_budget_items
|
|
labor_budget_items.each do |labor_budget_item|
|
|
labor_budget_item.save(false)
|
|
end
|
|
end
|
|
end |