mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-10 17:36:33 +08:00
004aeda601
Co-authored-by: Anton <anton@scinote.net>
25 lines
1 KiB
Ruby
25 lines
1 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
class RepositoryStockUnitItem < ApplicationRecord
|
|
DEFAULT_UNITS = %i(L mL uL g mg ug M mM).freeze
|
|
belongs_to :repository_column, inverse_of: :repository_checklist_items
|
|
belongs_to :created_by, class_name: 'User',
|
|
inverse_of: :created_repository_checklist_types
|
|
belongs_to :last_modified_by, class_name: 'User',
|
|
inverse_of: :modified_repository_checklist_types
|
|
has_many :repository_stock_values, inverse_of: :repository_stock_unit_item, dependent: :nullify
|
|
has_many :my_module_repository_rows, inverse_of: :repository_stock_unit_item, dependent: :nullify
|
|
|
|
validate :validate_per_column_limit
|
|
validates :data, presence: true,
|
|
uniqueness: { scope: :repository_column_id },
|
|
length: { maximum: Constants::NAME_MAX_LENGTH }
|
|
private
|
|
|
|
def validate_per_column_limit
|
|
if repository_column &&
|
|
repository_column.repository_stock_unit_items.size > Constants::REPOSITORY_STOCK_UNIT_ITEMS_PER_COLUMN
|
|
errors.add(:base, :per_column_limit)
|
|
end
|
|
end
|
|
end
|