1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106
|
-- ==============================================================
-- GNUmed database schema change script
--
-- Source database version: v6
-- Target database version: v7
--
-- License: GPL v2 or later
-- Author: Karsten Hilbert
--
-- ==============================================================
-- $Id: cfg-report_query.sql,v 1.3 2007-09-20 21:30:52 ncq Exp $
-- $Revision: 1.3 $
-- --------------------------------------------------------------
\set ON_ERROR_STOP 1
-- --------------------------------------------------------------
delete from cfg.report_query where label = 'phone list (GNUmed)';
insert into cfg.report_query (label, cmd) values (
'phone list (GNUmed)',
'select
p.lastnames || '', '' || p.firstnames as name,
p.preferred as preferred_name,
c.url as number,
p.pk_identity as pk_patient
from
dem.v_basic_person p,
dem.v_person_comms c
where
c.pk_identity = p.pk_identity
order by
lastnames, firstnames'
);
delete from cfg.report_query where label = 'Tagesliste (GNUmed)';
insert into cfg.report_query (label, cmd) values (
'Tagesliste (GNUmed)',
'select
date_trunc(''minute'', clin_when) as when,
narrative,
pk_patient
from
clin.v_emr_journal
where
pk_encounter in (
-- ecnounters in range:
select pk_encounter from
clin.v_pat_encounters
where
started between dem.date_trunc_utc(''day'', now()) and now()
)
and modified_by like ''%'' || current_user || ''%''
order by clin_when'
);
delete from cfg.report_query where label = 'Happy Birthday list (1 week back and forth from today)';
insert into cfg.report_query (label, cmd) values (
'Happy Birthday list (1 week back and forth from today)',
'select
to_char(p.dob, ''DD.TMMonth'') as birthday,
extract(year from age(dob) - ''10 days''::interval) as age,
p.lastnames || '', '' || p.firstnames as name,
p.preferred as preferred_name,
p.pk_identity as pk_patient
from
dem.v_basic_person p
where
dem.dob_is_in_range(p.dob, ''1 week''::interval, ''1 week''::interval) is True
order by
dob,
name
');
-- --------------------------------------------------------------
grant update, insert, delete on cfg.db_logon_banner to group "gm-doctors";
-- --------------------------------------------------------------
select gm.log_script_insertion('$RCSfile: cfg-report_query.sql,v $', '$Revision: 1.3 $');
-- ==============================================================
-- $Log: cfg-report_query.sql,v $
-- Revision 1.3 2007-09-20 21:30:52 ncq
-- - grants for cfg.db_logon_banner
--
-- Revision 1.2 2007/09/10 13:49:32 ncq
-- - add birthday list report
--
-- Revision 1.1 2007/08/24 15:59:57 ncq
-- - fix example queries to allow for patient callup
--
-- Revision 1.3 2007/05/07 16:33:06 ncq
-- - log_script_insertion() now in gm.
--
-- Revision 1.2 2007/04/21 19:42:43 ncq
-- - add phone list and daily work list reports
--
-- Revision 1.1 2007/04/07 22:30:36 ncq
-- - factored out dynamic part
--
-- Revision 1.1 2007/04/06 23:10:54 ncq
-- - store data mining queries
--
--
|