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

Bug: Measure Report period setting timezone offset #497

Closed
Capt-Mac opened this issue Aug 12, 2024 · 0 comments · Fixed by #496
Closed

Bug: Measure Report period setting timezone offset #497

Capt-Mac opened this issue Aug 12, 2024 · 0 comments · Fixed by #496
Assignees
Labels
bug Something isn't working dQM

Comments

@Capt-Mac
Copy link
Contributor

When running $evaluate-measure with default CQL measurement period or using periodStart & periodEnd parameters, the output Measure Report would persist an offset DateTime value for the period, which differs from input parameters.

Steps:

  1. post a quality measure bundle to a fhir server, where the embedded cql contains a default DateTime measurement period [2020-01-01T00:00:00, 2020-12-31T12:59:59.9].
  2. execute $evaluate-measure?periodStart=2020-01-01T00:00:00&periodEnd=2020-12-31T12:59:59.9 or leave parameters empty for measurementPeriod to rely on the default parameter values
  3. the operation responds with a Measure Report resource where MeasureReport.period persists offset values.

Observed Results:

"period": {
        "start": "2020-01-01T00:00:00-07:00",
        "end": "2020-12-31T23:59:59-07:00"
    }

Expected Results:

"period": {
        "start": "2020-01-01T00:00:00",
        "end": "2020-12-31T23:59:59"
    }
@Capt-Mac Capt-Mac added bug Something isn't working dQM labels Aug 12, 2024
@Capt-Mac Capt-Mac self-assigned this Aug 12, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working dQM
Projects
None yet
Development

Successfully merging a pull request may close this issue.

1 participant