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
|
-- ==============================================================
-- GNUmed database schema change script
--
-- License: GPL v2 or later
-- Author: Karsten Hilbert
--
-- ==============================================================
\set ON_ERROR_STOP 1
--set default_transaction_read_only to off;
-- --------------------------------------------------------------
drop view if exists clin.v_edc_journal cascade;
create view clin.v_edc_journal as
select
c_p.fk_identity
as pk_patient,
c_p.modified_when
as modified_when,
c_p.modified_when
as clin_when,
coalesce (
(select short_alias from dem.staff where db_user = c_p.modified_by),
'<' || c_p.modified_by || '>'
)
as modified_by,
's'::text
as soap_cat,
_('EDC') || to_char(c_p.edc, ': YYYY Mon DD')
as narrative,
(
select c_e.pk
from clin.encounter c_e
where c_e.fk_patient = c_p.fk_identity
order by started desc
limit 1
)
as pk_encounter,
null::integer
as pk_episode,
null::integer
as pk_health_issue,
c_p.pk
as src_pk,
'clin.patient'::text
as src_table,
c_p.row_version
as row_version,
-- issue
null::text
as health_issue,
null::text
as issue_laterality,
null::boolean
as issue_active,
null::boolean
as issue_clinically_relevant,
null::boolean
as issue_confidential,
-- episode
null::text
as episode,
null::boolean
as episode_open,
-- encounter
null::timestamp with time zone
as encounter_started,
null::timestamp with time zone
as encounter_last_affirmed,
null::text
as encounter_type,
null::text
as encounter_l10n_type
from
clin.patient c_p
where
c_p.edc is not NULL
;
grant select on clin.v_edc_journal to group "gm-doctors";
-- --------------------------------------------------------------
select i18n.upd_tx('de', 'EDC', 'Geburtstermin');
-- --------------------------------------------------------------
select gm.log_script_insertion('v21-clin-v_edc_journal.sql', '21.0');
|