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/app/helpers/cost_objects_helper.rb

50 lines
1.9 KiB

require 'csv'
require 'iconv'
module CostObjectsHelper
include ApplicationHelper
# Check if the current user is allowed to manage the budget. Based on Role
# permissions.
def allowed_management?
return User.current.allowed_to?(:edit_cost_objects, @project)
end
def cost_objects_to_csv(cost_objects)
CSV.generate(:col_sep => l(:general_csv_separator)) do |csv|
# csv header fields
headers = [ "#",
l(:field_status),
l(:field_project),
l(:field_subject),
l(:field_author),
l(:field_fixed_date),
l(:field_material_budget),
l(:field_labor_budget),
l(:field_spent),
l(:field_created_on),
l(:field_updated_on),
l(:field_description)
]
csv << headers.collect {|c| begin; c.to_s.encode('UTF-8'); rescue; c.to_s; end }
# csv lines
cost_objects.each do |cost_object|
fields = [cost_object.id,
l(cost_object.status),
cost_object.project.name,
cost_object.subject,
cost_object.author.name,
format_date(cost_object.fixed_date),
cost_object.kind == "VariableCostObject" ? number_to_currency(cost_object.material_budget) : "",
cost_object.kind == "VariableCostObject" ? number_to_currency(cost_object.labor_budget) : "",
cost_object.kind == "VariableCostObject" ? number_to_currency(cost_object.spent) : "",
format_time(cost_object.created_on),
format_time(cost_object.updated_on),
cost_object.description
]
csv << fields.collect {|c| begin; c.to_s.encode('UTF-8'); rescue; c.to_s; end }
end
end
end
end