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.
176 lines
5.6 KiB
176 lines
5.6 KiB
#-- 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.
|
|
#++
|
|
|
|
class CostEntry < ActiveRecord::Base
|
|
belongs_to :project
|
|
belongs_to :work_package
|
|
belongs_to :user
|
|
include ::OpenProject::Costs::DeletedUserFallback
|
|
belongs_to :cost_type
|
|
belongs_to :cost_object
|
|
belongs_to :rate, class_name: 'CostRate'
|
|
|
|
include ActiveModel::ForbiddenAttributesProtection
|
|
|
|
validates_presence_of :work_package_id, :project_id, :user_id, :cost_type_id, :units, :spent_on
|
|
validates_numericality_of :units, allow_nil: false, message: :invalid
|
|
validates_length_of :comments, maximum: 255, allow_nil: true
|
|
|
|
before_save :before_save
|
|
before_validation :before_validation
|
|
after_initialize :after_initialize
|
|
validate :validate
|
|
|
|
scope :visible, lambda { |*args|
|
|
where(CostEntry.visible_condition(args[0] || User.current, args[1]))
|
|
.includes([:project, :user])
|
|
.references(:project)
|
|
}
|
|
|
|
scope :on_work_packages, ->(work_packages) { where(work_package_id: work_packages) }
|
|
|
|
def self.visible_condition(user, project)
|
|
%{ (#{Project.allowed_to_condition(user, :view_cost_entries, project: project)} OR
|
|
(#{Project.allowed_to_condition(user, :view_own_cost_entries, project: project)} AND #{CostEntry.table_name}.user_id = #{user.id})) }
|
|
end
|
|
|
|
scope :visible_costs, lambda{|*args|
|
|
view_cost_rates = Project.allowed_to_condition((args.first || User.current), :view_cost_rates, project: args[1])
|
|
view_cost_entries = CostEntry.visible_condition((args.first || User.current), args[1])
|
|
|
|
where([view_cost_entries, view_cost_rates].join(' AND '))
|
|
.includes([:project, :user])
|
|
}
|
|
|
|
def self.costs_of(work_packages:)
|
|
# N.B. Because of an AR quirks the code below uses statements like
|
|
# where(work_package_id: ids)
|
|
# You would expect to be able to simply write those as
|
|
# where(work_package: work_packages)
|
|
# However, AR (Rails 4.2) will not expand :includes + :references inside a subquery,
|
|
# which will render the query invalid. Therefore we manually extract the IDs in a separate (pluck) query.
|
|
ids = if work_packages.respond_to?(:pluck)
|
|
work_packages.pluck(:id)
|
|
else
|
|
Array(work_packages).map { |wp| wp.id }
|
|
end
|
|
CostEntry.where(work_package_id: ids)
|
|
.joins(work_package: :project)
|
|
.visible_costs
|
|
.sum("COALESCE(#{CostEntry.table_name}.overridden_costs,
|
|
#{CostEntry.table_name}.costs)").to_f
|
|
end
|
|
|
|
def after_initialize
|
|
if new_record? && cost_type.nil?
|
|
if default_cost_type = CostType.default
|
|
self.cost_type_id = default_cost_type.id
|
|
end
|
|
end
|
|
end
|
|
|
|
def before_validation
|
|
self.project = work_package.project if work_package && project.nil?
|
|
end
|
|
|
|
def validate
|
|
errors.add :units, :invalid if units && (units < 0)
|
|
errors.add :project_id, :invalid if project.nil?
|
|
errors.add :work_package_id, :invalid if work_package.nil? || (project != work_package.project)
|
|
errors.add :cost_type_id, :invalid if cost_type.present? && cost_type.deleted_at.present?
|
|
errors.add :user_id, :invalid if project.present? && !project.users.include?(user) && user_id_changed?
|
|
|
|
begin
|
|
spent_on.to_date
|
|
rescue Exception
|
|
errors.add :spent_on, :invalid
|
|
end
|
|
end
|
|
|
|
def before_save
|
|
self.spent_on &&= spent_on.to_date
|
|
update_costs
|
|
end
|
|
|
|
def overwritten_costs=(costs)
|
|
write_attribute(:overwritten_costs, CostRate.clean_currency(costs))
|
|
end
|
|
|
|
def units=(units)
|
|
write_attribute(:units, CostRate.clean_currency(units))
|
|
end
|
|
|
|
# tyear, tmonth, tweek assigned where setting spent_on attributes
|
|
# these attributes make time aggregations easier
|
|
def spent_on=(date)
|
|
super
|
|
self.tyear = spent_on ? spent_on.year : nil
|
|
self.tmonth = spent_on ? spent_on.month : nil
|
|
self.tweek = spent_on ? Date.civil(spent_on.year, spent_on.month, spent_on.day).cweek : nil
|
|
end
|
|
|
|
def real_costs
|
|
# This methods returns the actual assigned costs of the entry
|
|
overridden_costs || costs || calculated_costs
|
|
end
|
|
|
|
def calculated_costs(rate_attr = nil)
|
|
rate_attr ||= current_rate
|
|
units * rate_attr.rate
|
|
rescue
|
|
0.0
|
|
end
|
|
|
|
def update_costs(rate_attr = nil)
|
|
rate_attr ||= current_rate
|
|
if rate_attr.nil?
|
|
self.costs = 0.0
|
|
self.rate = nil
|
|
return
|
|
end
|
|
|
|
self.costs = calculated_costs(rate_attr)
|
|
self.rate = rate_attr
|
|
end
|
|
|
|
def update_costs!(rate_attr = nil)
|
|
update_costs(rate_attr)
|
|
self.save!
|
|
end
|
|
|
|
def current_rate
|
|
cost_type.rate_at(self.spent_on)
|
|
end
|
|
|
|
# Returns true if the cost entry can be edited by usr, otherwise false
|
|
def editable_by?(usr)
|
|
usr.allowed_to?(:edit_cost_entries, project) ||
|
|
(usr.allowed_to?(:edit_own_cost_entries, project) && user_id == usr.id)
|
|
end
|
|
|
|
def creatable_by?(usr)
|
|
usr.allowed_to?(:log_costs, project) ||
|
|
(usr.allowed_to?(:log_own_costs, project) && user_id == usr.id)
|
|
end
|
|
|
|
def costs_visible_by?(usr)
|
|
usr.allowed_to?(:view_cost_rates, project) ||
|
|
(usr.id == user_id && !overridden_costs.nil?)
|
|
end
|
|
end
|
|
|