Skip to content

Commit

Permalink
RWA-951 - Add registration and vitals visit actions.
Browse files Browse the repository at this point in the history
  • Loading branch information
mseaton committed Oct 15, 2024
1 parent 3979b32 commit c626560
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,4 +1,24 @@
[
{
"id": "imbemr.visitAction.registrationEncounter",
"extensionPointId": "patientDashboard.visitActions",
"type": "link",
"label": "imbemr.registration.encounter.label",
"url": "htmlformentryui/htmlform/enterHtmlFormWithStandardUi.page?patientId={{patient.uuid}}&visitId={{visit.uuid}}&definitionUiResource=file:configuration/htmlforms/registration.xml",
"icon": "icon-user",
"require": "visit != null && !visit.encounters || !some(visit.encounters, (function(encounter) { return encounter.encounterType.uuid === 'cfe614d5-fa7e-4919-b76b-a66117f57e4c'; } ))",
"order": 1
},
{
"id": "imbemr.visitAction.vitalsEncounter",
"extensionPointId": "patientDashboard.visitActions",
"type": "link",
"label": "imbemr.vitals.encounter.label",
"url": "htmlformentryui/htmlform/enterHtmlFormWithStandardUi.page?patientId={{patient.uuid}}&visitId={{visit.uuid}}&definitionUiResource=file:configuration/htmlforms/vitals.xml",
"icon": "icon-user",
"require": "visit != null",
"order": 2
},
{
"id": "referenceapplication.realTime.simpleTransfer",
"extensionPointId": "patientDashboard.visitActions",
Expand Down
3 changes: 2 additions & 1 deletion configuration/messageproperties/messages_en.properties
Original file line number Diff line number Diff line change
Expand Up @@ -434,13 +434,14 @@ imbemr.startVisit=Start Patient Visit
imbemr.startVisit.retrospective=Enter Past Visit
imbemr.visitDashboard.view=View Visit Dashboard

imbemr.registration.encounter.label=Registration Details
imbemr.registration.encounter.label=Registration
imbemr.registration.encounter.date.label=Registration date
imbemr.registration.encounter.provider.label=Registered by
imbemr.registration.encounter.location.label=Location
imbemr.registration.encounter.serviceRequested.label=Service Requested
imbemr.registration.encounter.insurance.label=Insurance Policy

imbemr.vitals.encounter.label=Vitals
imbmer.vitals.encounter.enter=Enter Vitals

imbemr.insurancePolicies=Insurance Policies
Expand Down

0 comments on commit c626560

Please sign in to comment.