From ace1407715cda951f633afb430f7822af0822715 Mon Sep 17 00:00:00 2001 From: inportb Date: Mon, 9 Dec 2024 23:11:03 -0500 Subject: [PATCH] Discharge summary report --- htdocs/RoutePatientReports.vue | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/htdocs/RoutePatientReports.vue b/htdocs/RoutePatientReports.vue index 170a5b8..3eb8964 100644 --- a/htdocs/RoutePatientReports.vue +++ b/htdocs/RoutePatientReports.vue @@ -211,6 +211,21 @@ loader: reportloader_chunk, enabled: true }, + { + name: 'Discharge', + rpt_id: 'OR_DS:DISCHARGE SUMMARY~TIUDCS;ORDV04;57;', + map: flow(f_parse_columns, function(x) { + var time = new Date(x[3]); + return { + time, + id: 'OR_DS:' + time.getTime() + ':' + x[2], + emblem: 'emblem-notes', + title: ['DISCHARGE SUMMARY', x[4], x[2], x[3]], + detail: escape_html(collapse_lines(x[7])) + }; + }), + loader: reportloader_chunk + }, { name: 'Labs', rpt_id: 'OR_OV_R:LAB OVERVIEW (COLLECTED SPECIMENS)~OV;ORDV02C;32;',