OHSUCMP / htnu18ig

Repository for Hypertension U18 grant's Implementation Guide
Apache License 2.0
2 stars 0 forks source link

New Counseling Procedures are not recognized #170

Closed aeyates closed 1 year ago

aeyates commented 1 year ago

Counseling procedures in COACH don't get recognized until "tomorrow" because we're comparing a datetime to a date:

if procedure.performed is not null then "Normalize Interval"(procedure.performed) ends 24 months or less before Today()

Change to:

if procedure.performed is not null then "Normalize Interval"(procedure.performed) ends 24 months or less before Now()