2018-11-29 20:19:38 -05:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class Passport < ApplicationRecord
|
2019-07-25 17:15:40 -04:00
|
|
|
include RequiredNameable
|
2019-07-18 14:44:46 -04:00
|
|
|
|
2019-03-25 20:56:31 -04:00
|
|
|
################
|
|
|
|
# Associations #
|
|
|
|
################
|
|
|
|
|
2019-01-30 22:04:42 -05:00
|
|
|
belongs_to :person, optional: true
|
2019-07-22 09:52:23 -04:00
|
|
|
belongs_to :federal_subject, optional: true
|
2019-01-30 22:04:42 -05:00
|
|
|
|
2019-07-18 14:44:46 -04:00
|
|
|
###############
|
|
|
|
# Validations #
|
|
|
|
###############
|
2018-12-02 17:20:16 -05:00
|
|
|
|
2019-09-30 07:46:38 -04:00
|
|
|
validates :series, presence: true
|
|
|
|
validates :number, presence: true
|
|
|
|
validates :issued_by, presence: true
|
|
|
|
validates :unit_code, presence: true
|
2019-07-18 14:44:46 -04:00
|
|
|
validates :date_of_issue, presence: true
|
2019-07-22 09:52:23 -04:00
|
|
|
|
2019-09-30 07:46:38 -04:00
|
|
|
validates :zip_code, allow_nil: true, good_small_text: true
|
|
|
|
validates :town_type, allow_nil: true, good_small_text: true
|
|
|
|
validates :town_name, allow_nil: true, good_small_text: true
|
|
|
|
validates :settlement_type, allow_nil: true, good_small_text: true
|
|
|
|
validates :settlement_name, allow_nil: true, good_small_text: true
|
|
|
|
validates :district_type, allow_nil: true, good_small_text: true
|
|
|
|
validates :district_name, allow_nil: true, good_small_text: true
|
|
|
|
validates :street_type, allow_nil: true, good_small_text: true
|
|
|
|
validates :street_name, allow_nil: true, good_small_text: true
|
|
|
|
validates :residence_type, allow_nil: true, good_small_text: true
|
|
|
|
validates :residence_name, allow_nil: true, good_small_text: true
|
|
|
|
validates :building_type, allow_nil: true, good_small_text: true
|
|
|
|
validates :building_name, allow_nil: true, good_small_text: true
|
|
|
|
validates :apartment_type, allow_nil: true, good_small_text: true
|
|
|
|
validates :apartment_name, allow_nil: true, good_small_text: true
|
2018-11-29 20:19:38 -05:00
|
|
|
end
|