mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-15 21:56:12 +08:00
21 lines
651 B
Ruby
21 lines
651 B
Ruby
# frozen_string_literal: true
|
|
|
|
class ResultOrderableElement < ApplicationRecord
|
|
validates :position, uniqueness: { scope: :result }
|
|
validate :check_result_relations
|
|
|
|
belongs_to :result, inverse_of: :result_orderable_elements, touch: true
|
|
belongs_to :orderable, polymorphic: true, inverse_of: :result_orderable_element
|
|
acts_as_list scope: :result, top_of_list: 0, sequential_updates: true
|
|
|
|
private
|
|
|
|
def check_result_relations
|
|
if result != orderable.result
|
|
errors.add(
|
|
:step_orderable_element,
|
|
I18n.t('activerecord.errors.models.result_orderable_element.attributes.result.wrong_result')
|
|
)
|
|
end
|
|
end
|
|
end
|