class Form::Sales::Questions::Discount < ::Form::Question def initialize(id, hsh, page) super @id = "discount" @type = "numeric" @min = 0 @max = form.start_year_2024_or_later? ? 70 : 100 @step = 0.1 @width = 5 @suffix = "%" @question_number = get_question_number_from_hash(QUESTION_NUMBER_FROM_YEAR) @top_guidance_partial = "financial_calculations_discounted_ownership" end QUESTION_NUMBER_FROM_YEAR = { 2023 => 102, 2024 => 103, 2025 => 105, 2026 => 115 }.freeze end