diff --git a/frontend/hospital-portal/src/sections/dashboard/TableListReqLog.tsx b/frontend/hospital-portal/src/sections/dashboard/TableListReqLog.tsx index 4e11d427..aaabaf13 100644 --- a/frontend/hospital-portal/src/sections/dashboard/TableListReqLog.tsx +++ b/frontend/hospital-portal/src/sections/dashboard/TableListReqLog.tsx @@ -294,6 +294,12 @@ export default function TableList() { label: localeData.txtRequestCode, isSort: true, }, + { + id: 'log_type', + align: 'left', + label: localeData.txtLogType, + isSort: true, + }, { id: 'provider', align: 'left', @@ -318,6 +324,12 @@ export default function TableList() { label: localeData.txtStatus, isSort: true, }, + { + id: 'status_final_log', + align: 'center', + label: localeData.txtStatusFinalLog, + isSort: true, + }, { id: 'action', align: 'right', @@ -399,6 +411,34 @@ export default function TableList() { ...obj, provider:obj.provider, full_name:formatTitleCase(obj.full_name), + log_type: + obj.log_type === 'reference' ? ( + + ) : obj.log_type === 'prescription' ? ( + + ) : obj.log_type === 'consultation' ? ( + + ) : ( + + ), + status_final_log: + obj.final_log === 1 ? ( + + ) : ( + + ), status: obj.status === 'requested' ? (