-
Notifications
You must be signed in to change notification settings - Fork 249
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
Basic Support for Offline Registered Patients #527
Basic Support for Offline Registered Patients #527
Conversation
… into feature/offline-registered-patient-chart
Improved patient banner typing.
… into feature/offline-registered-patient-chart
… into feature/offline-registered-patient-chart
… into feature/offline-registered-patient-chart
@@ -112,6 +112,7 @@ export async function setupOfflineEncounterSync() { | |||
async function queueEncounterRequest(item: QueuedEncounterRequest) { | |||
const descriptor: QueueItemDescriptor = { | |||
id: item.body.uuid, | |||
displayName: 'Patient form', |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Shouldn't this be translated?
}; | ||
|
||
const descriptor: QueueItemDescriptor = { | ||
id: offlineVisit.uuid, | ||
dependencies: [], | ||
displayName: 'Offline visit', |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Shouldn't this be translated?
encounters: [], | ||
visitType: { | ||
uuid: offlineVisit.visitType, | ||
display: 'OFFLINE_VISIT_PLACEHOLDER', | ||
display: 'Offline', |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Shouldn't this be translated?
Requirements
Summary
Provides the groundwork for offline registered patient support within the patient chart: The chart is able to display offline registered patient and pass along the patient's data to the patient chart widgets. The patient banner displays the patient's data and users are able to fill offline forms for that patient.
Screenshots
None.
Issue
https://issues.openmrs.org/browse/O3-981
https://issues.openmrs.org/browse/O3-948
https://issues.openmrs.org/browse/O3-1005
https://issues.openmrs.org/browse/O3-1021
https://issues.openmrs.org/browse/O3-642
Other
Should ideally be merged together with openmrs/openmrs-esm-patient-management#86 as these are dependent on each other.