You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
618 B
15 lines
618 B
2 years ago
|
module Validations::Sales::FinancialValidations
|
||
|
# Validations methods need to be called 'validate_<page_name>' to run on model save
|
||
|
# or 'validate_' to run on submit as well
|
||
|
|
||
|
def validate_income1(record)
|
||
|
if record.ecstat1 && record.income1 && record.ownershipsch == 1
|
||
|
if record.london_property?
|
||
|
record.errors.add :income1, I18n.t("validations.financial.income1.over_hard_max", hard_max: 90_000) if record.income1 > 90_000
|
||
|
elsif record.income1 > 80_000
|
||
|
record.errors.add :income1, I18n.t("validations.financial.income1.over_hard_max", hard_max: 80_000)
|
||
|
end
|
||
|
end
|
||
|
end
|
||
|
end
|