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.
65 lines
1.7 KiB
65 lines
1.7 KiB
11 years ago
|
#-- copyright
|
||
|
# OpenProject Costs Plugin
|
||
|
#
|
||
|
# Copyright (C) 2009 - 2014 the OpenProject Foundation (OPF)
|
||
|
#
|
||
|
# This program is free software; you can redistribute it and/or
|
||
|
# modify it under the terms of the GNU General Public License
|
||
|
# version 3.
|
||
|
#
|
||
|
# This program is distributed in the hope that it will be useful,
|
||
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||
|
# GNU General Public License for more details.
|
||
|
#
|
||
|
# You should have received a copy of the GNU General Public License
|
||
|
# along with this program; if not, write to the Free Software
|
||
|
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
||
|
#++
|
||
|
|
||
15 years ago
|
class MaterialBudgetItem < ActiveRecord::Base
|
||
|
belongs_to :cost_object
|
||
15 years ago
|
belongs_to :cost_type
|
||
13 years ago
|
|
||
9 years ago
|
validates_length_of :comments, maximum: 255, allow_nil: true
|
||
15 years ago
|
validates_presence_of :cost_type
|
||
13 years ago
|
|
||
12 years ago
|
include ActiveModel::ForbiddenAttributesProtection
|
||
13 years ago
|
|
||
8 years ago
|
def self.visible(user)
|
||
|
includes(cost_object: :project)
|
||
|
.references(:projects)
|
||
|
.merge(Project.allowed_to(user, :view_cost_rates))
|
||
12 years ago
|
end
|
||
|
|
||
9 years ago
|
scope :visible_costs, lambda { |*args|
|
||
8 years ago
|
scope = visible(args.first || User.current)
|
||
|
|
||
|
if args[1]
|
||
|
scope = scope.where(cost_object: { projects_id: args[1].id })
|
||
|
end
|
||
|
|
||
|
scope
|
||
12 years ago
|
}
|
||
|
|
||
15 years ago
|
def costs
|
||
9 years ago
|
budget || calculated_costs
|
||
15 years ago
|
end
|
||
13 years ago
|
|
||
7 years ago
|
def overridden_budget?
|
||
|
budget.present?
|
||
|
end
|
||
|
|
||
15 years ago
|
def calculated_costs(fixed_date = cost_object.fixed_date)
|
||
15 years ago
|
if units && cost_type && rate = cost_type.rate_at(fixed_date)
|
||
15 years ago
|
rate.rate * units
|
||
|
else
|
||
|
0.0
|
||
|
end
|
||
15 years ago
|
end
|
||
12 years ago
|
|
||
|
def costs_visible_by?(usr)
|
||
|
usr.allowed_to?(:view_cost_rates, cost_object.project)
|
||
|
end
|
||
|
end
|