diff --git a/src/client/stores/CalculationStore/Effects/reactions/loadKpReaction/index.ts b/src/client/stores/CalculationStore/Effects/reactions/loadKpReaction/index.ts index fb51a95..276de1c 100644 --- a/src/client/stores/CalculationStore/Effects/reactions/loadKpReaction/index.ts +++ b/src/client/stores/CalculationStore/Effects/reactions/loadKpReaction/index.ts @@ -362,6 +362,12 @@ const loadKpReaction: IReactionEffect = calculationStore => ({ const quoteValue = get(quote, quoteFieldName); if (!isNil(quoteValue)) row[rowFieldName] = quoteValue; }); + + //fix with Serega + row['evo_id_elt_osago'] = quote.evo_id_elt_osago + ? parseInt(quote.evo_id_elt_osago) + : undefined; + if ( Object.keys(mapQuoteToELTOsago).length === Object.keys(row).length