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
551 B
15 lines
551 B
2 years ago
|
class Form::Lettings::Questions::PpostcodeFull < ::Form::Question
|
||
|
def initialize(id, hsh, page)
|
||
|
super
|
||
|
@id = "ppostcode_full"
|
||
|
@check_answer_label = "Postcode of household’s last settled accommodation"
|
||
|
@header = "Postcode for the previous accommodation"
|
||
|
@type = "text"
|
||
|
@width = 5
|
||
|
@inferred_check_answers_value = [{ "condition" => { "ppcodenk" => 0 }, "value" => "Not known" }]
|
||
|
@check_answers_card_number = 0
|
||
|
@hint_text = ""
|
||
|
@inferred_answers = { "prevloc" => { "is_previous_la_inferred" => true } }
|
||
|
end
|
||
|
end
|