A clinical rounds system that tracks CBC, LFT, KFT, serology for Dengue and Malaria, HRCT and CECT findings, and a full set of admission-versus-discharge vitals is not a data entry convenience. It is how a ward team maintains situational awareness when the consultant is not on the floor.
Most hospital wards run their morning rounds on handwritten entries that get transcribed to a digital system at some point before the shift ends — if the workload allows. By that point, the clinical picture has already been discussed in the ward corridor, decisions have been made, and the documentation is a retrospective account rather than a live record. The cost of that gap appears when the night resident is asked to evaluate a patient whose last documented vitals are eight hours old and whose creatinine trend is nowhere in the ward file.
The Architecture of a Bed Record
Each patient record anchors to a bed number — not a room or ward — because bed allocation is the ground-level operational reality in any high-volume tertiary unit. The primary diagnosis (dx1) and secondary diagnosis (dx2) sit at the top, alongside the presenting complaint, past history, family history, personal history, allergy flag, and reason for admission. These fields aren't clinical curiosity: they determine which labs get ordered, which imaging modules are relevant, and which serology panel to run.
The discharge field — No, Plan, Today — is the operational pivot of the entire record. Filtering by "Today" at the start of a shift shows the physician and the nursing coordinator exactly which patients need discharge paperwork, terminal medication orders, and handover summaries. Filtering by "Plan" shows which patients are in the pre-discharge window and which supporting documentation needs to be prepared.
Laboratory Architecture Across Three Embedded Panels
The CBC, LFT, and KFT fields are embedded arrays — each entry carries a date, so the record accumulates a longitudinal lab history rather than a single snapshot.
The CBC panel tracks HB, TLC, TPC, and PCV. The embedded JavaScript normalization script runs on every record modification, catching null and missing values in HB, TLC, and TPC before they propagate through downstream calculations. In a ward where the CBC is ordered daily for complex cases, a null HB value on day three creates a false downward trend in any plotting view. The script sets unrecorded values to zero rather than null, ensuring that trend analysis doesn't silently omit data points.
LFT carries bilirubin total, SGOT, SGPT, albumin, and globulin. In dengue and hepatitis presentations — both common in the SSMH patient population — the bilirubin and transaminase trend over three to five days is often the primary indicator of whether conservative management is holding or escalation is needed. An SGPT that climbs from 80 to 340 IU/L over 48 hours while bilirubin total tracks from 1.2 to 3.8 mg/dL is a clinical trajectory visible only if the data is recorded with date attribution at each entry.
KFT tracks sodium, potassium, calcium, urea, and creatinine. Rising creatinine alongside falling urine output in a dengue hemorrhagic fever case is the early warning signal for AKI. The KFT embedded array makes that rising trend visible without requiring manual comparison of lab results across different days in a paper file.
Serology and Imaging as Structured Modules
Six serology modules — NS1, Dengue serology, Typhidot, WIDAL, smear for malaria, malaria antigen — each use a fault tree structure that captures both the test result and its clinical interpretation as linked data. In tropical medicine wards handling concurrent dengue and malaria seasons, knowing which serologies are pending versus completed versus negative is operationally critical for isolation decisions.
Eight imaging modules — USG whole abdomen, HRCT chest, CECT chest, NCCT head, MRI brain, CEMRI brain, xray chest, xray c-spine/LS spine — each carry a date and a structured report field. Dating the imaging report allows the physician to see whether a pleural effusion noted on x-ray chest three days ago has expanded or resolved on the current HRCT, without hunting through paper radiology reports filed in different sections of the case record.
The admission-to-discharge vital sign comparison — heart rate, respiratory rate, temperature, BP, SpO2 — with parallel fields at both timepoints is not a discharge summary feature. It's the quality data that gets reviewed at M&M when a patient who was discharged with a heart rate of 98 returns to casualty twelve hours later in AVPU deterioration.