diff --git a/apps/web/process/insurance/reactions.ts b/apps/web/process/insurance/reactions.ts index bdda8e3..9f40499 100644 --- a/apps/web/process/insurance/reactions.ts +++ b/apps/web/process/insurance/reactions.ts @@ -330,7 +330,11 @@ export function common({ store, apolloClient }: ProcessContext) { query: CRMTypes.GetInsuranceCompaniesDocument, }); - if (evo_leasingobject_type?.evo_id === '9' && maxSpeed < 20) { + if ( + evo_leasingobject_type?.evo_id && + ['9', '6', '10'].includes(evo_leasingobject_type.evo_id) && + maxSpeed < 20 + ) { const otherInsuranceCompany = accounts?.find( (x) => x?.evo_type_ins_policy === null && x.label?.includes('ПРОЧИЕ') );