From c863a01e0afed2493d2b6b1a11d8d33af89b4bab Mon Sep 17 00:00:00 2001 From: James Curtis Date: Mon, 13 Jul 2020 15:55:55 +0100 Subject: [PATCH] [FIX] Refused BG shouldn't show in refused kanban column Acutity board should only show patients that have refused NEWS obs in the refused column. Fixes #16518 --- nh_eobs_mental_health/sql/refused_observations.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nh_eobs_mental_health/sql/refused_observations.py b/nh_eobs_mental_health/sql/refused_observations.py index 71b5582b..c61e8247 100644 --- a/nh_eobs_mental_health/sql/refused_observations.py +++ b/nh_eobs_mental_health/sql/refused_observations.py @@ -134,7 +134,7 @@ def get_refused_wardboard(self, interval): 'LIMIT 1' ') ' 'THEN \'NoScore\' ' - 'WHEN (spell.refusing_obs = TRUE OR spell.refusing_obs_blood_glucose = TRUE)' + 'WHEN (spell.refusing_obs = TRUE)' 'THEN \'Refused\' ' )