Discharge summary report

This commit is contained in:
Jiang Yio 2024-12-09 23:11:03 -05:00
parent 32de0bdd56
commit ace1407715

View File

@ -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;',