Submit social housing lettings and sales data (CORE)
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.
 
 
 
 

24 lines
532 B

class Form::Sales::Questions::PropertyPostcode < ::Form::Question
def initialize(id, hsh, page)
super
@id = "pcodenk"
@check_answer_label = "Postcode"
@header = "Do you know the property's postcode?"
@hint_text = ""
@type = "radio"
@answer_options = ANSWER_OPTIONS
@width = 10
@page = page
@conditional_for = {
"postcode_full" => [0],
}
end
ANSWER_OPTIONS = {
"0" => { "value" => "Yes" },
"1" => { "value" => "No" },
}.freeze
end
#"sales-log-postcode-full-field"