|
|
|
@ -106,18 +106,18 @@ class CaseLogValidator < ActiveModel::Validator
|
|
|
|
|
end |
|
|
|
|
|
|
|
|
|
def validate_shared_housing_rooms(record) |
|
|
|
|
number_of_tenants = people_in_household(record) |
|
|
|
|
|
|
|
|
|
unless record.property_unit_type.nil? |
|
|
|
|
if record.property_unit_type == "Bed-sit" && record.property_number_of_bedrooms != 1 |
|
|
|
|
record.errors.add :property_unit_type, "A bedsit can only have one bedroom" |
|
|
|
|
end |
|
|
|
|
|
|
|
|
|
if people_in_household(record) > 1 |
|
|
|
|
unless record.household_number_of_other_members.nil? |
|
|
|
|
if record.household_number_of_other_members > 0 |
|
|
|
|
if record.property_unit_type.include?("Shared") && (record.property_number_of_bedrooms.to_i == 0 || record.property_number_of_bedrooms.to_i > 7) |
|
|
|
|
record.errors.add :property_unit_type, "A shared house must have 1 to 7 bedrooms" |
|
|
|
|
end |
|
|
|
|
end |
|
|
|
|
end |
|
|
|
|
|
|
|
|
|
if record.property_unit_type.include?("Shared") && (record.property_number_of_bedrooms.to_i == 0 || record.property_number_of_bedrooms.to_i > 3) |
|
|
|
|
record.errors.add :property_unit_type, "A shared house with less than two tenants must have 1 to 3 bedrooms" |
|
|
|
@ -163,15 +163,6 @@ private
|
|
|
|
|
record["person_#{n}_gender"] == "Female" && record["person_#{n}_age"] >= 16 && record["person_#{n}_age"] <= 50 |
|
|
|
|
end |
|
|
|
|
end |
|
|
|
|
|
|
|
|
|
def people_in_household(record) |
|
|
|
|
count = 0 |
|
|
|
|
(1..8).any? do |n| |
|
|
|
|
next if record["person_#{n}_gender"].nil? || record["person_#{n}_age"].nil? |
|
|
|
|
count += 1 |
|
|
|
|
end |
|
|
|
|
return count |
|
|
|
|
end |
|
|
|
|
end |
|
|
|
|
|
|
|
|
|
class CaseLog < ApplicationRecord |
|
|
|
|