No Reference Object
def self.skip?(calfresh_application)
!calfresh_application.multi_county_zip?
end
def self.skip?(calfresh_application)
calfresh_application.in_supported_county?
end
def self.skip?(_)
true
end
def self.skip?(_)
true
end
def self.skip?(_)
true
end
def self.skip?(calfresh_application)
eligible_household_size = calfresh_application.eligible_household_size || calfresh_application.household_size || 0
!calfresh_application.student? || eligible_household_size == 1 || calfresh_application.ssi?
end
def self.skip?(calfresh_application)
not_in_treatment = VanityDispatcher.get_treatment_group(experiment_id: :multiple_jobs_experiment, vanity_id: calfresh_application.vanity_id) != :multiple_jobs
not_in_treatment || !calfresh_application.has_earned_income? || calfresh_application.household_size == 1
end
def self.skip?(calfresh_application)
not_in_treatment = VanityDispatcher.get_treatment_group(experiment_id: :multiple_jobs_experiment, vanity_id: calfresh_application.vanity_id) != :multiple_jobs
!calfresh_application.has_earned_income? || not_in_treatment
end
def self.skip?(calfresh_application)
not_in_treatment = VanityDispatcher.get_treatment_group(experiment_id: :multiple_jobs_experiment, vanity_id: calfresh_application.vanity_id) != :multiple_jobs
!calfresh_application.has_earned_income? || not_in_treatment
end
def self.skip?(calfresh_application)
not_in_treatment = VanityDispatcher.get_treatment_group(experiment_id: :multiple_jobs_experiment, vanity_id: calfresh_application.vanity_id) != :multiple_jobs
!calfresh_application.has_earned_income? || not_in_treatment
end
def self.skip?(calfresh_application)
return true if VanityDispatcher.get_treatment_group(experiment_id: :multiple_jobs_experiment, vanity_id: calfresh_application.vanity_id) == :multiple_jobs
!calfresh_application.has_earned_income? || calfresh_application.number_of_jobs != 1
end
def self.skip?(calfresh_application)
return true if VanityDispatcher.get_treatment_group(experiment_id: :multiple_jobs_experiment, vanity_id: calfresh_application.vanity_id) == :multiple_jobs
return true unless calfresh_application.has_earned_income?
calfresh_application.exact_earned_income_amount.present? || calfresh_application.hourly_wage.present?
end
def self.skip?(calfresh_application)
return true if VanityDispatcher.get_treatment_group(experiment_id: :multiple_jobs_experiment, vanity_id: calfresh_application.vanity_id) == :multiple_jobs
!calfresh_application.has_earned_income? || calfresh_application.number_of_jobs.nil?
end
def self.skip?(calfresh_application)
calfresh_application.ssi? && calfresh_application.ssi_only_household?
end
def self.skip?(calfresh_application)
calfresh_application.additional_members.none?
end
def self.skip?(calfresh_application)
return true unless calfresh_application.has_earned_income?
return true unless calfresh_application.number_of_jobs == 1
calfresh_application.estimated_earned_income_amount.present? || calfresh_application.exact_earned_income_amount.present?
end