From 5bdfd17f171415fe8919cdf059418ae2b7bb67b1 Mon Sep 17 00:00:00 2001 From: Chika Date: Mon, 17 Jan 2022 12:42:03 +0300 Subject: [PATCH] ELT(Kasko): selfIgnition updates --- .../Calculation/ELT/Content/Kasko/lib/composeRequest.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/client/Components/Calculation/ELT/Content/Kasko/lib/composeRequest.ts b/src/client/Components/Calculation/ELT/Content/Kasko/lib/composeRequest.ts index 6675a3a..aeb39c3 100644 --- a/src/client/Components/Calculation/ELT/Content/Kasko/lib/composeRequest.ts +++ b/src/client/Components/Calculation/ELT/Content/Kasko/lib/composeRequest.ts @@ -96,8 +96,8 @@ export default function (this: ICalculationStore) { notConfirmedGlassesDamagesSpecified = false, notConfirmedDamages, notConfirmedDamagesSpecified = false, - selfIgnition = false, - selfIgnitionSpecified = false, + selfIgnition, + selfIgnitionSpecified, outsideRoads, outsideRoadsSpecified = false; if ( @@ -109,8 +109,8 @@ export default function (this: ICalculationStore) { notConfirmedGlassesDamagesSpecified = true; notConfirmedDamages = 2; notConfirmedDamagesSpecified = true; - // selfIgnition = true; - selfIgnitionSpecified = true; + selfIgnition = true; + selfIgnitionSpecified = getSpecified(selfIgnition); outsideRoads = true; outsideRoadsSpecified = true; }