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
|
-- ==============================================================
-- GNUmed database schema change script
--
-- License: GPL v2 or later
-- Author: karsten.hilbert@gmx.net
--
-- ==============================================================
\set ON_ERROR_STOP 1
-- --------------------------------------------------------------
\unset ON_ERROR_STOP
insert into ref.form_types (name) values (i18n.i18n('EMR printout'));
\set ON_ERROR_STOP 1
select i18n.upd_tx('de_DE', 'EMR printout', 'Karteiausdruck');
delete from ref.paperwork_templates where name_long = 'EMR Journal (GNUmed default)';
insert into ref.paperwork_templates (
fk_template_type,
name_short,
name_long,
external_version,
engine,
filename,
data
) values (
(select pk from ref.form_types where name = 'EMR printout'),
'EMR Journal (GNUmed)',
'EMR Journal (GNUmed default)',
'1.0',
'L',
'emr-journal.tex',
'real template missing'::bytea
);
-- --------------------------------------------------------------
\unset ON_ERROR_STOP
insert into ref.form_types (name) values (i18n.i18n('Medical statement'));
\set ON_ERROR_STOP 1
select i18n.upd_tx('de_DE', 'Medical statement', 'Bescheinigung');
delete from ref.paperwork_templates where name_long = 'Medical statement (GNUmed default)';
insert into ref.paperwork_templates (
fk_template_type,
name_short,
name_long,
external_version,
engine,
filename,
data
) values (
(select pk from ref.form_types where name = 'Medical statement'),
'Med. statement (GNUmed)',
'Medical statement (GNUmed default)',
'1.0',
'L',
'statement.tex',
'real template missing'::bytea
);
-- --------------------------------------------------------------
delete from ref.paperwork_templates where name_long = 'Bescheinigung (GNUmed-Vorgabe)';
insert into ref.paperwork_templates (
fk_template_type,
name_short,
name_long,
external_version,
engine,
filename,
data
) values (
(select pk from ref.form_types where name = 'Medical statement'),
'Bescheinigung (GNUmed)',
'Bescheinigung (GNUmed-Vorgabe)',
'1.0',
'L',
'statement.tex',
'real template missing'::bytea
);
-- --------------------------------------------------------------
delete from ref.paperwork_templates where name_long = 'Consultation report (GNUmed default)';
insert into ref.paperwork_templates (
fk_template_type,
name_short,
name_long,
external_version,
engine,
filename,
data
) values (
(select pk from ref.form_types where name = 'EMR printout'),
'Consultation report (GNUmed)',
'Consultation report (GNUmed default)',
'1.0',
'L',
'report.tex',
'real template missing'::bytea
);
-- --------------------------------------------------------------
select gm.log_script_insertion('v15-ref-paperwork_templates.sql', 'Revision: 1.4');
|