Sha256: 163965ab317bf51a84bb10a26aefc4821333a1bcf473eeaa11d28ddbb60499a0
Contents?: true
Size: 922 Bytes
Versions: 5
Compression:
Stored size: 922 Bytes
Contents
module Ecom module Core class Crew < ApplicationRecord mount_base64_uploader :photo, PhotoUploader PERMANENT = 'Permanent'.freeze SUPERVISOR = 'Supervisor'.freeze TEMPORARY = 'Temporary'.freeze EMPLOYMENT_TYPES = [PERMANENT, SUPERVISOR, TEMPORARY].freeze before_save :set_employment_date, if: proc { |c| c.employment_date.nil? } belongs_to :crew_type validates :name, :address, :qualification, :employment, :wage, :wage_in_words, presence: true validates :employment, inclusion: EMPLOYMENT_TYPES scope :by_active, ->(active) { where(active: active) } scope :by_qualification, ->(qualification) { where(qualification: qualification) } scope :by_sub_contracted, ->(sub_contracted) { where(sub_contracted: sub_contracted) } def set_employment_date self.employment_date = Date.today end end end end
Version data entries
5 entries across 5 versions & 1 rubygems