mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-25 20:46:48 +00:00
56 lines
1.5 KiB
Ruby
56 lines
1.5 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
class Customer < ApplicationRecord
|
|
acts_as_taggable
|
|
|
|
searchable_attributes :name, :email, :code
|
|
|
|
belongs_to :enterprise
|
|
belongs_to :user, class_name: Spree.user_class.to_s
|
|
has_many :orders, class_name: "Spree::Order"
|
|
before_destroy :check_for_orders
|
|
|
|
belongs_to :bill_address, class_name: "Spree::Address"
|
|
alias_attribute :billing_address, :bill_address
|
|
accepts_nested_attributes_for :bill_address
|
|
|
|
belongs_to :ship_address, class_name: "Spree::Address"
|
|
alias_attribute :shipping_address, :ship_address
|
|
accepts_nested_attributes_for :ship_address
|
|
|
|
before_validation :downcase_email
|
|
before_validation :empty_code
|
|
|
|
validates :code, uniqueness: { scope: :enterprise_id, allow_nil: true }
|
|
validates :email, presence: true, 'valid_email_2/email': true,
|
|
uniqueness: { scope: :enterprise_id, message: I18n.t('validation_msg_is_associated_with_an_exising_customer') }
|
|
validates :enterprise, presence: true
|
|
|
|
scope :of, ->(enterprise) { where(enterprise_id: enterprise) }
|
|
|
|
before_create :associate_user
|
|
|
|
attr_accessor :gateway_recurring_payment_client_secret, :gateway_shop_id
|
|
|
|
private
|
|
|
|
def downcase_email
|
|
email.andand.downcase!
|
|
end
|
|
|
|
def empty_code
|
|
self.code = nil if code.blank?
|
|
end
|
|
|
|
def associate_user
|
|
self.user = user || Spree::User.find_by(email: email)
|
|
end
|
|
|
|
def check_for_orders
|
|
return true unless orders.any?
|
|
|
|
errors.add(:base, I18n.t('admin.customers.destroy.has_associated_orders'))
|
|
throw :abort
|
|
end
|
|
end
|