Skip to content

Commit 66cfe6c

Browse files
authored
Merge pull request #58 from Salcedo-HDF/1dev
Dev into Test - 2025-02-10b
2 parents 89b0c45 + 63f6916 commit 66cfe6c

File tree

6 files changed

+282
-84
lines changed

6 files changed

+282
-84
lines changed
Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
Uuid,Void/Retire,Name,Description,Required,Format,Format description,Validator,Location behavior,Uniqueness behavior
22
05a29f94-c0ed-11e2-94be-8c13b969e334,,OpenMRS ID,"OpenMRS patient identifier, with check-digit",TRUE,,,org.openmrs.module.idgen.validator.LuhnMod30IdentifierValidator,NOT_USED,UNIQUE
3-
22348099-3873-459e-a32e-d93b17eda533,,Legacy ID,Identifier type to record optional previous identifiers ,FALSE,,,,NOT_USED,
4-
b4143563-16cd-4439-b288-f83d61670fc8,,ID Card,ID Card,FALSE,,,,NOT_USED,UNIQUE
5-
a71403f3-8584-4289-ab41-2b4e5570bd45,,SSN,Social Security Number_DEMO,FALSE,[A-Z]{1}-[0-9]{7},"Identifier should be 1 letter, followed by a dash and 7 numerical characters. Eg, A-0010902",,NOT_USED,UNIQUE
3+
4c9e943a-e795-11ef-8671-b2f86dcd4df4,,SDH Legacy ID,"SDH Patient ID number given out prior to the OpenMRS system.",FALSE,,,,NOT_USED,
4+
Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
11
Uuid,Void/Retire,Name,Description,Format,Foreign,Searchable
2-
14d4f066-15f5-102d-96e4-000c29c2a5d7,0,Telephone Number_DEMO,The telephone number for the person,java.lang.String,,,
2+
14d4f066-15f5-102d-96e4-000c29c2a5d7,,Phone Number,The phone number for the person,java.lang.String,,TRUE,
3+
6857d515-d187-482a-bfc7-bc1ae8fdca23,,Facebook ID,The Facebook ID for the person,java.lang.String,,,
4+
d58ef8b8-e7a2-11ef-9a05-b2f86dcd4df4,,PhilHealth ID,The PhilHealth ID for the person,java.lang.String,,,
5+
fb270dc2-e7a2-11ef-9a05-b2f86dcd4df4,,Email Address,The email address for the person,java.lang.String,,,
36
8b56eac7-5c76-4b9c-8c6f-1deab8d3fc47,,Unknown patient,Used to flag patients that cannot be identified during the check-in process,java.lang.String,,,

frontend/config-core-sdh-1dev.json

