Browse Source

Fix a typo

pull/155/head
Kat 3 years ago
parent
commit
752a7c8f13
  1. 2
      app/models/validations/date_validations.rb

2
app/models/validations/date_validations.rb

@ -16,7 +16,7 @@ module Validations::DateValidations
def validate_property_void_date(record) def validate_property_void_date(record)
if record["property_void_date"].present? && record["startdate"].present? && record["startdate"].to_date - record["property_void_date"].to_date > 3650 if record["property_void_date"].present? && record["startdate"].present? && record["startdate"].to_date - record["property_void_date"].to_date > 3650
record.errors.add :property_void_date, "Void date cannot be more than 730 days before the tenancy start date" record.errors.add :property_void_date, "Void date cannot be more than 10 years before the tenancy start date"
end end
if record["property_void_date"].present? && record["startdate"].present? && record["startdate"].to_date < record["property_void_date"].to_date if record["property_void_date"].present? && record["startdate"].present? && record["startdate"].to_date < record["property_void_date"].to_date

Loading…
Cancel
Save