Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

99 implement another data retriever that requests information by pid #100

1 change: 1 addition & 0 deletions db/installationInit.sql
Original file line number Diff line number Diff line change
Expand Up @@ -216,6 +216,7 @@ INSERT INTO `SelectConfiguration_OPTIONS` (`SelectConfiguration_id`, `options`)
(81, 'de.imi.mopat.helper.controller.RandomPatientDataRetrieverImpl'),
(81, 'de.imi.mopat.helper.controller.HL7v22PatientInformationRetriever'),
(81, 'de.imi.mopat.helper.controller.DummyPatientDataRetrieverImpl'),
(81, 'de.imi.mopat.helper.controller.HL7v22PatientInformationRetrieverByPID'),
(38, 'de_DE'),
(38, 'en_GB');

Expand Down
1 change: 1 addition & 0 deletions db/installationInitTest.sql
Original file line number Diff line number Diff line change
Expand Up @@ -222,6 +222,7 @@ INSERT INTO `SelectConfiguration_OPTIONS` (`SelectConfiguration_id`, `options`)
(81, 'de.imi.mopat.helper.controller.RandomPatientDataRetrieverImpl'),
(81, 'de.imi.mopat.helper.controller.HL7v22PatientInformationRetriever'),
(81, 'de.imi.mopat.helper.controller.DummyPatientDataRetrieverImpl'),
(81, 'de.imi.mopat.helper.controller.HL7v22PatientInformationRetrieverByPID'),
(38, 'de_DE'),
(38, 'en_GB');

Expand Down
6 changes: 5 additions & 1 deletion db/update/v3.2.sql
Original file line number Diff line number Diff line change
Expand Up @@ -51,4 +51,8 @@ JOIN (
JOIN questionnaire_version_group qvg ON qvg.name = q.name
WHERE q.version_group_id IS NULL
) AS subquery ON q.id = subquery.questionnaire_id
SET q.version_group_id = subquery.version_group_id;
SET q.version_group_id = subquery.version_group_id;

INSERT INTO moPat.SelectConfiguration_OPTIONS
(SelectConfiguration_id, `options`)
VALUES(33, 'de.imi.mopat.helper.controller.HL7v22PatientInformationRetrieverByPID');
Loading
Loading