From 2eab81888f52c31693a65310e77cdce8047395db Mon Sep 17 00:00:00 2001 From: vchikalkin Date: Fri, 12 Apr 2024 11:43:13 +0300 Subject: [PATCH] =?UTF-8?q?=D0=94=D0=BE=D0=B1=D0=B0=D0=B2=D0=B8=D1=82?= =?UTF-8?q?=D1=8C=20=D0=B2=20=D1=84=D0=B8=D0=BB=D1=8C=D1=82=D1=80=D0=B0?= =?UTF-8?q?=D1=86=D0=B8=D1=8E=20=D0=BF=D0=BE=D0=BB=D1=8F=20leaseObjectUseF?= =?UTF-8?q?or=20(=D0=B7=D0=B0=D0=BF=D1=83=D1=81=D0=BA=D0=B0=D0=B5=D1=82?= =?UTF-8?q?=D1=81=D1=8F=20=D0=BF=D1=80=D0=B8=20=D0=B8=D0=B7=D0=BC=D0=B5?= =?UTF-8?q?=D0=BD=D0=B5=D0=BD=D0=B8=D0=B8=20leaseObjectCategory),=20=D1=87?= =?UTF-8?q?=D1=82=D0=BE=20=D0=B7=D0=BD=D0=B0=D1=87=D0=B5=D0=BD=D0=B8=D0=B5?= =?UTF-8?q?=20"=D0=9F=D0=B5=D1=80=D0=B5=D0=B2=D0=BE=D0=B7=D0=BA=D0=B0=20?= =?UTF-8?q?=D0=BE=D0=BF=D0=B0=D1=81=D0=BD=D1=8B=D1=85=20=D0=B8=20=D0=BB?= =?UTF-8?q?=D0=B5=D0=B3=D0=BA=D0=BE=D0=B2=D0=BE=D1=81=D0=BF=D0=BB=D0=B0?= =?UTF-8?q?=D0=BC=D0=B5=D0=BD=D1=8F=D1=8E=D1=89=D0=B8=D1=85=D1=81=D1=8F=20?= =?UTF-8?q?=D0=B3=D1=80=D1=83=D0=B7=D0=BE=D0=B2"=20(100000020)=20=D0=BE?= =?UTF-8?q?=D1=82=D0=BE=D0=B1=D1=80=D0=B0=D0=B6=D0=B0=D0=B5=D1=82=D1=81?= =?UTF-8?q?=D1=8F=20=D0=B5=D1=81=D0=BB=D0=B8=20leaseObjectCategory=20=20?= =?UTF-8?q?=3D=20C=20100000002=20=D0=B8=D0=BB=D0=B8=20=D0=9F=D1=80=D0=B8?= =?UTF-8?q?=D1=86=D0=B5=D0=BF=20(=D0=95)=20100000004?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- apps/web/process/insurance/reactions.ts | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/apps/web/process/insurance/reactions.ts b/apps/web/process/insurance/reactions.ts index 63058e6..ce01731 100644 --- a/apps/web/process/insurance/reactions.ts +++ b/apps/web/process/insurance/reactions.ts @@ -68,6 +68,7 @@ export function common({ store, apolloClient }: ProcessContext) { selectLeaseObjectUseFor.filter((x) => [ 100_000_002, 100_000_004, 100_000_005, 100_000_006, 100_000_009, 100_000_010, + 100_000_020, ].includes(x.value) ) ); @@ -90,7 +91,9 @@ export function common({ store, apolloClient }: ProcessContext) { $calculation .element('selectLeaseObjectUseFor') .setOptions( - selectLeaseObjectUseFor.filter((x) => [100_000_002, 100_000_009].includes(x.value)) + selectLeaseObjectUseFor.filter((x) => + [100_000_002, 100_000_009, 100_000_020].includes(x.value) + ) ); break; }