Browse Source

CLDC-4164: Update purchase price minimum to £15,000 for 2026 onwards

pull/3197/head
samyou-softwire 3 weeks ago
parent
commit
cfc221845c
  1. 2
      app/models/form/sales/questions/purchase_price.rb

2
app/models/form/sales/questions/purchase_price.rb

@ -3,7 +3,7 @@ class Form::Sales::Questions::PurchasePrice < ::Form::Question
super(id, hsh, page)
@id = "value"
@type = "numeric"
@min = 0
@min = form.start_year_2026_or_later? ? 15_000 : 0
@step = 0.01
@width = 5
@prefix = "£"

Loading…
Cancel
Save