Skip to main content

Platform features

Clinical care, a full health-ERP suite, and a platform-extensibility layer. 30+ bounded-context modules. One coherent platform with provably clean architecture.

Theme A — Clinical Foundation

Clinical depth for every encounter

Structured SOAP notes with AI dictation, clinical decision support (CDS) hooks, co-sign and attestation workflows, problem list, allergy management, and referrals. Built for the realities of high-throughput clinical practice — fast key-path entry, not form-filling.

  • SOAP editor + AI dictation
  • Co-sign + attestation
  • CDS hooks (evidence-linked)
  • Problem list + allergies
  • Orders (CPOE)
  • Referrals + care plans

Theme B — Inpatient & Perioperative

Inpatient care from admission to discharge

Ward management, ICU workbench, theatre and OT scheduling, medication administration record (MAR), nursing care plans, discharge summaries, and mortuary management. Every bed-side event flows into the audit trail automatically.

  • Ward + ICU management
  • Theatre / OT scheduling
  • MAR + nursing care plans
  • Discharge summaries
  • Housekeeping workflows
  • Mortuary management

Theme C — Pharmacy & Blood Bank

Pharmacy and blood bank, fully integrated

Stock management, procurement (PO + GRN), dispense, controlled drugs register, expiry alerts, supplier management, and returns. Blood bank includes donor management, crossmatch, issue, transfusion monitoring, adverse reaction capture, and serology.

  • Dispense + formulary
  • Controlled drugs register
  • Blood bank + crossmatch
  • Transfusion monitoring
  • Procurement + suppliers
  • Expiry + returns

Theme D — Revenue & Insurance

Revenue cycle designed for multi-payer realities

Charges, estimates, packages, invoicing, payments, patient wallet, insurance and claims management, government scheme sponsors, and accounts receivable. Built for multi-currency, multi-region payer contracts without requiring a separate RCM system. Revenue postings flow straight into the general ledger (see the financial/ERP theme below).

  • Charges + estimates
  • Insurance + claims
  • Govt scheme sponsors
  • Patient wallet
  • Invoicing + A/R
  • Multi-currency support

Theme E — Operations & Workforce

Administrative and workforce management in one platform

Universal search (Ctrl-K), reception workflows, patient registration, employee management, ATS recruitment, attendance and leave, payroll integration, performance management, and exit processing. No separate HR system required.

  • Universal search (Ctrl-K)
  • Reception + registration
  • Employee management + ATS
  • Attendance + leave
  • Payroll integration
  • Performance + training

Theme F — Telehealth & Engagement

Telehealth and patient engagement, natively integrated

Synchronous video sessions (WebRTC via LiveKit), async messaging, multi-party consultations, e-prescribing, remote patient monitoring (RPM), and session recording. Patient portal with self-scheduling, reminders, education, record access, proxy access, and kiosk check-in.

  • Video sessions (WebRTC)
  • Async + multi-party
  • RPM + e-prescribing
  • Patient portal
  • Self-scheduling + kiosk
  • Reminders + education

Theme G — Interoperability & AI

Interoperability and AI as first-class citizens

FHIR R5 and HL7v2 adapters, SMART on FHIR, ABHA identity (India), public health reporting, wearables and IoMT device integration. AI gateway with BYOK (Anthropic / OpenAI / Gemini / any OpenAI-compatible endpoint), Ollama self-hosted default, RAG, eval harness, safety guardrails, and PHI redaction.

  • FHIR R5 + HL7v2
  • SMART on FHIR
  • ABHA / national identity
  • AI gateway (BYOK + Ollama)
  • RAG + eval harness
  • PHI redaction by default

Theme H — Analytics & Compliance

Analytics, quality measures, and compliance reporting

Operational dashboards, financial analytics, HEDIS / NABH / JCI quality measures, projections, and exports. Compliance reports with audit trails meeting HIPAA, GDPR, DPDP, and NABH requirements. Lab TAT, financial reconciliation, and staff productivity reports ship out of the box.

  • HEDIS / NABH / JCI measures
  • Operational dashboards
  • Financial analytics
  • Lab TAT + productivity
  • Audit trail exports
  • Projection modelling

Theme I — Financial / ERP suite

Clinical and financial in one record

A full health-ERP suite runs on the same platform as the clinical record. A double-entry general ledger with maker/checker approval sits at the centre; operational sub-ledgers — revenue, pharmacy, supply chain — post to it automatically. Procure-to-pay runs requisition → purchase order → goods receipt → supplier invoice with three-way match before accounts payable settles. Budgeting tracks encumbrance (annual − committed − actual), and a fixed-asset register handles straight-line depreciation. Stock-on-hand is fed directly by goods receipts.

  • Double-entry GL + maker/checker
  • Auto-posting sub-ledgers
  • Procure-to-pay (three-way match)
  • Accounts payable
  • Budgeting + encumbrance
  • Fixed assets + depreciation

Theme J — Platform & Extensibility

A platform you can extend, not just configure

Beyond the clinical and financial cores, Healthplex ships a platform-services layer: an enterprise master patient index (EMPI) with duplicate matching and steward merge, multi-region data-residency control (policy + placement + resolver), a no-code form and workflow builder, predictive operations forecasting, a governed federated-AI model registry with promotion gates and inference audit, and voice-first ambient clinical dictation. An emerging extension framework lets capabilities be published, versioned, and installed with scoped entitlements.

  • Enterprise MPI + steward merge
  • Data-residency control
  • No-code form & workflow builder
  • Predictive operations
  • Federated-AI model registry
  • Ambient dictation + extensions

Theme K — Specialty Workbenches

Specialty workbenches over generic chart views

A cardiologist sees the heart; a pulmonologist sees the lungs. Purpose-built workbenches — driven by live, signal-based telemetry — span cardiology, pulmonology, nephrology, obstetrics, oncology, neurology, pediatrics, and dialysis. Behavioral health is 42 CFR Part 2-aware for substance-use confidentiality. Each is a first-class module on the same data plane, not a bolted-on view.

  • Cardiology + pulmonology
  • Nephrology + dialysis
  • Obstetrics + pediatrics
  • Oncology + neurology
  • Behavioral health (42 CFR Part 2)
  • Live signal-driven telemetry

Built with engineering discipline

These are the non-negotiable rules that govern every line of Healthplex code. They are checked by CI on every pull request. No exceptions.

  1. No backend code in frontend. No frontend code in backend. Bounded contexts are sacred.
  2. Cross-module calls go through events or published API packages only. Spring Modulith verifies this.
  3. No any in TypeScript. Use unknown and type-narrow.
  4. No Object parameters in public Java APIs. NullAway enforces null-safety.
  5. Every PHI-touching change requires a test.
  6. Migrations are forward-only using Flyway.
  7. Audit log every read of PHI.
  8. Tenant isolation is non-negotiable. Every query carries org_id.
  9. AI calls go through the ai/ module gateway.
  10. Feature flags wrap every new capability. Kill switches matter.
  11. Region-aware: every PHI-touching layer respects the active compliance profile.
  12. PWA from day one — every app has manifest + service worker.
  13. Performance budgets fail CI. Fix the cause; never raise the budget.
  14. OnPush change detection on every component.
  15. Standalone Angular components only. No NgModules.
  16. No HTTP retry on POST without Idempotency-Key.
  17. Tokens in HttpOnly cookies, never localStorage.
  18. Live bedside telemetry is always available to the responsible doctor.
  19. Specialty workbenches over generic chart views.

See how it fits your health system.

Join clinical teams across multiple regions who rely on Healthplex for modular, secure, AI-native EHR workflows.