diff --git a/src/client/stores/CalculationStore/Effects/reactions/tablesReactions.ts b/src/client/stores/CalculationStore/Effects/reactions/tablesReactions.ts index b7e24bb..91f1adf 100644 --- a/src/client/stores/CalculationStore/Effects/reactions/tablesReactions.ts +++ b/src/client/stores/CalculationStore/Effects/reactions/tablesReactions.ts @@ -881,10 +881,25 @@ export default [ )({ insuranceCompany: { filter: leasingWithoutKasko - ? pipe( - insuranceOsagoDefaultFilter, - options => options.evo_evokasko_access === true, - ) + ? options => + options.filter( + pipe( + x => { + if ( + x.evo_type_ins_policy && + x.evo_type_ins_policy.includes(100000001) + ) { + return x; + } + }, + + x => { + if (x?.evo_evokasko_access === true) { + return x; + } + }, + ), + ) : insuranceOsagoDefaultFilter, value: isTrailer ? null : undefined, status: ElementStatus.Default,