cqframework / clinical_quality_language

Clinical Quality Language (CQL) is an HL7 specification for the expression of clinical knowledge that can be used within both the Clinical Decision Support (CDS) and Clinical Quality Measurement (CQM) domains. This repository contains complementary tooling in support of that specification.
https://confluence.hl7.org/display/CDS/Clinical+Quality+Language
Apache License 2.0
267 stars 123 forks source link

BaseTypeFhirConverter Does Not Support Long Cql Types #1453

Open jreyno77 opened 17 hours ago

jreyno77 commented 17 hours ago

isCqlType in BaseTypeFhirConverter does not check for Long:

if (value instanceof BigDecimal || value instanceof String || value instanceof Integer || value instanceof Boolean) { return true; }