2017-12-21 19:41:50 +00:00
|
|
|
class RecruitmentJob
|
|
|
|
include Mongoid::Document
|
|
|
|
include Mongoid::Timestamps
|
|
|
|
include Slug
|
|
|
|
|
|
|
|
|
|
|
|
field :job_title, as: :slug_title, localize: true
|
|
|
|
field :job_description, localize: true
|
|
|
|
field :responsibility, localize: true
|
|
|
|
field :other_conditions, localize: true
|
|
|
|
field :salary #type1 => negotiable type2 => according to company rules type3 => monthly salary
|
|
|
|
field :travel_assignment #type1 => Need to travel, type2 => occasionally, type3 => travelling not required
|
|
|
|
field :working_time #type1 => Day Shift, type2 => Night Shift
|
|
|
|
field :holiday_system #type1 => According to Company Rules, type2 => other
|
|
|
|
field :holiday_system_other
|
|
|
|
field :joining_time #type1 => Immediate, type2 => withing week, type3 => within a month, type4 => more than a month
|
|
|
|
field :work_type #type1 => Office worker, type2 => graduate, type3 => foreigner, type4 => internship, type5 => SOHO
|
2017-12-29 12:00:33 +00:00
|
|
|
field :work_experience_years, type: Integer, :default => 0
|
|
|
|
field :work_experience_months, type: Integer, :default => 0
|
2017-12-21 19:41:50 +00:00
|
|
|
field :academic_requirement
|
|
|
|
field :language_requirement
|
2017-12-26 13:07:35 +00:00
|
|
|
field :skills, type: Array, :default => []
|
2017-12-21 19:41:50 +00:00
|
|
|
field :category
|
|
|
|
field :location_of_work
|
|
|
|
field :industrial_area
|
|
|
|
|
|
|
|
|
|
|
|
field :filled, type: Boolean, :default => false
|
|
|
|
|
|
|
|
belongs_to :employer_profile
|
|
|
|
|
2017-12-29 12:00:33 +00:00
|
|
|
scope :not_filled, ->{where(:filled => false)}
|
|
|
|
|
|
|
|
def get_category
|
|
|
|
RecruitmentCategory.find(self.category).job_category rescue ""
|
|
|
|
end
|
2017-12-21 19:41:50 +00:00
|
|
|
|
2018-01-02 18:30:32 +00:00
|
|
|
def get_application_count
|
|
|
|
EmployeeJobApplication.where(:job => self.id.to_s).not_archived.count
|
|
|
|
end
|
|
|
|
|
2017-12-21 19:41:50 +00:00
|
|
|
end
|