From cfc221845c26e7030c90ff961dcf36086fabb960 Mon Sep 17 00:00:00 2001 From: samyou-softwire Date: Wed, 25 Feb 2026 14:15:02 +0000 Subject: [PATCH] =?UTF-8?q?CLDC-4164:=20Update=20purchase=20price=20minimu?= =?UTF-8?q?m=20to=20=C2=A315,000=20for=202026=20onwards?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/models/form/sales/questions/purchase_price.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/models/form/sales/questions/purchase_price.rb b/app/models/form/sales/questions/purchase_price.rb index d37d549ce..fbd3ea7a5 100644 --- a/app/models/form/sales/questions/purchase_price.rb +++ b/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 = "£"