Lines changed: 69 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,16 @@
11
{
2+
"@openmrs/esm-login-app": {
3+
"logo": {
4+
"src": "https://salcedodoctorshospital.org/assets/sdh-openmrs-logo-dev.png"
5+
}
6+
},
7+
"@openmrs/esm-patient-banner-app": {
8+
"extensionSlots": {
9+
"patient-actions-slot": {
10+
"remove": ["mark-patient-deceased-button"]
11+
}
12+
}
13+
},
214
"@openmrs/esm-patient-chart-app": {
315
"showUpcomingAppointments": true,
416
"extensionSlots": {
@@ -23,6 +35,63 @@
2335
}
2436
}
2537
},
38+
"@openmrs/esm-patient-registration-app": {
39+
"sections": [
40+
"demographics",
41+
"contact",
42+
"moreInfo",
43+
"relationships",
44+
"death"
45+
],
46+
"fieldConfigurations": {
47+
"address": {
48+
"useAddressHierarchy": {
49+
"useQuickSearch": false
50+
}
51+
}
52+
},
53+
"fieldDefinitions": [
54+
{
55+
"id": "philhealth_id",
56+
"name": "PhilHealth ID",
57+
"type": "person attribute",
58+
"uuid": "d58ef8b8-e7a2-11ef-9a05-b2f86dcd4df4",
59+
"validation": {
60+
"matches": ""
61+
}
62+
},
63+
{
64+
"id": "facebook_id",
65+
"name": "Facebook ID",
66+
"type": "person attribute",
67+
"uuid": "6857d515-d187-482a-bfc7-bc1ae8fdca23",
68+
"validation": {
69+
"matches": ""
70+
}
71+
},
72+
{
73+
"id": "email_address",
74+
"name": "Email Address",
75+
"type": "person attribute",
76+
"uuid": "fb270dc2-e7a2-11ef-9a05-b2f86dcd4df4",
77+
"validation": {
78+
"matches": ""
79+
}
80+
}
81+
],
82+
"sectionDefinitions": [
83+
{
84+
"id": "moreInfo",
85+
"name": "More Info",
86+
"fields": ["philhealth_id", "facebook_id", "email_address"]
87+
}
88+
]
89+
},
90+
"@openmrs/esm-primary-navigation-app": {
91+
"logo": {
92+
"name": "SDH-Dev"
93+
}
94+
},
2695
"@openmrs/esm-service-queues-app": {
2796
"priorityConfigs": [
2897
{
@@ -62,25 +131,5 @@
62131
"preferredCalendar": {
63132
"en": "gregory"
64133
}
65-
},
66-
"@openmrs/esm-login-app": {
67-
"logo": {
68-
"src": "https://salcedodoctorshospital.org/assets/sdh-openmrs-logo-dev.png"
69-
}
70-
},
71-
"@openmrs/esm-primary-navigation-app": {
72-
"logo": {
73-
"name": "SDH-Dev"
74-
}
75-
},
76-
"@openmrs/esm-patient-banner-app": {
77-
"extensionSlots": {
78-
"patient-actions-slot": {
79-
"remove": ["mark-patient-deceased-button"]
80-
}
81-
}
82-
},
83-
"@openmrs/esm-patient-registration-app": {
84-
"sections": ["demographics", "contact", "relationships", "death"]
85134
}
86135
}

frontend/config-core-sdh-2test.json

Lines changed: 69 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,16 @@
11
{
2+
"@openmrs/esm-login-app": {
3+
"logo": {
4+
"src": "https://salcedodoctorshospital.org/assets/sdh-openmrs-logo-test.png"
5+
}
6+
},
7+
"@openmrs/esm-patient-banner-app": {
8+
"extensionSlots": {
9+
"patient-actions-slot": {
10+
"remove": ["mark-patient-deceased-button"]
11+
}
12+
}
13+
},
214
"@openmrs/esm-patient-chart-app": {
315
"showUpcomingAppointments": true,
416
"extensionSlots": {
@@ -23,6 +35,63 @@
2335
}
2436
}
2537
},
38+
"@openmrs/esm-patient-registration-app": {
39+
"sections": [
40+
"demographics",
41+
"contact",
42+
"moreInfo",
43+
"relationships",
44+
"death"
45+
],
46+
"fieldConfigurations": {
47+
"address": {
48+
"useAddressHierarchy": {
49+
"useQuickSearch": false
50+
}
51+
}
52+
},
53+
"fieldDefinitions": [
54+
{
55+
"id": "philhealth_id",
56+
"name": "PhilHealth ID",
57+
"type": "person attribute",
58+
"uuid": "d58ef8b8-e7a2-11ef-9a05-b2f86dcd4df4",
59+
"validation": {
60+
"matches": ""
61+
}
62+
},
63+
{
64+
"id": "facebook_id",
65+
"name": "Facebook ID",
66+
"type": "person attribute",
67+
"uuid": "6857d515-d187-482a-bfc7-bc1ae8fdca23",
68+
"validation": {
69+
"matches": ""
70+
}
71+
},
72+
{
73+
"id": "email_address",
74+
"name": "Email Address",
75+
"type": "person attribute",
76+
"uuid": "fb270dc2-e7a2-11ef-9a05-b2f86dcd4df4",
77+
"validation": {
78+
"matches": ""
79+
}
80+
}
81+
],
82+
"sectionDefinitions": [
83+
{
84+
"id": "moreInfo",
85+
"name": "More Info",
86+
"fields": ["philhealth_id", "facebook_id", "email_address"]
87+
}
88+
]
89+
},
90+
"@openmrs/esm-primary-navigation-app": {
91+
"logo": {
92+
"name": "SDH-Test"
93+
}
94+
},
2695
"@openmrs/esm-service-queues-app": {
2796
"priorityConfigs": [
2897
{
@@ -62,25 +131,5 @@
62131
"preferredCalendar": {
63132
"en": "gregory"
64133
}
65-
},
66-
"@openmrs/esm-login-app": {
67-
"logo": {
68-
"src": "https://salcedodoctorshospital.org/assets/sdh-openmrs-logo-test.png"
69-
}
70-
},
71-
"@openmrs/esm-primary-navigation-app": {
72-
"logo": {
73-
"name": "SDH-Test"
74-
}
75-
},
76-
"@openmrs/esm-patient-banner-app": {
77-
"extensionSlots": {
78-
"patient-actions-slot": {
79-
"remove": ["mark-patient-deceased-button"]
80-
}
81-
}
82-
},
83-
"@openmrs/esm-patient-registration-app": {
84-
"sections": ["demographics", "contact", "relationships", "death"]
85134
}
86135
}

frontend/config-core-sdh-3stage.json

Lines changed: 69 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,16 @@
11
{
2+
"@openmrs/esm-login-app": {
3+
"logo": {
4+
"src": "https://salcedodoctorshospital.org/assets/sdh-openmrs-logo-stage.png"
5+
}
6+
},
7+
"@openmrs/esm-patient-banner-app": {
8+
"extensionSlots": {
9+
"patient-actions-slot": {
10+
"remove": ["mark-patient-deceased-button"]
11+
}
12+
}
13+
},
214
"@openmrs/esm-patient-chart-app": {
315
"showUpcomingAppointments": true,
416
"extensionSlots": {
@@ -23,6 +35,63 @@
2335
}
2436
}
2537
},
38+
"@openmrs/esm-patient-registration-app": {
39+
"sections": [
40+
"demographics",
41+
"contact",
42+
"moreInfo",
43+
"relationships",
44+
"death"
45+
],
46+
"fieldConfigurations": {
47+
"address": {
48+
"useAddressHierarchy": {
49+
"useQuickSearch": false
50+
}
51+
}
52+
},
53+
"fieldDefinitions": [
54+
{
55+
"id": "philhealth_id",
56+
"name": "PhilHealth ID",
57+
"type": "person attribute",
58+
"uuid": "d58ef8b8-e7a2-11ef-9a05-b2f86dcd4df4",
59+
"validation": {
60+
"matches": ""
61+
}
62+
},
63+
{
64+
"id": "facebook_id",
65+
"name": "Facebook ID",
66+
"type": "person attribute",
67+
"uuid": "6857d515-d187-482a-bfc7-bc1ae8fdca23",
68+
"validation": {
69+
"matches": ""
70+
}
71+
},
72+
{
73+
"id": "email_address",
74+
"name": "Email Address",
75+
"type": "person attribute",
76+
"uuid": "fb270dc2-e7a2-11ef-9a05-b2f86dcd4df4",
77+
"validation": {
78+
"matches": ""
79+
}
80+
}
81+
],
82+
"sectionDefinitions": [
83+
{
84+
"id": "moreInfo",
85+
"name": "More Info",
86+
"fields": ["philhealth_id", "facebook_id", "email_address"]
87+
}
88+
]
89+
},
90+
"@openmrs/esm-primary-navigation-app": {
91+
"logo": {
92+
"name": "SDH-Stage"
93+
}
94+
},
2695
"@openmrs/esm-service-queues-app": {
2796
"priorityConfigs": [
2897
{
@@ -62,25 +131,5 @@
62131
"preferredCalendar": {
63132
"en": "gregory"
64133
}
65-
},
66-
"@openmrs/esm-login-app": {
67-
"logo": {
68-
"src": "https://salcedodoctorshospital.org/assets/sdh-openmrs-logo-stage.png"
69-
}
70-
},
71-
"@openmrs/esm-primary-navigation-app": {
72-
"logo": {
73-
"name": "SDH-Stage"
74-
}
75-
},
76-
"@openmrs/esm-patient-banner-app": {
77-
"extensionSlots": {
78-
"patient-actions-slot": {
79-
"remove": ["mark-patient-deceased-button"]
80-
}
81-
}
82-
},
83-
"@openmrs/esm-patient-registration-app": {
84-
"sections": ["demographics", "contact", "relationships", "death"]
85134
}
86135
}

0 commit comments

Comments
 (0)