Browse Source

add compound validation for bedsit

CLDC-858-validate-beds
Ted-U 2 years ago
parent
commit
29a2087daa
  1. 8
      app/models/validations/sales_validations.rb

8
app/models/validations/sales_validations.rb

@ -6,6 +6,14 @@ module Validations::SalesValidations
# Integer(record.offered_before_type_cast)
if record.beds.present? && !record.beds.to_i.between?(1, 9)
record.errors.add :beds, "Number of bedrooms must be between 1 and 9"
end
end
def validate_beds_proptype(record)
# Integer(record.offered_before_type_cast)
if record.beds.present? && record.beds.to_i != 1 && record.proptype == 2
record.errors.add :beds, "A bedsit can not have more than 1 bedroom"
record.errors.add :proptype, "A bedsit can not have more than 1 bedroom"
end
end
end

Loading…
Cancel
Save