fix:
No SOFA trend chart or organ-system timeline No GCS trend chart or component history No qSOFA history view
This commit is contained in:
@@ -39,7 +39,11 @@ public class QsofaController : ControllerBase
|
||||
var page = await _qsofa.GetHistoryAsync(encounterId, limit, cursor);
|
||||
return Ok(ApiResponse<object>.Ok(new
|
||||
{
|
||||
items = page.Items,
|
||||
items = page.Items.Select(e => new QsofaHistoryResponse(
|
||||
e.ActiveCriteria,
|
||||
QsofaCalculator.ParseCriteriaState(e),
|
||||
e.ScreenAlertFired,
|
||||
e.EvaluatedAt)),
|
||||
nextCursor = page.NextCursor,
|
||||
hasMore = page.HasMore
|
||||
}));
|
||||
|
||||
Reference in New Issue
Block a user