70 lines
2.1 KiB
Ruby
70 lines
2.1 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
# Redmine plugin for Document Management System "Features"
|
|
#
|
|
# Karel Pičman <karel.picman@kontron.com>
|
|
#
|
|
# This file is part of Redmine DMSF plugin.
|
|
#
|
|
# Redmine DMSF plugin 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 3 of the License, or (at your option) any
|
|
# later version.
|
|
#
|
|
# Redmine DMSF plugin 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 Redmine DMSF plugin. If not, see
|
|
# <https://www.gnu.org/licenses/>.
|
|
|
|
# Workflow step
|
|
class DmsfWorkflowStep < ApplicationRecord
|
|
belongs_to :dmsf_workflow
|
|
belongs_to :user
|
|
|
|
has_many :dmsf_workflow_step_assignments, dependent: :destroy
|
|
|
|
validates :step, presence: true
|
|
validates :operator, presence: true
|
|
validates :user_id, uniqueness: { scope: %i[dmsf_workflow_id step], case_sensitive: true }
|
|
validates :name, length: { maximum: 30 }
|
|
|
|
OPERATOR_OR = 0
|
|
OPERATOR_AND = 1
|
|
|
|
def soperator
|
|
DmsfWorkflowStep.soperator(operator)
|
|
end
|
|
|
|
def self.soperator(operator)
|
|
operator == 1 ? l(:dmsf_and) : l(:dmsf_or)
|
|
end
|
|
|
|
def assign(dmsf_file_revision_id)
|
|
step_assignment = DmsfWorkflowStepAssignment.new
|
|
step_assignment.dmsf_workflow_step_id = id
|
|
step_assignment.user_id = user_id
|
|
step_assignment.dmsf_file_revision_id = dmsf_file_revision_id
|
|
step_assignment.save!
|
|
end
|
|
|
|
def finished?(dmsf_file_revision_id)
|
|
dmsf_workflow_step_assignments.each do |assignment|
|
|
next if assignment.dmsf_file_revision_id == dmsf_file_revision_id
|
|
|
|
return false if assignment.dmsf_workflow_step_actions.empty?
|
|
|
|
assignment.dmsf_workflow_step_actions.each do |act|
|
|
return false unless act.finished?
|
|
end
|
|
end
|
|
end
|
|
|
|
def copy_to(workflow)
|
|
new_step = dup
|
|
new_step.dmsf_workflow_id = workflow.id
|
|
new_step.save!
|
|
new_step
|
|
end
|
|
end
|