Skip to content
JanaHej edited this page Sep 14, 2022 · 7 revisions

Samovysetření

Uživatelé, kteří se alespoň 1x vyšetřili

TODO overit spravne stavy WAITING_FOR_RESULT vs WAITING_FOR_CHECKUP

select a.id, a.sex, a.birthdate from selfexamination_record_aud r join account a on r.account_id = a.id where r.status = 'COMPLETED' or r.status = 'WAITING_FOR_RESULT' or r.status = 'WAITING_FOR_CHECKUP' group by a.id

Uživatelé, kteří si něco našli

select a.id, a.sex, a.birthdate from selfexamination_record_aud r join account a on r.account_id = a.id where r.RESULT = 'FINDING' group by a.id

Uživatelé, kteří si našli nález

select a.id, a.sex, a.birthdate from selfexamination_record_aud r join account a on r.account_id = a.id where r.RESULT = 'NOT_OK' group by a.id

TODO

pravidelně se vyšetřující uživatelé ...

Prohlídky

Seznam uživatelů, kteří si vytvořili alespoň 1 prohlídku (i zrušenou)

SELECT a.id, a.sex, a.birthdate FROM public.examination_record_aud ex join account a on ex.account_id = a.id where ex.first_exam='false' group by a.id order by a.id;

Seznam nově vytvořených prohlídek

SELECT a.id, a.sex, a.birthdate, ex.type, ex.status FROM public.examination_record ex join account a on ex.account_id = a.id where ex.first_exam='false' order by a.id;

Seznam aktualních uživatelů

SELECT id, sex, birthdate, points FROM public.account

Seznam uživatelů, kteří měli alespoň 1 prohlídku v onboardingu označenou jako "více než interval nebo nevím"

SELECT a.id, a.sex, a.birthdate FROM public.examination_record_aud ex join account a on ex.account_id = a.id where ex.first_exam='true' and ex.status = 'UNKNOWN' and ex.planned_date IS NULL group by a.id order by a.id;

Meeting notes

MVP documentation

Test scenarios

Scrum

Clone this wiki locally