Sha256: 71ad6c32440c4a1483da3b75363fa2e75be29cda4722f61b5930304e3d1202f8
Contents?: true
Size: 1.37 KB
Versions: 53
Compression:
Stored size: 1.37 KB
Contents
# frozen_string_literal: true module Renalware class Address < ApplicationRecord belongs_to :country, class_name: "System::Country" validates :email, email: true, allow_blank: true delegate :uk?, to: :country, allow_nil: true belongs_to :addressable, polymorphic: true # Set to true to avoid address validation - useful when archiving a letter with a migrated # address that might not have a postcode for instance attr_accessor :skip_validation validates_with AddressValidator, unless: :skip_validation def self.reject_if_blank lambda { |attrs| %w(name organisation_name street_1 street_2 street_3 town county postcode) .all? { |a| attrs[a].blank? } } end def copy_from(source) return self if source.blank? self.name = source.name self.organisation_name = source.organisation_name self.street_1 = source.street_1 self.street_2 = source.street_2 self.street_3 = source.street_3 self.town = source.town self.county = source.county self.postcode = source.postcode self.country = source.country self end def to_s [name, organisation_name, street_1, street_2, street_3, town, county, postcode, country] .reject(&:blank?).join(", ") end def street [street_1, street_2, street_3].reject(&:blank?).join(", ") end end end
Version data entries
53 entries across 53 versions & 1 rubygems