From de2a481bbeb2f6475cbab031d88c2bedb3e3c77f Mon Sep 17 00:00:00 2001 From: Tb Fajri Date: Wed, 16 Oct 2024 10:38:05 +0700 Subject: [PATCH 1/3] update --- .../dashboard/src/pages/CustomerService/FinalLog/List.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/frontend/dashboard/src/pages/CustomerService/FinalLog/List.tsx b/frontend/dashboard/src/pages/CustomerService/FinalLog/List.tsx index c0dfa475..029340a2 100755 --- a/frontend/dashboard/src/pages/CustomerService/FinalLog/List.tsx +++ b/frontend/dashboard/src/pages/CustomerService/FinalLog/List.tsx @@ -464,7 +464,7 @@ export default function List() { {row.files_by_type?.final_log_diagnosis?.length > 0 && ( <>
@@ -473,7 +473,7 @@ export default function List() { {row.files_by_type?.final_log_kondisi?.length > 0 && ( <>
@@ -481,7 +481,7 @@ export default function List() { {row.files_by_type?.final_log_result?.length > 0 && ( )} From 0ab8ec85d32bd156353e075df05ec75410be9710 Mon Sep 17 00:00:00 2001 From: Tb Fajri Date: Wed, 16 Oct 2024 10:52:29 +0700 Subject: [PATCH 2/3] filter dan flag file di inpatient monitoring --- .../InpatientMonitoring/List.tsx | 89 +++++++++++++++++-- 1 file changed, 80 insertions(+), 9 deletions(-) diff --git a/frontend/dashboard/src/pages/CaseManagement/InpatientMonitoring/List.tsx b/frontend/dashboard/src/pages/CaseManagement/InpatientMonitoring/List.tsx index 028a10af..6567af1d 100755 --- a/frontend/dashboard/src/pages/CaseManagement/InpatientMonitoring/List.tsx +++ b/frontend/dashboard/src/pages/CaseManagement/InpatientMonitoring/List.tsx @@ -15,9 +15,12 @@ import { Stack, Menu, ButtonGroup, + FormControl, + Select, Link, Chip, TableHead, + InputLabel, Grid, } from '@mui/material'; import KeyboardArrowDownIcon from '@mui/icons-material/KeyboardArrowDown'; @@ -61,6 +64,13 @@ export default function List() { const navigate = useNavigate() + const fileOptions = { + kondisi: 'Dokumen Billing', + diagnosa: 'Dokumen Diagnosa', + result: 'Dokumen Penduk Medis', + none: 'Belum ada Dokumen' + }; + function SearchInput(props: any) { // SEARCH const searchInput = useRef(null); @@ -199,15 +209,48 @@ export default function List() { /> {!currentImportFileName && ( - - + + + + + + File + + + + + + {row.service_name} {row.payment_type_name} + + {row.files_by_type?.final_log_diagnosis?.length > 0 && ( + <> + +
+ + )} + + {row.files_by_type?.final_log_kondisi?.length > 0 && ( + <> + +
+ + )} + + {row.files_by_type?.final_log_result?.length > 0 && ( + + )} +
{ row.status_final_log == "requested" ? () : @@ -500,6 +568,9 @@ export default function List() { Claim Method + + File Upload + Status From 2bbbbc8fefc873a8a596a344ee70998b54d9b908 Mon Sep 17 00:00:00 2001 From: Tb Fajri Date: Wed, 16 Oct 2024 10:53:02 +0700 Subject: [PATCH 3/3] update --- frontend/dashboard/src/pages/CustomerService/FinalLog/List.tsx | 1 - 1 file changed, 1 deletion(-) diff --git a/frontend/dashboard/src/pages/CustomerService/FinalLog/List.tsx b/frontend/dashboard/src/pages/CustomerService/FinalLog/List.tsx index 029340a2..2785b43c 100755 --- a/frontend/dashboard/src/pages/CustomerService/FinalLog/List.tsx +++ b/frontend/dashboard/src/pages/CustomerService/FinalLog/List.tsx @@ -241,7 +241,6 @@ export default function List() { -