summaryrefslogtreecommitdiff
path: root/app/models/concerns/internal_id.rb
blob: 67a0adfcd563b8d77f9c67e895eb2abd7d3e7b2d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
module InternalId
  extend ActiveSupport::Concern

  included do
    validate :set_iid, on: :create
    validates :iid, presence: true, numericality: true
  end

  def set_iid
    if iid.blank?
      parent = project || group
      records = parent.send(self.class.name.tableize)
      records = records.with_deleted if self.paranoid?
      max_iid = records.maximum(:iid)

      self.iid = max_iid.to_i + 1
    end
  end

  def to_param
    iid.to_s
  end
end