From c5bfab5e9a4b8242d6bc4984fdc20d9108e02155 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?hagjoon=28=EC=9D=B4=ED=95=99=EC=A4=80=29?= Date: Tue, 4 Oct 2022 11:44:38 +0900 Subject: [PATCH] =?UTF-8?q?=EB=B9=84=ED=96=89=EA=B3=84=ED=9A=8D=EC=84=9C?= =?UTF-8?q?=20=EC=8A=B9=EC=9D=B8=20-=20SUPER=20=EC=9D=BC=EA=B2=BD=EC=9A=B0?= =?UTF-8?q?=20=EB=AA=A8=EB=93=A0=20=EB=AA=A9=EB=A1=9D=20=EC=A1=B0=ED=9A=8C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../basis/flight/aprv/FlightPlanAprvContainer.js | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/src/containers/basis/flight/aprv/FlightPlanAprvContainer.js b/src/containers/basis/flight/aprv/FlightPlanAprvContainer.js index 56f285df..9905eedb 100644 --- a/src/containers/basis/flight/aprv/FlightPlanAprvContainer.js +++ b/src/containers/basis/flight/aprv/FlightPlanAprvContainer.js @@ -101,7 +101,11 @@ const FlightPlanAprvContainer = () => { param.cstmrSno = user.cstmrSno; param.groupId = groupId; // if (groupAuthCd === 'CREATER' || groupAuthCd === 'ADMIN') { - if (groupAuthCd === 'MASTER' || groupAuthCd === 'LEADER') { + if ( + groupAuthCd === 'MASTER' || + groupAuthCd === 'LEADER' || + user.authId === 'SUPER' + ) { dispatch( FlightAction.FLIGHT_PLAN_GROUP_SELECT({ cstmrSno: user.cstmrSno, @@ -173,7 +177,6 @@ const FlightPlanAprvContainer = () => { })); }; const handleChangeSelected = ({ selectedRows }) => { - console.log(selectedRows); setSelPlanSnoList(selectedRows?.map(item => item.planSno)); }; // const handleChangeCheckbox = (e, row) => {