2021-11-11 11:23:49 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class CustomerRelations::Contact < ApplicationRecord
|
|
|
|
include StripAttribute
|
|
|
|
|
|
|
|
self.table_name = "customer_relations_contacts"
|
|
|
|
|
2021-11-18 22:05:49 +05:30
|
|
|
belongs_to :group, -> { where(type: Group.sti_name) }, foreign_key: 'group_id'
|
2021-11-11 11:23:49 +05:30
|
|
|
belongs_to :organization, optional: true
|
2021-11-18 22:05:49 +05:30
|
|
|
has_and_belongs_to_many :issues, join_table: :issue_customer_relations_contacts # rubocop: disable Rails/HasAndBelongsToMany
|
2021-11-11 11:23:49 +05:30
|
|
|
|
|
|
|
strip_attributes! :phone, :first_name, :last_name
|
|
|
|
|
|
|
|
enum state: {
|
|
|
|
inactive: 0,
|
|
|
|
active: 1
|
|
|
|
}
|
|
|
|
|
|
|
|
validates :group, presence: true
|
|
|
|
validates :phone, length: { maximum: 32 }
|
|
|
|
validates :first_name, presence: true, length: { maximum: 255 }
|
|
|
|
validates :last_name, presence: true, length: { maximum: 255 }
|
|
|
|
validates :email, length: { maximum: 255 }
|
|
|
|
validates :description, length: { maximum: 1024 }
|
|
|
|
validate :validate_email_format
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def validate_email_format
|
|
|
|
return unless email
|
|
|
|
|
|
|
|
self.errors.add(:email, I18n.t(:invalid, scope: 'valid_email.validations.email')) unless ValidateEmail.valid?(self.email)
|
|
|
|
end
|
|
|
|
end
|