You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"SELECT tCOM.id as completion_id, tCOM.datetime as response_date, tQUIZ.title as algorithm_name, tUA.answer_text as study_id, tCOM.snapshot as soap_note
252
+
"SELECT tCOM.id as completion_id, tCOM.datetime as response_date, tQUIZ.title as topic_name, tUA.answer_text as study_id, tCOM.snapshot as soap_note
251
253
FROM ".CHAINED_QUIZZES." tQUIZ
252
254
JOIN ".CHAINED_COMPLETED." tCOM
253
255
JOIN ".CHAINED_QUESTIONS." tQUES
254
256
JOIN ".CHAINED_USER_ANSWERS." tUA
255
-
WHERE tQUIZ.id IN ($algorithm_ids)
257
+
WHERE tQUIZ.id IN ($topic_ids)
256
258
AND tQUIZ.id = tCOM.quiz_id
257
259
AND tQUIZ.id = tQUES.quiz_id
258
260
AND tQUES.id = tUA.question_id
@@ -272,11 +274,11 @@ static function define_dir($col, $ob, $dir) {
272
274
elsereturn'asc';
273
275
}
274
276
275
-
// Captures feedback for a triage algorithm post-submission.
0 commit comments