From 65761c0e99bf6272d9049367fcc7f8970c85c43a Mon Sep 17 00:00:00 2001 From: PotapovaA Date: Tue, 4 Aug 2026 13:31:19 +0300 Subject: [PATCH] =?UTF-8?q?=D0=BF=D1=80=D0=BE=D0=BF=D1=83=D1=89=D0=B5?= =?UTF-8?q?=D0=BD=D0=BD=D1=8B=D0=B9=20=D1=81=D1=82=D0=BE=D0=BB=D0=B1=D0=B5?= =?UTF-8?q?=D1=86=20+=20=D0=BF=D1=80=D0=B0=D0=B2=D0=BA=D0=B8=20=D0=B2=20?= =?UTF-8?q?=D1=81=D1=82=D0=B8=D0=BB=D0=B8=20=D1=8F=D1=87=D0=B5=D0=B9=D0=BA?= =?UTF-8?q?=D0=B8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../RealtimeTable/Cell/EditCell/EditCell.jsx | 3 +- .../RealtimeTable/constants/FORM_4/AHR.js | 41 +++++++++++++++++++ 2 files changed, 43 insertions(+), 1 deletion(-) diff --git a/web/src/components/RealtimeTable/Cell/EditCell/EditCell.jsx b/web/src/components/RealtimeTable/Cell/EditCell/EditCell.jsx index cae8b17..de0b35b 100644 --- a/web/src/components/RealtimeTable/Cell/EditCell/EditCell.jsx +++ b/web/src/components/RealtimeTable/Cell/EditCell/EditCell.jsx @@ -23,7 +23,8 @@ const FORMULA_INDICATOR_STYLES = { const TEXTAREA_STYLES = { width: '100%', - height: '3rem', + minHeight: '3rem', + height: 'auto', fieldSizing: 'content', fontSize: 'inherit', }; diff --git a/web/src/components/RealtimeTable/constants/FORM_4/AHR.js b/web/src/components/RealtimeTable/constants/FORM_4/AHR.js index ef99373..6b6b8f7 100644 --- a/web/src/components/RealtimeTable/constants/FORM_4/AHR.js +++ b/web/src/components/RealtimeTable/constants/FORM_4/AHR.js @@ -766,6 +766,9 @@ export const config = { color_type: greenColumn, accessorKey: "data.totals.fact_year", }, + "data.totals.fact_year": { + color_type: greenColumn, + }, }, columns: [ { @@ -3928,6 +3931,44 @@ export const config = { }, }, }, + + { + header: "Факт 2026", + accessorKey: "", + columns: [ + { + header: "", + accessorKey: "", + columns: [ + { + header: " ", + accessorKey: "data.totals.fact_year", + columnLetter: "HI", + size: 150, + filterFn: "contains", + muiTableHeadCellProps: { + sx: { + backgroundColor: "#C2D69B", + color: "#000000", + }, + }, + }, + ], + muiTableHeadCellProps: { + sx: { + backgroundColor: "#C2D69B", + color: "#000000", + }, + }, + }, + ], + muiTableHeadCellProps: { + sx: { + backgroundColor: "#C2D69B", + color: "#000000", + }, + }, + }, ], }, }; -- 2.47.2