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.
133 lines
3.6 KiB
133 lines
3.6 KiB
#-- encoding: UTF-8
|
|
|
|
#-- copyright
|
|
# OpenProject is a project management system.
|
|
# Copyright (C) 2012-2017 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.
|
|
#
|
|
# OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows:
|
|
# Copyright (C) 2006-2017 Jean-Philippe Lang
|
|
# Copyright (C) 2010-2013 the ChiliProject Team
|
|
#
|
|
# This program is free software; you can redistribute it and/or
|
|
# modify it under the terms of the GNU General Public License
|
|
# as published by the Free Software Foundation; either version 2
|
|
# of the License, or (at your option) any later version.
|
|
#
|
|
# 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.
|
|
#
|
|
# See doc/COPYRIGHT.rdoc for more details.
|
|
#++
|
|
|
|
class WorkPackages::RescheduleService
|
|
include ::Shared::ServiceContext
|
|
|
|
attr_accessor :user,
|
|
:work_package
|
|
|
|
def initialize(user:, work_package:)
|
|
self.user = user
|
|
self.work_package = work_package
|
|
end
|
|
|
|
def call(date)
|
|
in_context(true) do
|
|
return if date.nil?
|
|
|
|
update(date)
|
|
end
|
|
end
|
|
|
|
def update(date)
|
|
result = set_dates_on_lowest_level(date)
|
|
|
|
return result if persist(result).failure?
|
|
|
|
related_result = reschedule_related(result)
|
|
combine_results(result, related_result)
|
|
|
|
persist(result)
|
|
end
|
|
|
|
def set_dates_on_lowest_level(date)
|
|
if work_package.leaf?
|
|
reschedule(work_package, date)
|
|
else
|
|
reschedule_leaves(date)
|
|
end
|
|
end
|
|
|
|
def reschedule_related(result)
|
|
schedule_starts = if work_package.leaf?
|
|
work_package
|
|
else
|
|
result.dependent_results.map(&:result)
|
|
end
|
|
|
|
set_schedule(schedule_starts)
|
|
end
|
|
|
|
def set_schedule(work_packages)
|
|
WorkPackages::SetScheduleService
|
|
.new(user: user,
|
|
work_package: work_packages)
|
|
.call(%i(start_date due_date))
|
|
end
|
|
|
|
def reschedule_leaves(date)
|
|
result = ServiceResult.new(success: true, result: work_package)
|
|
|
|
work_package.leaves.each do |leaf|
|
|
result.add_dependent!(reschedule(leaf, date))
|
|
end
|
|
|
|
result
|
|
end
|
|
|
|
def reschedule(scheduled, date)
|
|
if scheduled.start_date.nil? || scheduled.start_date < date
|
|
attributes = { due_date: date + scheduled.duration - 1,
|
|
start_date: date }
|
|
|
|
set_dates(scheduled, attributes)
|
|
else
|
|
ServiceResult.new(success: true, result: scheduled)
|
|
end
|
|
end
|
|
|
|
def set_dates(scheduled, attributes)
|
|
WorkPackages::SetAttributesService
|
|
.new(user: user,
|
|
work_package: scheduled,
|
|
contract: WorkPackages::UpdateContract)
|
|
.call(attributes)
|
|
end
|
|
|
|
def persist(result)
|
|
return result unless result.success? && result.all_errors.all?(&:empty?)
|
|
|
|
result.success = result.result.save && result.dependent_results.all? { |res| res.result.save(validate: false) }
|
|
|
|
result
|
|
end
|
|
|
|
def combine_results(start_result, related_result)
|
|
related_result.dependent_results.reject! do |dr|
|
|
if dr.result == work_package
|
|
start_result.result = dr.result
|
|
start_result.errors = dr.errors
|
|
end
|
|
end
|
|
|
|
start_result.merge!(related_result)
|
|
end
|
|
end
|
|
|