Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add support for additional data during CQL evaluation #2420

Merged
merged 20 commits into from
Mar 22, 2024
Merged
Show file tree
Hide file tree
Changes from 4 commits
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright 2022-2023 Google LLC
* Copyright 2022-2024 Google LLC
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand Down Expand Up @@ -32,6 +32,7 @@ object XMLAssert {
DocumentBuilderFactoryImpl(), // Overrides the incomplete default DocumentBuilderFactory
)
.checkForSimilar()
.ignoreWhitespace()
.build()

assertWithMessage(diff.fullDescription()).that(diff.hasDifferences()).isFalse()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,3 +19,9 @@ define "GetSingleDose":
where exists(I.protocolApplied)
and exists(I.protocolApplied.doseNumber.value)
and not exists(I.protocolApplied.seriesDoses.value)

define "GetFinalDoseWithLocationData":
[Immunization] I
with [Location] L
such that I.location.reference.value = 'Location/'+ L.id
and I.protocolApplied.doseNumber.value = I.protocolApplied.seriesDoses.value
Loading
Loading