From 61f21520415fafafbbcc711f33576bb3580d27e4 Mon Sep 17 00:00:00 2001 From: angshu Date: Thu, 30 Aug 2018 15:53:31 +0530 Subject: [PATCH 01/67] BAH-621 | updated IPD ward list view search handler - wardListSqlSearchHandler --- LICENSE | 5 +++-- openmrs/apps/ipd/app.json | 2 +- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/LICENSE b/LICENSE index 722fa17693..d7d3aaaf34 100644 --- a/LICENSE +++ b/LICENSE @@ -1,5 +1,6 @@ -Bahmni OpenMRS Apps -Copyright 2014 ThoughtWorks, Inc +Bahmni application configuration for default demo setup + +Copyright (C) 2018 OpenMRS, Inc This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as diff --git a/openmrs/apps/ipd/app.json b/openmrs/apps/ipd/app.json index 5fd572af80..a95e338598 100644 --- a/openmrs/apps/ipd/app.json +++ b/openmrs/apps/ipd/app.json @@ -24,7 +24,7 @@ "visitUuid" ], "config": { - "wardListSqlSearchHandler": "emrapi.sqlGet.allWardsListDetails", + "wardListSqlSearchHandler": "bedManagement.sqlGet.patientListForAdmissionLocation", "diagnosisStatus": "Inactive", "onAdmissionForwardTo": "#/bedManagement/patient/{{patientUuid}}/visit/{{visitUuid}}", "onTransferForwardTo": "#/bedManagement/patient/{{patientUuid}}/visit/{{visitUuid}}", From e6bb1ecceb4000c2bc97227337ca9d4ccbef806d Mon Sep 17 00:00:00 2001 From: tbindu Date: Fri, 31 Aug 2018 16:10:29 +0530 Subject: [PATCH 02/67] Bindu | BAH-621 | Removed patientWardDetails.sql as this migration already moved to Bedmanagement and bahmni-core modules --- .../bedManagement/PatientWardDetails.sql | 29 ------------------- openmrs/migrations/liquibase.xml | 4 --- 2 files changed, 33 deletions(-) delete mode 100644 openmrs/migrations/bedManagement/PatientWardDetails.sql diff --git a/openmrs/migrations/bedManagement/PatientWardDetails.sql b/openmrs/migrations/bedManagement/PatientWardDetails.sql deleted file mode 100644 index 9c0b463b1a..0000000000 --- a/openmrs/migrations/bedManagement/PatientWardDetails.sql +++ /dev/null @@ -1,29 +0,0 @@ -DELETE FROM global_property WHERE property = 'emrapi.sqlGet.allWardsListDetails'; -SELECT uuid() INTO @uuid; -INSERT INTO global_property (`property`, `property_value`, `description`, `uuid`) -VALUES ('emrapi.sqlGet.allWardsListDetails', -"SELECT - bed_tags.bed_tags AS 'Bed Tags', - bed.bed_number AS 'Bed Number', - patient_identifier.identifier AS 'Patient ID', - CONCAT(pn.given_name, ' ', pn.family_name) AS 'Patient Name', - TIMESTAMPDIFF(YEAR, p.birthdate, CURDATE()) AS 'Age' -FROM - bed - INNER JOIN bed_location_map blm ON blm.bed_id = bed.bed_id - INNER JOIN location l ON l.location_id = blm.location_id AND l.name = ${location_name} AND l.name LIKE '%Ward%' AND l.retired IS FALSE - LEFT OUTER JOIN bed_patient_assignment_map bpam ON bpam.bed_id = bed.bed_id AND bpam.date_stopped IS NULL - LEFT OUTER JOIN person p ON p.person_id = bpam.patient_id AND p.voided IS FALSE - LEFT OUTER JOIN person_name pn ON pn.person_id = p.person_id AND pn.voided IS FALSE - LEFT OUTER JOIN patient_identifier ON patient_identifier.patient_id = p.person_id AND patient_identifier.voided IS FALSE - LEFT OUTER JOIN person_address address ON address.person_id = p.person_id AND address.voided IS FALSE - LEFT OUTER JOIN ( - SELECT - bed_tag_map.bed_id AS 'bed_id', - GROUP_CONCAT(DISTINCT bed_tag.name ORDER BY bed_tag.name) AS 'bed_tags' - FROM - bed_tag_map - INNER JOIN bed_tag ON bed_tag.bed_tag_id = bed_tag_map.bed_tag_id AND bed_tag_map.voided IS FALSE - GROUP BY bed_tag_map.bed_id - ) bed_tags ON bed_tags.bed_id = bed.bed_id -GROUP BY bed.bed_number;",'SQL query to get list of bed details in ward',@uuid); diff --git a/openmrs/migrations/liquibase.xml b/openmrs/migrations/liquibase.xml index a70d1c277c..064dc3d4fa 100644 --- a/openmrs/migrations/liquibase.xml +++ b/openmrs/migrations/liquibase.xml @@ -49,10 +49,6 @@ ); - - Updating SQL query for Bed Management List View - - From 5c7938f3b6805d77b2c3594b0af6b42a1c1ebfd8 Mon Sep 17 00:00:00 2001 From: angshu Date: Fri, 31 Aug 2018 18:52:34 +0530 Subject: [PATCH 03/67] removing unused extensions, correcting typo and invalid URL for link --- openmrs/apps/ipd/app.json | 4 +- openmrs/apps/ipd/extension.json | 89 --------------------------------- 2 files changed, 2 insertions(+), 91 deletions(-) diff --git a/openmrs/apps/ipd/app.json b/openmrs/apps/ipd/app.json index a95e338598..056a4e689a 100644 --- a/openmrs/apps/ipd/app.json +++ b/openmrs/apps/ipd/app.json @@ -77,8 +77,8 @@ "customLinks": [ { "name": "bedManagement", - "translationKey": "PATIENT_BED_MANAGEMENT_PAGE_KE", - "url": "../bedmanagement/#/bedManagement/patient/{{patientUuid}}/visit/{{visitUuid}}" + "translationKey": "PATIENT_BED_MANAGEMENT_PAGE_KEY", + "url": "../bedmanagement/#/bedManagement/patient/{{patientUuid}}" } ] }, diff --git a/openmrs/apps/ipd/extension.json b/openmrs/apps/ipd/extension.json index b27a9cca72..4c1b0181f1 100644 --- a/openmrs/apps/ipd/extension.json +++ b/openmrs/apps/ipd/extension.json @@ -1,93 +1,4 @@ { - "bahmniAdtAdmitContinueVisit":{ - "id": "bahmni.adt.admit.continue.visit", - "extensionPointId": "org.bahmni.adt.admit.action", - "type": "config", - "extensionParams" : { - "displayFunction": "getDisplayForContinuingVisit", - "action":"admit", - "showCondition":"visitExists" - }, - "order": 2, - "requiredPrivilege": "app:adt" - }, - "bahmniAdtAdmitCancel":{ - "id": "bahmni.adt.admit.cancel", - "extensionPointId": "org.bahmni.adt.admit.action", - "type": "config", - "extensionParams" : { - "display": "Cancel", - "action":"cancel" - }, - "order": 3, - "requiredPrivilege": "app:adt" - }, - "bahmniAdtTransferSave":{ - "id": "bahmni.adt.transfer.save", - "extensionPointId": "org.bahmni.adt.transfer.action", - "type": "config", - "extensionParams" : { - "display": "Save", - "action":"transfer" - }, - "order": 1, - "requiredPrivilege": "app:adt" - }, - "bahmniAdtTransferCancel":{ - "id": "bahmni.adt.transfer.cancel", - "extensionPointId": "org.bahmni.adt.transfer.action", - "type": "config", - "extensionParams" : { - "display": "Cancel", - "action":"cancel" - }, - "order": 2, - "requiredPrivilege": "app:adt" - }, - "bahmniAdtDischargeSave":{ - "id": "bahmni.adt.discharge.save", - "extensionPointId": "org.bahmni.adt.discharge.action", - "type": "config", - "extensionParams" : { - "display": "Discharge", - "action":"discharge" - }, - "order": 2, - "requiredPrivilege": "app:adt" - }, - "bahmniAdtDischargeCancel":{ - "id": "bahmni.adt.discharge.cancel", - "extensionPointId": "org.bahmni.adt.discharge.action", - "type": "config", - "extensionParams" : { - "display": "Cancel", - "action":"cancel" - }, - "order": 3, - "requiredPrivilege": "app:adt" - }, - "bahmniAdtUndoDischarge":{ - "id": "bahmni.adt.undo.discharge", - "extensionPointId": "org.bahmni.adt.undo.discharge.action", - "type": "config", - "extensionParams" : { - "display": "Undo Discharge", - "action":"undoDischarge" - }, - "order": 1, - "requiredPrivilege": "app:adt" - }, - "bahmniAdtUndoDischargeCancel":{ - "id": "bahmni.adt.undo.discharge.cancel", - "extensionPointId": "org.bahmni.adt.undo.discharge.action", - "type": "config", - "extensionParams" : { - "display": "Cancel", - "action":"cancel" - }, - "order": 2, - "requiredPrivilege": "app:adt" - }, "bahmniAdtPatientsSearchPatientsToAdmit":{ "id": "bahmni.adt.patients.search.patientsToAdmit", "extensionPointId": "org.bahmni.patient.search", From 44a7fb818a252c9a0ff4402a4219063d40075f1d Mon Sep 17 00:00:00 2001 From: Amol Chavan Date: Mon, 15 Oct 2018 10:57:27 +0530 Subject: [PATCH 04/67] Amol | Removed marathi patient search configuration --- openmrs/apps/registration/app.json | 14 +++++--------- 1 file changed, 5 insertions(+), 9 deletions(-) diff --git a/openmrs/apps/registration/app.json b/openmrs/apps/registration/app.json index 9155027840..695ac817bb 100644 --- a/openmrs/apps/registration/app.json +++ b/openmrs/apps/registration/app.json @@ -50,7 +50,7 @@ }, "autoCompleteFields":["familyName", "caste"], - "defaultIdentifierPrefix": "GAN", + "defaultIdentifierPrefix": "MOZ", "defaultVisitType": "OPD", "searchByIdForwardUrl": "/patient/{{patientUuid}}", "showMiddleName": true, @@ -103,15 +103,11 @@ }, "patientSearch": { "address": { - "label": "Rural Ward", - "placeholder": "Enter ward", - "field": "address2" + "label": "Tehsil", + "placeholder": "Enter Tehsil", + "field": "address3" }, - "customAttributes": { - "label": "रुग्णाचे नाव", - "placeholder": "रुग्णाचे नाव", - "fields": ["givenNameLocal", "middleNameLocal", "familyNameLocal"] - } + "customAttributes": { } } } } From 240786ae9a07ceebbda983fbafc1e913dff65fe0 Mon Sep 17 00:00:00 2001 From: Amol Chavan Date: Mon, 15 Oct 2018 17:47:57 +0530 Subject: [PATCH 05/67] Amol | Kept Rural Ward as it is --- openmrs/apps/registration/app.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/openmrs/apps/registration/app.json b/openmrs/apps/registration/app.json index 695ac817bb..3fca79195e 100644 --- a/openmrs/apps/registration/app.json +++ b/openmrs/apps/registration/app.json @@ -103,9 +103,9 @@ }, "patientSearch": { "address": { - "label": "Tehsil", - "placeholder": "Enter Tehsil", - "field": "address3" + "label": "Rural Ward", + "placeholder": "Enter ward", + "field": "address2" }, "customAttributes": { } } From 906adbbe3b4de73e96795d6ce48edbd90a2154ad Mon Sep 17 00:00:00 2001 From: Amol Chavan Date: Mon, 28 Jan 2019 17:16:59 +0530 Subject: [PATCH 06/67] Amol | Added Bahmni config changes --- openmrs/apps/clinical/app.json | 15 +- openmrs/apps/clinical/dashboard.json | 576 ++---------------- openmrs/apps/clinical/extension-programs.json | 46 +- openmrs/apps/clinical/extension.json | 54 +- openmrs/apps/home/extension.json | 123 +--- openmrs/apps/home/locale_languages.json | 8 +- openmrs/apps/registration/app.json | 87 +-- .../apps/registration/attributesConditions.js | 0 openmrs/apps/registration/extension.json | 9 +- .../registrationCardLayout/print.html | 96 ++- .../printWithBarcode.html | 34 +- .../print_registration.html | 101 +++ openmrs/i18n/clinical/locale_en.json | 5 +- openmrs/i18n/clinical/locale_pt_BR.json | 10 +- openmrs/i18n/home/locale_pt_BR.json | 26 +- openmrs/i18n/registration/locale_en.json | 19 +- openmrs/i18n/registration/locale_pt_BR.json | 57 +- 17 files changed, 405 insertions(+), 861 deletions(-) create mode 100644 openmrs/apps/registration/attributesConditions.js create mode 100644 openmrs/apps/registration/registrationCardLayout/print_registration.html diff --git a/openmrs/apps/clinical/app.json b/openmrs/apps/clinical/app.json index 2f01502297..5038824e43 100644 --- a/openmrs/apps/clinical/app.json +++ b/openmrs/apps/clinical/app.json @@ -1,10 +1,6 @@ { "id": "bahmni.clinical", "extensionPoints": [ - { - "id": "org.bahmni.clinical.consultation.board", - "description": "Bahmni Clinical Consultation Page" - }, { "id": "org.bahmni.clinical.conceptSetGroup.*", "description": "Define conceptsets part of a conceptset group" @@ -44,11 +40,8 @@ "ID_Number": { "required" : true }, - "Co-morbidites": { - "excludeFrom": ["HIV Program"] - }, - "Doctor": { - "excludeFrom": ["TB Program"] + "Stage": { + "excludeFrom": ["ART","TB Program","PTV program"] } }, "patientContext": { @@ -113,6 +106,10 @@ "Set1": { "allowAddMore": true }, + "Home equipment": { + "dropdown": true, + "disableAddNotes": true + }, "Set2": { "allowAddMore": true }, diff --git a/openmrs/apps/clinical/dashboard.json b/openmrs/apps/clinical/dashboard.json index 7febca3b0f..271a6b2db0 100644 --- a/openmrs/apps/clinical/dashboard.json +++ b/openmrs/apps/clinical/dashboard.json @@ -1,399 +1,60 @@ -{ - "general":{ +{ + "general":{ "translationKey":"DASHBOARD_TAB_GENERAL_KEY", "displayByDefault":true, "maxRecentlyViewedPatients":10, - "sections":{ - "patientInformation":{ + "sections":{ + "patientInformation":{ "translationKey":"DASHBOARD_TITLE_PATIENT_INFORMATION_KEY", "type":"patientInformation", "displayOrder":0, "ageLimit":100, - "patientAttributes":[ + "patientAttributes":[ ], - "addressFields":[ + "addressFields":[ "address1", "address2", "cityVillage", "countyDistrict" ] }, - "diagnosis":{ - "translationKey":"DASHBOARD_TITLE_DIAGNOSIS_KEY", - "type":"diagnosis", - "showCertainty":true, - "showOrder":true, - "showDetailsButton":true, - "displayOrder":1 - }, - "navigationLinksControl":{ + "navigationLinksControl":{ "translationKey":"DASHBOARD_TITLE_NAVIGATION_LINKS_CONTROL_KEY", "type":"navigationLinksControl", "displayOrder":2, - "showLinks":[ + "showLinks":[ "home", - "visit", "registration", - "inpatient", - "enrolment", - "visitAttribute" + "enrolment" ] }, - "tuberculosis": { - "title": "Tuberculosis Follow Up", - "type": "tuberculosis", - "isObservation": true, - "dashboardConfig": { - "conceptNames": [ - "Tuberculosis Followup Template" - ], - "numberOfVisits": 2 - } - }, - "disposition":{ - "translationKey":"DASHBOARD_TITLE_DISPOSITION_KEY", - "showDetailsButton":true, - "type":"disposition", - "numberOfVisits":1, - "displayOrder":7 - }, - "treatments":{ - "translationKey":"DASHBOARD_TITLE_TREATMENTS_KEY", - "type":"treatment", - "displayOrder":4, - "dashboardConfig":{ - "showFlowSheet":true, - "showListView":true, - "showRoute":true, - "showDrugForm":true, - "numberOfVisits":5, - "showOtherActive":true, - "showDetailsButton":true - }, - "expandedViewConfig":{ - "translationKey":"DASHBOARD_TITLE_TREATMENTS_KEY", - "showFlowSheet":true, - "showListView":true, - "showRoute":true, - "showDrugForm":true, - "numberOfVisits":10, - "showOtherActive":true, - "showDetailsButton":true - } - }, - "radiology":{ - "translationKey":"DASHBOARD_TITLE_RADIOLOGY_KEY", - "type":"radiology", - "showDetailsButton":true, - "displayOrder":5 - }, - "programs":{ + + + + + "programs":{ "translationKey":"DASHBOARD_TITLE_PROGRAMS_KEY", "type":"programs", "displayOrder":10 }, - "radiologyOrders":{ - "orderType":"Radiology Order", - "type":"ordersControl", - "translationKey":"DASHBOARD_TITLE_RADIOLOGY_ORDERS_KEY", - "displayOrder":17, - "dashboardConfig":{ - "conceptNames":[ - "Summary" - ], - "numberOfVisits":4 - } - }, - "pacs":{ - "orderType":"Radiology Order", - "type":"pacsOrders", - "translationKey":"DASHBOARD_TITLE_PACS_KEY", - "displayOrder":8, - "dashboardConfig":{ - "pacsImageUrl":"/oviyam2/viewer.html?patientID={{patientID}}&accessionNumber={{orderNumber}}", - "numberOfVisits":4 - } - }, - "labOrdersDisplayControl":{ - "translationKey":"DASHBOARD_TITLE_LAB_ORDERS_DISPLAY_CONTROL_KEY", - "type":"ordersControl", - "orderType":"Lab Order", - "showDetailsButton":true, - "displayOrder":9, - "dashboardConfig":{ - "conceptNames":[ - "Systolic", - "Diastolic", - "Posture", - "Temperature" - ] - }, - "expandedViewConfig":{ - "conceptNames":[ - "Systolic", - "Diastolic", - "Posture", - "Temperature" - ], - "showDetailsButton":true - } - }, - "bacteriologyResults":{ - "translationKey":"DASHBOARD_TITLE_BACTERIOLOGY_RESULTS_KEY", - "type":"bacteriologyResultsControl", - "scope":"All", - "orderType":"", - "dashboardConfig":{ - "conceptNames":[ - "BACTERIOLOGY CONCEPT SET" - ] - } - }, - "labResults":{ - "translationKey":"DASHBOARD_TITLE_LAB_RESULTS_KEY", - "type":"labOrders", - "displayOrder":6, - "dashboardConfig":{ - "title":null, - "numberOfVisits":6, - "showChart":false, - "showTable":true, - "showNormalLabResults": true, - "showCommentsExpanded": true, - "showAccessionNotes": true, - "showDetailsButton":false - }, - "expandedViewConfig":{ - "numberOfVisits":10 - } - }, - "nutritionalValues":{ - "translationKey":"DASHBOARD_TITLE_NUTRITIONAL_VALUES_KEY", - "type":"vitals", - "isObservation":true, - "displayOrder":11, - "dashboardConfig":{ - "conceptNames":[ - "HEIGHT", - "Weight", - "BMI Data", - "BMI Status Data" - ], - "showDetailsButton":true, - "numberOfVisits":2 - }, - "expandedViewConfig":{ - "conceptNames":[ - "HEIGHT", - "Weight", - "BMI", - "BMI STATUS" - ], - "numberOfVisits":2, - "scope":"latest", - "showDetailsButton":true, - "pivotTable":{ - - } - } - }, - "vitals":{ - "translationKey":"DASHBOARD_TITLE_VITALS_KEY", - "type":"vitals", - "isObservation":true, - "displayOrder":12, - "dashboardConfig":{ - "showDetailsButton":true, - "conceptNames":[ - "Vitals" - ], - "numberOfVisits":2 - }, - "expandedViewConfig":{ - "conceptNames":[ - "Vitals" - ], - "numberOfVisits":2, - "showDetailsButton":true, - "pivotTable":{ - "numberOfVisits":"10", - "groupBy":"encounters", - "obsConcepts":[ - "Weight", - "Vitals" - ], - "drugConcepts":[ - - ], - "labConcepts":[ - - ] - } - } - }, - "secondVitals":{ - "translationKey":"DASHBOARD_TITLE_SECOND_VITALS_KEY", - "type":"second vitals", - "isObservation":true, - "displayOrder":13, - "dashboardConfig":{ - "showDetailsButton":true, - "conceptNames":[ - "Second Vitals" - ], - "numberOfVisits":2 - }, - "expandedViewConfig":{ - "conceptNames":[ - "Second Vitals" - ], - "numberOfVisits":2, - "showDetailsButton":true, - "pivotTable":{ - - } - } - }, - "historyAndExaminations":{ - "translationKey":"DASHBOARD_TITLE_HISTORY_AND_EXAMINATIONS_KEY", - "type":"vitals", - "isObservation":true, - "displayOrder":14, - "dashboardConfig":{ - "showDetailsButton":true, - "conceptNames":[ - "History and Examination" - ], - "numberOfVisits":2 - }, - "expandedViewConfig":{ - "conceptNames":[ - "History and Examination" - ], - "numberOfVisits":2, - "showDetailsButton":true, - "pivotTable":{ - - } - } - }, - "gynaecology":{ - "translationKey":"DASHBOARD_TITLE_GYNAECOLOGY_KEY", - "type":"gynaecology", - "isObservation":true, - "displayOrder":15, - "dashboardConfig":{ - "conceptNames":[ - "Gynaecology" - ], - "showDetailsButton":true, - "numberOfVisits":2 - }, - "expandedViewConfig":{ - "conceptNames":[ - "Gynaecology" - ], - "numberOfVisits":2, - "showDetailsButton":true, - "pivotTable":{ - - } - } - }, - "obstetrics":{ - "translationKey":"DASHBOARD_TITLE_OBSTETRICS_KEY", - "type":"obstetrics", - "isObservation":true, - "displayOrder":16, - "dashboardConfig":{ - "showDetailsButton":true, - "conceptNames":[ - "Obstetrics" - ], - "numberOfVisits":2 - }, - "expandedViewConfig":{ - "conceptNames":[ - "Obstetrics" - ], - "numberOfVisits":2, - "showDetailsButton":true, - "pivotTable":{ - - } - } - }, - "visits":{ + + + + + + + "visits":{ "translationKey":"DASHBOARD_TITLE_VISITS_KEY", "type":"visits", "displayOrder":3, - "dashboardConfig":{ + "dashboardConfig":{ "title":null, "maximumNoOfVisits":8, "groupByVisits":true } }, - "diabetes":{ - "title":"Diabetes", - "templateName":"Diabetes Templates", - "type":"diseaseTemplate", - "displayOrder":18, - "dashboardConfig":{ - "showOnly":[ - - ] - }, - "expandedViewConfig":{ - "showDetailsButton":true, - "pivotTable":{ - "numberOfVisits":"15", - "groupBy":"encounters", - "obsConcepts":[ - "Weight", - "Height", - "Systolic", - "Diastolic", - "Diabetes, Foot Exam", - "Diabetes, Eye Exam" - ], - "drugConcepts":[ - "Ipratropium Pressurised", - "Garbhpal Rasa" - ], - "labConcepts":[ - "RBS", - "FBS", - "PP2BS", - "Hb1AC", - "Creatinine", - "Albumin", - "Polymorph" - ] - } - } - }, - "admissionDetails":{ - "translationKey":"DASHBOARD_TITLE_ADMISSION_DETAILS_KEY", - "type":"admissionDetails", - "displayOrder":19, - "showDetailsButton":true - }, - "conditions": { - "translationKey":"CONDITION_LIST_DISPLAY_CONTROL_TITLE", - "type": "conditionsList", - "displayOrder": 20 - }, - "formsDisplay": { - "type": "forms", - "displayOrder": 21, - "dashboardConfig": { - "title": null, - "maximumNoOfVisits": 10 - }, - "formGroup": [ ], - "translationKey": "DASHBOARD_TITLE_FORMS_DISPLAY_CONTROL_KEY" - }, + "patientAppointments": { "type": "custom", "displayOrder": 22, @@ -404,26 +65,17 @@ } } }, - "trends":{ + "trends":{ "translationKey":"DASHBOARD_TAB_TRENDS_KEY", "maxRecentlyViewedPatients":10, - "sections":{ - "patientInformation":{ + "sections":{ + "patientInformation":{ "translationKey":"DASHBOARD_TITLE_PATIENT_INFORMATION_KEY", "type":"patientInformation", - "patientAttributes":[ - "caste", - "class", - "education", - "occupation", - "debt", - "distanceFromCenter", - "isUrban", - "cluster", - "RationCard", + "patientAttributes":[ "familyIncome" ], - "addressFields":[ + "addressFields":[ "address1", "address2", "cityVillage", @@ -431,11 +83,11 @@ ], "displayOrder":0 }, - "growthChart":{ + "growthChart":{ "type":"observationGraph", "translationKey": "DASHBOARD_TITLE_GROWTH_CHART", - "config":{ - "yAxisConcepts":[ + "config":{ + "yAxisConcepts":[ "Weight" ], "referenceData":"growthChartReference.csv", @@ -443,24 +95,11 @@ }, "displayOrder":1 }, - "BP":{ - "type":"observationGraph", - "translationKey": "DASHBOARD_TITLE_BLOOD_PRESSURE", - "config":{ - "yAxisConcepts":[ - "Systolic Data", - "Diastolic Data" - ], - "xAxisConcept":"observationDateTime", - "numberOfVisits":10 - }, - "displayOrder":2 - }, - "weight/BMI":{ + "weight/BMI":{ "type":"observationGraph", "translationKey": "DASHBOARD_TITLE_WEIGHT_BMI", - "config":{ - "yAxisConcepts":[ + "config":{ + "yAxisConcepts":[ "Weight", "BMI" ], @@ -468,148 +107,15 @@ "numberOfVisits":10 }, "displayOrder":3 - }, - "diabetes/BloodSugar":{ - "type":"observationGraph", - "translationKey": "DASHBOARD_TITLE_DIABETES_BLOOD_SUGAR", - "config":{ - "yAxisConcepts":[ - "Blood Sugar Fasting", - "Blood Sugar P.P" - ], - "xAxisConcept":"observationDateTime", - "numberOfVisits":10 - }, - "displayOrder":4 - }, - "observationGraph":{ - "type":"observationGraph", - "translationKey": "DASHBOARD_TITLE_PULSE", - "config":{ - "yAxisConcepts":[ - "Pulse Data" - ], - "xAxisConcept":"observationDateTime", - "numberOfVisits":10 - }, - "displayOrder":5 - }, - "diabetes":{ - "title":"Diabetes", - "templateName":"Diabetes, Progress", - "type":"diseaseTemplate", - "dashboardConfig":{ - "showOnly":[ - - ] - }, - "expandedViewConfig":{ - "showDetailsButton":true, - "pivotTable":{ - "numberOfVisits":"10", - "groupBy":"visits", - "obsConcepts":[ - "Diabetes, Blood Pressure", - "Diabetes, A1C", - "Diabetes, LDL", - "Diabetes, Ulcers on Feet", - "Blood Sugar Fasting", - "Blood Sugar PP" - ], - "labConcepts":[ - "RBS", - "FBS", - "PP2BS", - "Hb1AC", - "Creatinine", - "Cholesterol" - ] - } - }, - "displayOrder":6 } } - }, - "patientSummary":{ - "translationKey":"DASHBOARD_TAB_PATIENT_SUMMARY_KEY", - "maxRecentlyViewedPatients":10, - "sections":{ - "Bacteriology Concept Set":{ - "displayType":"Full-Page", - "translationKey":"DASHBOARD_TITLE_BACTERIOLOGY_RESULTS_KEY", - "type":"obsToObsFlowSheet", - "dashboardConfig":{ - "numberOfVisits":1, - "templateName":"BACTERIOLOGY CONCEPT SET", - "groupByConcept":"Specimen Collection Date", - "conceptNames":[ - "Specimen Id" - ] - }, - "expandedViewConfig":{ - "templateName":"BACTERIOLOGY CONCEPT SET", - "groupByConcept":"Specimen Collection Date" - } - }, - "HistoryAndExamination":{ - "type":"historyAndExamination", - "isObservation":true, - "displayType":"Full-Page", - "dashboardConfig":{ - "showGroupDateTime":false, - "conceptNames":[ - "Chief Complaint Data", - "Examination Notes", - "Smoking History", - "Clief COmplaint Notes", - "Blood Pressure" - ] - }, - "displayOrder":6, - "translationKey":"DASHBOARD_TITLE_HISTORY_AND_EXAMINATIONS_KEY" - }, - "drugOther":{ - "translationKey":"DASHBOARD_TITLE_TREATMENTS_KEY", - "type":"drugOrderDetails", - "displayType":"Full-Page", - "showDetailsButton":true, - "displayOrder":24, - "dashboardConfig":{ - "showOnlyActive":true, - "drugConceptSet":"All Other Drugs" - } - }, - "malaria":{ - "title":"Malaria", - "type":"obsToObsFlowSheet", - "displayType":"Full-Page", - "displayOrder":26, - "dashboardConfig":{ - "groupByConcept":"Malaria, Treatment Start Date", - "templateName":"Malaria", - "conceptNames":[ - "Malaria, Parents Name", - "Malaria, drug regimen", - "Malaria, Malaria Type", - "Malaria, Source" - ] - } - }, - "Chronic Treatment Chart":{ - "displayType":"Full-Page", - "title":"Chronic Treatment Chart", - "type":"chronicTreatmentChart", - "dashboardConfig":{ - "drugs":[ + } + + + + + - ] - }, - "expandedViewConfig":{ - "drugs":[ - ] - } - } - } - } } + diff --git a/openmrs/apps/clinical/extension-programs.json b/openmrs/apps/clinical/extension-programs.json index 31400109ae..13d1c6cab4 100644 --- a/openmrs/apps/clinical/extension-programs.json +++ b/openmrs/apps/clinical/extension-programs.json @@ -1,16 +1,44 @@ { + "bahmniClinicalPatientsSearchActivePatientsForPrograms": { - "id": "bahmni.clinical.patients.search.activePatients", + "id": "bahmni.clinical.patients.search.activePatientsforprograms", "extensionPointId": "org.bahmni.patient.search", "type": "config", "extensionParams": { - "searchHandler": "emrapi.sqlSearch.activePatients", - "translationKey": "MODULE_LABEL_PROGRAMS_KEY", + "searchHandler": "emrapi.sqlSearch.activePatientsallprogram", + "translationKey": "MODULE_LABEL_ALL_PROGRAMS_KEY", "forwardUrl": "#/programs/patient/{{patientUuid}}/consultationContext" }, - "label": "Active", + "label": "ALL Program", "order": 1, "requiredPrivilege": "app:clinical" + }, + + "bahmniClinicalPatientsSearchActivePatientsForartPrograms": { + "id": "bahmni.clinical.patients.search.activePatientsartprogram", + "extensionPointId": "org.bahmni.patient.search", + "type": "config", + "extensionParams": { + "searchHandler": "emrapi.sqlSearch.activePatientsartprogram", + "translationKey": "MODULE_LABEL_ART_PROGRAMS_KEY", + "forwardUrl": "#/programs/patient/{{patientUuid}}/consultationContext" + }, + "label": "ART Program", + "order": 12, + "requiredPrivilege": "app:clinical" + }, + "bahmniClinicalPatientsSearchActivePatientsFortbPrograms": { + "id": "bahmni.clinical.patients.search.activePatientstbprogram", + "extensionPointId": "org.bahmni.patient.search", + "type": "config", + "extensionParams": { + "searchHandler": "emrapi.sqlSearch.activePatientstbprogram", + "translationKey": "MODULE_LABEL_TB_PROGRAMS_KEY", + "forwardUrl": "#/programs/patient/{{patientUuid}}/consultationContext" + }, + "label": "TB Program", + "order": 13, + "requiredPrivilege": "app:clinical" }, "bahmniClinicalPatientsSearchAllPatients": { "id": "bahmni.clinical.patients.search.allPatients", @@ -21,7 +49,7 @@ "forwardUrl": "#/programs/patient/{{patientUuid}}/consultationContext" }, "label": "All", - "order": 2, + "order": 22, "requiredPrivilege": "app:clinical" }, "bahmniClinicalConceptSetGroupObservationsHistory": { @@ -62,6 +90,7 @@ "order": 3, "requiredPrivilege": "app:clinical" }, + "bahmniClinicalConceptSetGroupObservationsObstetrics": { "id": "bahmni.clinical.conceptSetGroup.observations.obstetrics", "extensionPointId": "org.bahmni.clinical.conceptSetGroup.observations", @@ -104,6 +133,11 @@ "order": 1, "requiredPrivilege": "app:clinical:observationTab" }, + + + + + "diagnosis": { "id": "bahmni.clinical.consultation.diagnosis", "extensionPointId": "org.bahmni.clinical.consultation.board", @@ -136,4 +170,4 @@ "order": 5, "requiredPrivilege": "app:clinical:consultationTab" } -} \ No newline at end of file +} diff --git a/openmrs/apps/clinical/extension.json b/openmrs/apps/clinical/extension.json index 8dd401c45d..a990233161 100644 --- a/openmrs/apps/clinical/extension.json +++ b/openmrs/apps/clinical/extension.json @@ -67,58 +67,6 @@ "order": 1, "requiredPrivilege": "app:clinical" }, - "bahmniClinicalPatientsSearchActivePatientsForPrograms": { - "id": "bahmni.clinical.patients.search.activePatients", - "extensionPointId": "org.bahmni.patient.search", - "type": "config", - "extensionParams": { - "searchHandler": "emrapi.sqlSearch.activePatients", - "translationKey": "MODULE_LABEL_PROGRAMS_KEY", - "forwardUrl": "#/default/patient/{{patientUuid}}/consultationContext" - }, - "label": "Active", - "order": 1, - "requiredPrivilege": "app:clinical" - }, - "bahmniClinicalPatientsASearchActivePatientsByProvider": { - "id": "bahmni.clinical.patients.search.activePatientsByProvider", - "extensionPointId": "org.bahmni.patient.search", - "type": "config", - "extensionParams": { - "searchHandler": "emrapi.sqlSearch.activePatientsByProvider", - "translationKey": "MODULE_LABEL_MY_PATIENTS_KEY", - "forwardUrl": "#/default/patient/{{patientUuid}}/dashboard" - }, - "label": "Active", - "order": 2, - "requiredPrivilege": "app:clinical" - }, - "bahmniClinicalPatientsSearchOPDActivePatientsByProvider": { - "id": "bahmni.clinical.patients.search.OPDActivePatientsByProvider", - "extensionPointId": "org.bahmni.patient.search", - "type": "config", - "extensionParams": { - "searchHandler": "emrapi.sqlSearch.activePatientsByProvider", - "translationKey": "MODULE_LABEL_OPD_1_KEY", - "forwardUrl": "#/default/patient/{{patientUuid}}/consultationContext" - }, - "label": "OPD-1", - "order": 3, - "requiredPrivilege": "app:clinical" - }, - "activePatientsByLocation": { - "id": "bahmni.clinical.patients.search.activePatientsByLocation", - "extensionPointId": "org.bahmni.patient.search", - "type": "config", - "extensionParams": { - "searchHandler": "emrapi.sqlSearch.activePatientsByLocation", - "translationKey": "MODULE_LABEL_ACTIVE_PATIENTS_BY_LOCATION", - "forwardUrl": "#/default/patient/{{patientUuid}}/dashboard" - }, - "label": "Active", - "order": 4, - "requiredPrivilege": "app:clinical" - }, "bahmniClinicalPatientsSearchAllPatients": { "id": "bahmni.clinical.patients.search.allPatients", "extensionPointId": "org.bahmni.patient.search", @@ -235,4 +183,4 @@ "order": 7, "requiredPrivilege": "app:clinical:bacteriologyTab" } -} \ No newline at end of file +} diff --git a/openmrs/apps/home/extension.json b/openmrs/apps/home/extension.json index 4f282dc65b..c3dc10d689 100644 --- a/openmrs/apps/home/extension.json +++ b/openmrs/apps/home/extension.json @@ -6,7 +6,7 @@ "translationKey": "MODULE_LABEL_REGISTRATION_KEY", "url": "../registration/index.html", "icon": "fa-user", - "order": 1, + "order": 2, "requiredPrivilege": "app:registration" }, "programs": { @@ -16,100 +16,9 @@ "translationKey": "MODULE_LABEL_PROGRAMS_KEY", "url": "../clinical/#/programs/patient/search", "icon": "icon-bahmni-program", - "order": 2, - "requiredPrivilege": "app:clinical" - }, - "clinical": { - "id": "bahmni.clinical", - "extensionPointId": "org.bahmni.home.dashboard", - "type": "link", - "translationKey": "MODULE_LABEL_CLINICAL_KEY", - "url": "../clinical/index.html#/default/patient/search", - "icon": "fa-stethoscope", "order": 3, "requiredPrivilege": "app:clinical" }, - "adt": { - "id": "bahmni.adt", - "extensionPointId": "org.bahmni.home.dashboard", - "type": "link", - "translationKey": "MODULE_LABEL_INPATIENT_KEY", - "url": "../adt/", - "icon": "icon-bahmni-inpatient", - "order": 4, - "requiredPrivilege": "app:adt" - }, - "bahmniIpd": { - "id": "bahmni.ipd", - "extensionPointId": "org.bahmni.home.dashboard", - "type": "link", - "translationKey": "MODULE_LABEL_BED_MANAGEMENT_KEY", - "label": "InPatient", - "url": "../bedmanagement/#/home", - "icon": "fa-bed", - "order": 7, - "requiredPrivilege": "app:adt" - }, - "radiologyDocumentUpload": { - "id": "bahmni.radiology.document.upload", - "extensionPointId": "org.bahmni.home.dashboard", - "type": "link", - "translationKey": "MODULE_LABEL_RADIOLOGY_UPLOAD_KEY", - "url": "../document-upload/?encounterType=RADIOLOGY&topLevelConcept=Radiology", - "icon": "icon-bahmni-radiology", - "order": 5, - "requiredPrivilege": "app:radiology-upload" - }, - "patientDocumentUpload": { - "id": "bahmni.patient.document.upload", - "extensionPointId": "org.bahmni.home.dashboard", - "type": "link", - "translationKey": "MODULE_LABEL_PATIENT_DOCUMENTS_KEY", - "url": "../document-upload/?encounterType=Patient Document&topLevelConcept=Patient Document&defaultOption=Patient file", - "icon": "icon-bahmni-documents", - "order": 6, - "requiredPrivilege": "app:patient-documents" - }, - "admin": { - "id": "bahmni.admin", - "extensionPointId": "org.bahmni.home.dashboard", - "type": "link", - "translationKey": "MODULE_LABEL_ADMIN_KEY", - "url": "../admin/#/dashboard/home", - "icon": "icon-bahmni-admin", - "order": 7, - "requiredPrivilege": "app:admin" - }, - "orders": { - "id": "bahmni.orders", - "extensionPointId": "org.bahmni.home.dashboard", - "type": "link", - "translationKey": "MODULE_LABEL_ORDERS_KEY", - "url": "../orders/#/search", - "icon": "icon-bahmni-orders", - "order": 10, - "requiredPrivilege": "app:orders" - }, - "reports": { - "id": "bahmni.reports", - "extensionPointId": "org.bahmni.home.dashboard", - "type": "link", - "translationKey": "MODULE_LABEL_REPORTS_KEY", - "url": "../reports/#/dashboard", - "icon": "icon-bahmni-reports", - "order": 8, - "requiredPrivilege": "app:reports" - }, - "bahmniOT": { - "id": "bahmni.ot", - "extensionPointId": "org.bahmni.home.dashboard", - "type": "link", - "translationKey": "Operation Theatre", - "url": "../ot/", - "icon": "fa-hospital-o", - "order": 9, - "requiredPrivilege": "app:ot" - }, "appointments": { "id": "bahmni.appointments", "extensionPointId": "org.bahmni.home.dashboard", @@ -120,25 +29,25 @@ "order": 11, "requiredPrivilege": "App: appointmentschedulingui.home" }, - "implementerInterface": { - "id": "bahmni.implementer.interface", +"admin": { + "id": "bahmni.admin", "extensionPointId": "org.bahmni.home.dashboard", "type": "link", - "translationKey": "MODULE_LABEL_IMPLEMENTER_INTERFACE_KEY", - "url": "/implementer-interface", - "icon": "fa fa-pencil-square-o", - "order": 12, - "requiredPrivilege": "app:implementer-interface" + "translationKey": "MODULE_LABEL_ADMIN_KEY", + "url": "../admin/#/dashboard/home", + "icon": "icon-bahmni-admin", + "order": 7, + "requiredPrivilege": "app:admin" }, - "atomfeedConsole": { - "id": "bahmni.atomfeed.console", + "clinical": { + "id": "bahmni.clinical", "extensionPointId": "org.bahmni.home.dashboard", "type": "link", - "translationKey": "MODULE_LABEL_ATOMFEED_CONSOLE_KEY", - "url": "/atomfeed-console", - "icon": "fa fa-terminal", - "order": 13, - "requiredPrivilege": "app:admin" + "translationKey": "MODULE_LABEL_CLINICAL_KEY", + "url": "../clinical/index.html#/default/patient/search", + "icon": "fa-stethoscope", + "order": 4, + "requiredPrivilege": "app:clinical" }, "appointmentScheduling": { "id": "bahmni.appointment.scheduling", @@ -147,7 +56,7 @@ "translationKey": "MODULE_LABEL_APPOINTMENT_SCHEDULING_KEY", "url": "../appointments", "icon": "fa fa-calendar", - "order": 14, + "order": 1, "requiredPrivilege": "app:appointments" } diff --git a/openmrs/apps/home/locale_languages.json b/openmrs/apps/home/locale_languages.json index 78059ef2ad..deedd408eb 100644 --- a/openmrs/apps/home/locale_languages.json +++ b/openmrs/apps/home/locale_languages.json @@ -1,6 +1,6 @@ -{"locales": [ {"code": "en", "nativeName": "English"}, +{"locales": [ {"code": "pt_BR", "nativeName": "Português"}, + {"code": "en", "nativeName": "English"}, {"code": "es", "nativeName": "Español"}, {"code": "fr", "nativeName": "Français"}, - {"code": "it", "nativeName": "Italiano"}, - {"code": "pt_BR", "nativeName": "Português"}] -} \ No newline at end of file + {"code": "it", "nativeName": "Italiano"}] +} diff --git a/openmrs/apps/registration/app.json b/openmrs/apps/registration/app.json index 3fca79195e..0b3e626f60 100644 --- a/openmrs/apps/registration/app.json +++ b/openmrs/apps/registration/app.json @@ -17,20 +17,31 @@ "activeVisitUuid" ], "config" : { - "patientInformation": { - "additionalPatientInformation": { - "title": "Additional Patient Information", - "attributes": [ - "distanceFromCenter", - "isUrban", - "cluster", - "RationCard", - "familyIncome", - "debt", - "cluster" - ] - }, - "hidden": { + "patientInformation": { + + "patientReferenceInformation": { + "title": "patientReferenceInformation", + "translationKey": "REGISTRATION_REFERENCE_INFO_KEY", + "attributes": ["Nome","Apelido","Phone_2"], + "order" : 2, + "expanded": true + }, + "patientTransferenceInformation": { + "title": "patientTransferenceInformation", + "translationKey": "REGISTRATION_TRANSFERENCE_INFO_KEY", + "attributes": ["Transferred from another HF","Date of transference","Transferred out HF name","Patient stage"], + "order" : 3, + "expanded": true + }, + + "patientHIVTestInformation": { + "title": "patientHIVTestInformation", + "translationKey": "REGISTRATION_HIVTEST_INFO_KEY", + "attributes": ["DateofHIVDiagnosis","Typeoftest","TestResult"], + "order" : 4, + "expanded": true + }, + "hidden": { "attributes": [ "primaryContact" ] @@ -48,33 +59,24 @@ "Doctor":"provider", "Parent":"patient" }, - "autoCompleteFields":["familyName", "caste"], "defaultIdentifierPrefix": "MOZ", - "defaultVisitType": "OPD", + "extraIdentifiersToDisplay" : "NID (SERVIÇO TARV)", + "defaultVisitType": "FIRST CONSULTATION", "searchByIdForwardUrl": "/patient/{{patientUuid}}", - "showMiddleName": true, + "afterVisitSaveForwardUrl": "../registration/index.html#/search", + "showMiddleName": false, "showLastName": true, "isLastNameMandatory": true, "showSaveConfirmDialog": false, "showBirthTime": true, "showCasteSameAsLastNameCheckbox": false, "printOptions": [ - { - "translationKey": "REGISTRATION_PRINT_REG_CARD_LOCAL_KEY", - "templateUrl": "/bahmni_config/openmrs/apps/registration/registrationCardLayout/print_local.html", - "shortcutKey": "l" - }, { "translationKey": "REGISTRATION_PRINT_REG_CARD_KEY", "templateUrl": "/bahmni_config/openmrs/apps/registration/registrationCardLayout/print.html", "shortcutKey": "p" }, - { - "translationKey": "REGISTRATION_PRINT_SUPPLEMENTAL_PAPER", - "templateUrl": "/bahmni_config/openmrs/apps/registration/supplementalPaperLayout/print.html", - "shortcutKey": "r" - }, { "translationKey": "REGISTRATION_PRINT_WITH_BARCODE", "templateUrl": "/bahmni_config/openmrs/apps/registration/registrationCardLayout/printWithBarcode.html", @@ -89,6 +91,11 @@ "FHS": { "buttonSelect": true }, + "Home equipment": { + "dropdown": true, + "disableAddNotes": true + }, + "defaults":{ "FHS": "Present" } @@ -98,16 +105,26 @@ "landHolding" : {"pattern" : "[0-9]{0,3}", "errorMessage" : "Should be between 1 to 999 acres"}, "familyName" : {"pattern" : "[a-zA-Z]{0,}", "errorMessage" : "Should contain characters"}, "givenName" : {"pattern" : "[a-zA-Z]{0,}", "errorMessage" : "Should contain characters"}, - "middleName" : {"pattern" : "[a-zA-Z]{0,}", "errorMessage" : "Should contain characters"}, - "address1" : {"pattern" : "[a-zA-Z0-9\\s]{2,}", "errorMessage" : "Should contain at least 2 characters"} + "middleName" : {"pattern" : "[a-zA-Z]{0,}", "errorMessage" : "Should contain characters"} + }, - "patientSearch": { + "patientSearchResults": { "address": { - "label": "Rural Ward", - "placeholder": "Enter ward", - "field": "address2" + "fields" : [] }, - "customAttributes": { } - } + "personAttributes": { + "fields": [ + "nick_name" + ] + } + }, + "patientSearch": { + "address": {}, + "customAttributes": { + "label": "Alcunha", + "placeholder": "Alcunha", + "fields": ["nick_name"] + } + } } } diff --git a/openmrs/apps/registration/attributesConditions.js b/openmrs/apps/registration/attributesConditions.js new file mode 100644 index 0000000000..e69de29bb2 diff --git a/openmrs/apps/registration/extension.json b/openmrs/apps/registration/extension.json index f42906ff8b..d258e0c021 100644 --- a/openmrs/apps/registration/extension.json +++ b/openmrs/apps/registration/extension.json @@ -45,18 +45,19 @@ "order": 1, "requiredPrivilege": "Edit Visits" }, - "feeInformation":{ - "id": "bahmni.registration.conceptSetGroup.feeInformation", + + "patientinfo":{ + "id": "bahmni.registration.conceptSetGroup.Vitals", "extensionPointId": "org.bahmni.registration.conceptSetGroup.observations", "type": "config", "extensionParams": { - "conceptName": "Fee Information", + "conceptName": "Patient_information", "translationKey": "FEE_INFORMATION_LOCALE_KEY", "required":true }, "order": 2, "requiredPrivilege": "Edit Visits" - }, + }, "nutritionalValue":{ "id": "bahmni.registration.conceptSetGroup.nutritionalValue", "extensionPointId": "org.bahmni.registration.conceptSetGroup.observations", diff --git a/openmrs/apps/registration/registrationCardLayout/print.html b/openmrs/apps/registration/registrationCardLayout/print.html index a7cb28cc12..759219a8c6 100644 --- a/openmrs/apps/registration/registrationCardLayout/print.html +++ b/openmrs/apps/registration/registrationCardLayout/print.html @@ -2,47 +2,9 @@ -
+ diff --git a/openmrs/apps/registration/registrationCardLayout/printWithBarcode.html b/openmrs/apps/registration/registrationCardLayout/printWithBarcode.html index 39279bc2c5..9246e9df7f 100644 --- a/openmrs/apps/registration/registrationCardLayout/printWithBarcode.html +++ b/openmrs/apps/registration/registrationCardLayout/printWithBarcode.html @@ -5,13 +5,9 @@ - + @@ -31,23 +27,30 @@ + + + + + @@ -55,7 +58,7 @@ @@ -63,9 +66,9 @@ @@ -90,3 +93,4 @@ JsBarcode("#barcode").init(); })(); + diff --git a/openmrs/apps/registration/registrationCardLayout/print_registration.html b/openmrs/apps/registration/registrationCardLayout/print_registration.html new file mode 100644 index 0000000000..4eb6f2ec27 --- /dev/null +++ b/openmrs/apps/registration/registrationCardLayout/print_registration.html @@ -0,0 +1,101 @@ + +
Bahmni Hospital
- Registration Date + data de registro : {{patient.registrationDate | bahmniDate}}
- Full Name + Nome completo : {{patient.fullNameLocal()}}
+ NID + : {{patient.extraIdentifiers[0].identifier}}
- Age + Era : {{patient.age | age}}
- Gender + Gênero : {{patient.gender}}
- Village + Aldeia : {{patient.address.cityVillage}}
- Bahmni Hospital jsbarcode-fontSize="10" /> -
{{patient.primaryIdentifier.identifier}}
+
+ + + + + +
+ diff --git a/openmrs/i18n/clinical/locale_en.json b/openmrs/i18n/clinical/locale_en.json index aeae74e360..5b1542f91f 100644 --- a/openmrs/i18n/clinical/locale_en.json +++ b/openmrs/i18n/clinical/locale_en.json @@ -84,5 +84,8 @@ "DASHBOARD_UPCOMING_APPOINTMENTS_KEY": "Upcoming Appointments", "DASHBOARD_UPCOMING_APPOINTMENTS_KEY_LINK": "List View", "DASHBOARD_NO_PAST_APPOINTMENTS_KEY": "No past appointments", - "DASHBOARD_NO_UPCOMING_APPOINTMENTS_KEY": "No upcoming appointments" + "DASHBOARD_NO_UPCOMING_APPOINTMENTS_KEY": "No upcoming appointments", + "MODULE_LABEL_ART_PROGRAMS_KEY": "ART Program", + "MODULE_LABEL_TB_PROGRAMS_KEY": "TB Program", + "MODULE_LABEL_ALL_PROGRAMS_KEY": "ALL Program" } diff --git a/openmrs/i18n/clinical/locale_pt_BR.json b/openmrs/i18n/clinical/locale_pt_BR.json index 670ceead75..b0b22d02d2 100644 --- a/openmrs/i18n/clinical/locale_pt_BR.json +++ b/openmrs/i18n/clinical/locale_pt_BR.json @@ -63,5 +63,13 @@ "PATIENT_VISIT_PAGE_KEY":"Pág. Visita de Paciente", "HOME_DASHBOARD_KEY":"Início Painel", "MEDICATION_CHANGE_DURATION_BUTTON": "Alterar Duração", - "DASHBOARD_TITLE_Consultation_KEY": "Anotações da Consulta" + "DASHBOARD_TITLE_Consultation_KEY": "Anotações da Consulta", + "DASHBOARD_TITLE_APPOINTMENTS_KEY": "Compromissos", + "DASHBOARD_UPCOMING_APPOINTMENTS_KEY": "Próximos compromissos", + "DASHBOARD_NO_UPCOMING_APPOINTMENTS_KEY": "No upcoming appointments", + "DASHBOARD_PAST_APPOINTMENTS_KEY": "Nomeações passadas", + "DASHBOARD_NO_PAST_APPOINTMENTS_KEY": "Nenhum compromisso passado", + "MODULE_LABEL_ART_PROGRAMS_KEY": "ART Programa", + "MODULE_LABEL_TB_PROGRAMS_KEY": "TB Programa", + "MODULE_LABEL_ALL_PROGRAMS_KEY": "ALL Programa" } diff --git a/openmrs/i18n/home/locale_pt_BR.json b/openmrs/i18n/home/locale_pt_BR.json index e6d23742ba..e7632c66ec 100644 --- a/openmrs/i18n/home/locale_pt_BR.json +++ b/openmrs/i18n/home/locale_pt_BR.json @@ -1,12 +1,16 @@ { - "MODULE_LABEL_REGISTRATION_KEY": "Registro", - "MODULE_LABEL_CLINICAL_KEY": "Cl\u00EDnico", - "MODULE_LABEL_INPATIENT_KEY": "Internado", - "MODULE_LABEL_RADIOLOGY_UPLOAD_KEY": "Carregar Radiologia", - "MODULE_LABEL_PATIENT_DOCUMENTS_KEY": "Documentos do Paciente", - "MODULE_LABEL_ADMIN_KEY": "Admin", - "MODULE_LABEL_REPORTS_KEY": "Relat\u00F3rios", - "MODULE_LABEL_APOOINTMENTS_KEY": "Agendamentos", - "MODULE_LABEL_ORDERS_KEY": "Pedidos", - "MODULE_LABEL_PROGRAMS_KEY": "Programas" -} +"MODULE_LABEL_REGISTRATION_KEY":"Cadastro", +"MODULE_LABEL_CLINICAL_KEY":"Clínico", +"MODULE_LABEL_INPATIENT_KEY":"Internamento", +"MODULE_LABEL_RADIOLOGY_UPLOAD_KEY":"Radiografia", +"MODULE_LABEL_PATIENT_DOCUMENTS_KEY":"Documentos do Paciente", +"MODULE_LABEL_ADMIN_KEY":"Administração", +"MODULE_LABEL_REPORTS_KEY":"Relatórios", +"MODULE_LABEL_APOOINTMENTS_KEY":"Consultas", +"MODULE_LABEL_ORDERS_KEY":"Laboratório", +"MODULE_LABEL_PROGRAMS_KEY":"Programas", +"MODULE_LABEL_IMPLEMENTER_INTERFACE_KEY":"Interface do Implementador", +"MODULE_LABEL_ATOMFEED_CONSOLE_KEY":"Consola do AtomFeed", +"MODULE_LABEL_APPOINTMENT_SCHEDULING_KEY":"Marcação de Consultas", +"MODULE_LABEL_BED_MANAGEMENT_KEY":"Gestão de Camas" +} \ No newline at end of file diff --git a/openmrs/i18n/registration/locale_en.json b/openmrs/i18n/registration/locale_en.json index f3141e655b..da23a3413b 100644 --- a/openmrs/i18n/registration/locale_en.json +++ b/openmrs/i18n/registration/locale_en.json @@ -16,10 +16,21 @@ "REGISTRATION_OPD_DAYS_TEXT_KEY" : "OPD days are on Monday, Wednesday, Friday.", "REGISTRATION_SUNDAYS_HOLIDAY_TEXT_KEY": "Sundays are holidays.", "REGISTRATION_SMOKING_INJURIOUS_TEXT_KEY" : "Smoking, Tobacco chewing can cause cancer, heart diseases and ASTHMA.", - "REGISTRATION_INSTITUTE_NAME_TEXT_KEY": "Jan Swasthya Sahyog", + "REGISTRATION_INSTITUTE_NAME_TEXT_KEY": "POC HF 01", "REGISTRATION_INSTITUTE_REGISTERED_TEXT_KEY": "(Registered)", "REGISTRATION_INSTITUTE_ADDRESS": "Ganiyari, District - Bilaspur", - "FEE_INFORMATION_LOCALE_KEY": "Fee Information", + "FEE_INFORMATION_LOCALE_KEY": "Patient Information", "NUTRITIONAL_VALUES_LOCALE_KEY": "Nutritional Values", - "REGISTRATION_PRINT_WITH_BARCODE": "Barcode Print" -} \ No newline at end of file + "REGISTRATION_PRINT_WITH_BARCODE": "Barcode Print", + "REGISTRATION_ADDITIONAL_INFO_KEY": "Additional Patient Information", + "REGISTRATION_REFERENCE_INFO_KEY":"Reference People", + "REGISTRATION_TRANSFERENCE_INFO_KEY": "Transference Information", + "REGISTRATION_HIVTEST_INFO_KEY":"HIV Test", + "REGISTRATION_HIV_TEST": "HIV Test", + "country_locale":"Country", + "province_locale":"Province", + "district_locale":"District", + "administrative_locale":"Administrative", + "locality_locale":"Locality", + "REGISTRATION_EDUCATION_KEY":"Education Details" +} diff --git a/openmrs/i18n/registration/locale_pt_BR.json b/openmrs/i18n/registration/locale_pt_BR.json index e961c41bc0..93f80e7a85 100644 --- a/openmrs/i18n/registration/locale_pt_BR.json +++ b/openmrs/i18n/registration/locale_pt_BR.json @@ -1,24 +1,37 @@ { - "REGISTRATION_SEARCH_CONFIG_KEY": "Pesquisar", - "REGISTRATION_CREATE_NEW_CONFIG_KEY":"Criar Novo", - "REGISTRATION_SEARCH_CONFIG_ACCESS_KEY": "e", - "REGISTRATION_CREATE_NEW_CONFIG_ACCESS_KEY": "n", - "REGISTRATION_VIEW_CONFIG_KEY": "Exibir", - "REGISTRATION_PRINT_REG_CARD_LOCAL_KEY" : "Imprimir Carto Reg. (Local)", - "REGISTRATION_PRINT_REG_CARD_KEY":"Imprimir Carto Registro", - "REGISTRATION_PRINT_SUPPLEMENTAL_PAPER":"Imprimir Papel Suplementar", - "REGISTRATION_AGE_ERROR_KEY":"Idade deve ser um valor positivo", - "REGISTRATION_TELEPHONE_NUMBER_ERROR_KEY":"Nmero do telefone deve ter no mnimo 8 dgitos", - "REGISTRATION_CASTE_TEXT_ERROR_KEY":"Casta deve contar somente caracteres alfanumricos", - "REGISTRATION_BRING_CARD_TEXT_KEY":" muito importante trazer o carto para o hospital.", - "REGISTRATION_TAKE_MEDICINES_TEXT_KEY": "Tomar medicamentos de acordo com as instrues do mdico.", - "REGISTRATION_TIMINGS_TEXT_KEY":"Horrio de inscrio das 8h30 s 12:00.", - "REGISTRATION_OPD_DAYS_TEXT_KEY" : "Dias de AMB so Segunda, Quarta, Sexta.", - "REGISTRATION_SUNDAYS_HOLIDAY_TEXT_KEY": "Domingos so feriados.", - "REGISTRATION_SMOKING_INJURIOUS_TEXT_KEY" : "Fumar e marcar tabaco pode causar cncer, doenas cardacas e asma.", - "REGISTRATION_INSTITUTE_NAME_TEXT_KEY": "Clnica Mdica", - "REGISTRATION_INSTITUTE_REGISTERED_TEXT_KEY": "(Registrado)", - "REGISTRATION_INSTITUTE_ADDRESS": "Cidade - Pas", - "FEE_INFORMATION_LOCALE_KEY": "Informao Livre", - "NUTRITIONAL_VALUES_LOCALE_KEY": "Valores Nutricionais" + "REGISTRATION_SEARCH_CONFIG_KEY":"Pesquisar", + "REGISTRATION_CREATE_NEW_CONFIG_KEY":"Criar Novo", + "REGISTRATION_SEARCH_CONFIG_ACCESS_KEY":"e", + "REGISTRATION_CREATE_NEW_CONFIG_ACCESS_KEY":"n", + "REGISTRATION_VIEW_CONFIG_KEY":"Ver", + "REGISTRATION_PRINT_REG_CARD_LOCAL_KEY":"Imprimir Carto Reg. (Local)", + "REGISTRATION_PRINT_REG_CARD_KEY":"ImPrimir Carto de Registo", + "REGISTRATION_PRINT_SUPPLEMENTAL_PAPER":"Imprimir Papel Suplementar", + "REGISTRATION_AGE_ERROR_KEY":"Idade deve ser um valor positivo", + "REGISTRATION_TELEPHONE_NUMBER_ERROR_KEY":"Nmero de Telefone deve ter no mnimo 6 nmero", + "REGISTRATION_CASTE_TEXT_ERROR_KEY":"Casta deve tter apenas caracteres alfanmericos", + "REGISTRATION_BRING_CARD_TEXT_KEY":" importante trazer o carto do paciente para o hospital", + "REGISTRATION_TAKE_MEDICINES_TEXT_KEY":"Tomar medicamentos de acordo com as instrues do mdico.", + "REGISTRATION_TIMINGS_TEXT_KEY":"Os horrios de registo so das 7:30 s 15:30", + "REGISTRATION_OPD_DAYS_TEXT_KEY":"Consultas externas so nas 2as, 4as e 6as.", + "REGISTRATION_SUNDAYS_HOLIDAY_TEXT_KEY":"Domingos so feriados.", + "REGISTRATION_SMOKING_INJURIOUS_TEXT_KEY":"Fumar, mascar tabaco pode causar cancro, doenas cardacas e ASMA.", + "REGISTRATION_INSTITUTE_NAME_TEXT_KEY":"Nome do Hospital", + "REGISTRATION_INSTITUTE_REGISTERED_TEXT_KEY":"(Registado)", + "REGISTRATION_INSTITUTE_ADDRESS":"Endereo do Hospital", + "FEE_INFORMATION_LOCALE_KEY":"Informao das Taxas", + "NUTRITIONAL_VALUES_LOCALE_KEY":"Valores Nutricionais", + "REGISTRATION_PRINT_WITH_BARCODE":"Imprimir com Cdigo de Barras", + + "REGISTRATION_ADDITIONAL_INFO_KEY": "Informao Adicional ao Paciente", + "REGISTRATION_REFERENCE_INFO_KEY":"Pessoas de referncia", + "REGISTRATION_TRANSFERENCE_INFO_KEY": "Transferncia", + "REGISTRATION_HIVTEST_INFO_KEY":"Teste de HIV", + "REGISTRATION_HIV_TEST": "HIV Test", + "country_locale":"Pais", + "province_locale":"Provincia", + "district_locale":"Distrito", + "administrative_locale":"Administrativo", + "locality_locale":"Localidade", + "education":"Nivel de Escolaridade" } From 0f6823083b4588e45ca292609359c32d823bb023 Mon Sep 17 00:00:00 2001 From: Amol Chavan Date: Thu, 31 Jan 2019 15:41:10 +0530 Subject: [PATCH 07/67] Amol | Updated order sequence of Program patient queue --- openmrs/apps/clinical/extension-programs.json | 6 +++--- openmrs/apps/registration/extension.json | 2 +- openmrs/i18n/registration/locale_en.json | 2 +- openmrs/i18n/registration/locale_pt_BR.json | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/openmrs/apps/clinical/extension-programs.json b/openmrs/apps/clinical/extension-programs.json index 13d1c6cab4..566d1b07bf 100644 --- a/openmrs/apps/clinical/extension-programs.json +++ b/openmrs/apps/clinical/extension-programs.json @@ -24,7 +24,7 @@ "forwardUrl": "#/programs/patient/{{patientUuid}}/consultationContext" }, "label": "ART Program", - "order": 12, + "order": 2, "requiredPrivilege": "app:clinical" }, "bahmniClinicalPatientsSearchActivePatientsFortbPrograms": { @@ -37,7 +37,7 @@ "forwardUrl": "#/programs/patient/{{patientUuid}}/consultationContext" }, "label": "TB Program", - "order": 13, + "order": 3, "requiredPrivilege": "app:clinical" }, "bahmniClinicalPatientsSearchAllPatients": { @@ -49,7 +49,7 @@ "forwardUrl": "#/programs/patient/{{patientUuid}}/consultationContext" }, "label": "All", - "order": 22, + "order": 4, "requiredPrivilege": "app:clinical" }, "bahmniClinicalConceptSetGroupObservationsHistory": { diff --git a/openmrs/apps/registration/extension.json b/openmrs/apps/registration/extension.json index d258e0c021..78d22e5336 100644 --- a/openmrs/apps/registration/extension.json +++ b/openmrs/apps/registration/extension.json @@ -52,7 +52,7 @@ "type": "config", "extensionParams": { "conceptName": "Patient_information", - "translationKey": "FEE_INFORMATION_LOCALE_KEY", + "translationKey": "PATIENT_OBS_INFORMATION_LOCALE_KEY", "required":true }, "order": 2, diff --git a/openmrs/i18n/registration/locale_en.json b/openmrs/i18n/registration/locale_en.json index da23a3413b..c04cac65cd 100644 --- a/openmrs/i18n/registration/locale_en.json +++ b/openmrs/i18n/registration/locale_en.json @@ -19,7 +19,7 @@ "REGISTRATION_INSTITUTE_NAME_TEXT_KEY": "POC HF 01", "REGISTRATION_INSTITUTE_REGISTERED_TEXT_KEY": "(Registered)", "REGISTRATION_INSTITUTE_ADDRESS": "Ganiyari, District - Bilaspur", - "FEE_INFORMATION_LOCALE_KEY": "Patient Information", + "PATIENT_OBS_INFORMATION_LOCALE_KEY": "Patient Information", "NUTRITIONAL_VALUES_LOCALE_KEY": "Nutritional Values", "REGISTRATION_PRINT_WITH_BARCODE": "Barcode Print", "REGISTRATION_ADDITIONAL_INFO_KEY": "Additional Patient Information", diff --git a/openmrs/i18n/registration/locale_pt_BR.json b/openmrs/i18n/registration/locale_pt_BR.json index 93f80e7a85..dad85d1f8b 100644 --- a/openmrs/i18n/registration/locale_pt_BR.json +++ b/openmrs/i18n/registration/locale_pt_BR.json @@ -19,7 +19,7 @@ "REGISTRATION_INSTITUTE_NAME_TEXT_KEY":"Nome do Hospital", "REGISTRATION_INSTITUTE_REGISTERED_TEXT_KEY":"(Registado)", "REGISTRATION_INSTITUTE_ADDRESS":"Endereo do Hospital", - "FEE_INFORMATION_LOCALE_KEY":"Informao das Taxas", + "PATIENT_OBS_INFORMATION_LOCALE_KEY":"Informao do paciente", "NUTRITIONAL_VALUES_LOCALE_KEY":"Valores Nutricionais", "REGISTRATION_PRINT_WITH_BARCODE":"Imprimir com Cdigo de Barras", From 6eb54a86214cd6ccbef3b607586435c2534dd327 Mon Sep 17 00:00:00 2001 From: Joao Machiana Date: Tue, 19 Feb 2019 18:44:56 +0200 Subject: [PATCH 08/67] Changeg the logo and title text on landing and login page of Bahmni --- openmrs/apps/home/whiteLabel.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/openmrs/apps/home/whiteLabel.json b/openmrs/apps/home/whiteLabel.json index 10305921fc..21da43406c 100644 --- a/openmrs/apps/home/whiteLabel.json +++ b/openmrs/apps/home/whiteLabel.json @@ -1,11 +1,11 @@ { "homePage": { - "header_text": "WELCOME TO
BAHMNI EMR & HOSPITAL SERVICE", - "logo": "/bahmni/images/bahmniLogoFull.png", + "header_text": "BEM VINDO AO
SISTEMA ELECTRÓNICO DE SEGUIMENTO DE PACIENTES (SESP)
POINT OF CARE (POC)", + "logo": "/bahmni/images/emblem_of_mozambique.png", "title_text": " " }, "loginPage": { - "logo": "/bahmni/images/bahmniLogoFull.png", + "logo": "/bahmni/images/emblem_of_mozambique.png", "showHeaderText": true, "showTitleText": false }, From aed0633e5d7e60c5706f486d518f9d452d9c5ff7 Mon Sep 17 00:00:00 2001 From: Amol Chavan Date: Tue, 26 Feb 2019 14:58:55 +0530 Subject: [PATCH 09/67] MPOC-85-Add Patient Address Details --- openmrs/i18n/registration/locale_en.json | 7 ++++++- openmrs/i18n/registration/locale_pt_BR.json | 7 ++++++- 2 files changed, 12 insertions(+), 2 deletions(-) diff --git a/openmrs/i18n/registration/locale_en.json b/openmrs/i18n/registration/locale_en.json index c04cac65cd..e800882882 100644 --- a/openmrs/i18n/registration/locale_en.json +++ b/openmrs/i18n/registration/locale_en.json @@ -32,5 +32,10 @@ "district_locale":"District", "administrative_locale":"Administrative", "locality_locale":"Locality", - "REGISTRATION_EDUCATION_KEY":"Education Details" + "ADDRESS_CLOSE_OF_LOCALE":"Close of", + "ADDRESS_AVENUE_STREET_LOCALE":"Avenue / Street", + "ADDRESS_BLOCK_LOCALE":"Block", + "ADDRESS_FLOOR_FLAT_LOCALE":"Floor / Flat", + "ADDRESS_HOUSE_NUMBER_LOCALE":"House Number", + "REGISTRATION_EDUCATION_KEY":"Education Details" } diff --git a/openmrs/i18n/registration/locale_pt_BR.json b/openmrs/i18n/registration/locale_pt_BR.json index dad85d1f8b..4f0b74796f 100644 --- a/openmrs/i18n/registration/locale_pt_BR.json +++ b/openmrs/i18n/registration/locale_pt_BR.json @@ -33,5 +33,10 @@ "district_locale":"Distrito", "administrative_locale":"Administrativo", "locality_locale":"Localidade", - "education":"Nivel de Escolaridade" + "education":"Nivel de Escolaridade", + "ADDRESS_CLOSE_OF_LOCALE":"Perto De", + "ADDRESS_AVENUE_STREET_LOCALE":"Avenida/Rua", + "ADDRESS_BLOCK_LOCALE":"Quateiro", + "ADDRESS_FLOOR_FLAT_LOCALE":"Andar / Flat", + "ADDRESS_HOUSE_NUMBER_LOCALE":"N^o^ da Casa" } From 0dcf58287d01a14f3f03d73e2dd141296d19c6f0 Mon Sep 17 00:00:00 2001 From: Joao Machiana Date: Tue, 26 Feb 2019 17:27:41 +0200 Subject: [PATCH 10/67] . --- openmrs/i18n/registration/locale_pt_BR.json | 32 ++++++++++----------- 1 file changed, 16 insertions(+), 16 deletions(-) mode change 100644 => 100755 openmrs/i18n/registration/locale_pt_BR.json diff --git a/openmrs/i18n/registration/locale_pt_BR.json b/openmrs/i18n/registration/locale_pt_BR.json old mode 100644 new mode 100755 index 4f0b74796f..994e0b1670 --- a/openmrs/i18n/registration/locale_pt_BR.json +++ b/openmrs/i18n/registration/locale_pt_BR.json @@ -4,28 +4,28 @@ "REGISTRATION_SEARCH_CONFIG_ACCESS_KEY":"e", "REGISTRATION_CREATE_NEW_CONFIG_ACCESS_KEY":"n", "REGISTRATION_VIEW_CONFIG_KEY":"Ver", - "REGISTRATION_PRINT_REG_CARD_LOCAL_KEY":"Imprimir Carto Reg. (Local)", - "REGISTRATION_PRINT_REG_CARD_KEY":"ImPrimir Carto de Registo", + "REGISTRATION_PRINT_REG_CARD_LOCAL_KEY":"Imprimir Cartão Reg. (Local)", + "REGISTRATION_PRINT_REG_CARD_KEY":"ImPrimir Cartão de Registo", "REGISTRATION_PRINT_SUPPLEMENTAL_PAPER":"Imprimir Papel Suplementar", "REGISTRATION_AGE_ERROR_KEY":"Idade deve ser um valor positivo", - "REGISTRATION_TELEPHONE_NUMBER_ERROR_KEY":"Nmero de Telefone deve ter no mnimo 6 nmero", - "REGISTRATION_CASTE_TEXT_ERROR_KEY":"Casta deve tter apenas caracteres alfanmericos", - "REGISTRATION_BRING_CARD_TEXT_KEY":" importante trazer o carto do paciente para o hospital", - "REGISTRATION_TAKE_MEDICINES_TEXT_KEY":"Tomar medicamentos de acordo com as instrues do mdico.", - "REGISTRATION_TIMINGS_TEXT_KEY":"Os horrios de registo so das 7:30 s 15:30", - "REGISTRATION_OPD_DAYS_TEXT_KEY":"Consultas externas so nas 2as, 4as e 6as.", - "REGISTRATION_SUNDAYS_HOLIDAY_TEXT_KEY":"Domingos so feriados.", - "REGISTRATION_SMOKING_INJURIOUS_TEXT_KEY":"Fumar, mascar tabaco pode causar cancro, doenas cardacas e ASMA.", + "REGISTRATION_TELEPHONE_NUMBER_ERROR_KEY":"Número de Telefone deve ter no mínimo 6 digitos", + "REGISTRATION_CASTE_TEXT_ERROR_KEY":"Casta deve tter apenas caracteres alfanúmericos", + "REGISTRATION_BRING_CARD_TEXT_KEY":"É importante trazer o cartão do paciente para o hospital", + "REGISTRATION_TAKE_MEDICINES_TEXT_KEY":"Tomar medicamentos de acordo com as instruções do médico.", + "REGISTRATION_TIMINGS_TEXT_KEY":"Os horários de registo são das 7:30 às 15:30", + "REGISTRATION_OPD_DAYS_TEXT_KEY":"Consultas externas são nas 2as, 4as e 6as.", + "REGISTRATION_SUNDAYS_HOLIDAY_TEXT_KEY":"Domingos são feriados.", + "REGISTRATION_SMOKING_INJURIOUS_TEXT_KEY":"Fumar, mascar tabaco pode causar cancro, doenças cardíacas e ASMA.", "REGISTRATION_INSTITUTE_NAME_TEXT_KEY":"Nome do Hospital", "REGISTRATION_INSTITUTE_REGISTERED_TEXT_KEY":"(Registado)", - "REGISTRATION_INSTITUTE_ADDRESS":"Endereo do Hospital", - "PATIENT_OBS_INFORMATION_LOCALE_KEY":"Informao do paciente", + "REGISTRATION_INSTITUTE_ADDRESS":"Endereço do Hospital", + "PATIENT_OBS_INFORMATION_LOCALE_KEY":"Informação do paciente", "NUTRITIONAL_VALUES_LOCALE_KEY":"Valores Nutricionais", - "REGISTRATION_PRINT_WITH_BARCODE":"Imprimir com Cdigo de Barras", + "REGISTRATION_PRINT_WITH_BARCODE":"Imprimir com Código de Barras", - "REGISTRATION_ADDITIONAL_INFO_KEY": "Informao Adicional ao Paciente", - "REGISTRATION_REFERENCE_INFO_KEY":"Pessoas de referncia", - "REGISTRATION_TRANSFERENCE_INFO_KEY": "Transferncia", + "REGISTRATION_ADDITIONAL_INFO_KEY": "Informação Adicional ao Paciente", + "REGISTRATION_REFERENCE_INFO_KEY":"Confidente", + "REGISTRATION_TRANSFERENCE_INFO_KEY": "Transferência", "REGISTRATION_HIVTEST_INFO_KEY":"Teste de HIV", "REGISTRATION_HIV_TEST": "HIV Test", "country_locale":"Pais", From 1b90a0a8085958095b008cbe88af197e60670a80 Mon Sep 17 00:00:00 2001 From: Joao Machiana Date: Tue, 26 Feb 2019 17:29:39 +0200 Subject: [PATCH 11/67] MPOC-96 Fixed the words not being displayed correctly --- .gitignore | 0 .tx/config | 0 LICENSE | 0 README.md | 0 offline/openmrs/apps/clinical/.extension.json.swp | Bin openelis/images/labLogo.jpg | Bin openelis/migrations/liquibase.xml | 0 openmrs/apps/JsBarcode.all.min.js | 0 openmrs/apps/admin/app.json | 0 openmrs/apps/admin/extension.json | 0 openmrs/apps/adt/app.json | 0 openmrs/apps/adt/extension.json | 0 openmrs/apps/appointments/app.json | 0 openmrs/apps/appointments/extension.json | 0 openmrs/apps/appointments/printListView.html | 0 openmrs/apps/clinical/app.json | 0 openmrs/apps/clinical/dashboard.json | 0 openmrs/apps/clinical/extension-programs.json | 0 openmrs/apps/clinical/extension.json | 0 openmrs/apps/clinical/formConditions.js | 0 openmrs/apps/clinical/growthChartReference.csv | 0 openmrs/apps/clinical/medication.json | 0 openmrs/apps/clinical/visit.json | 0 .../apps/customDisplayControl/js/customControl.js | 0 .../views/birthCertificate.html | 0 .../views/customTreatmentChart.html | 0 .../views/deathCertificate.html | 0 .../views/patientAppointmentsDashboard.html | 0 openmrs/apps/dbNameCondition/dbNameCondition.js | 0 openmrs/apps/documentUpload/app.json | 0 .../documentUpload/extension-Patient Document.json | 0 .../apps/documentUpload/extension-RADIOLOGY.json | 0 openmrs/apps/home/app.json | 0 openmrs/apps/home/extension.json | 0 openmrs/apps/home/locale_languages.json | 0 openmrs/apps/home/offline-config.json | 0 openmrs/apps/home/whiteLabel.json | 0 openmrs/apps/ipd/app.json | 0 openmrs/apps/ipd/extension.json | 0 openmrs/apps/orders/app.json | 0 openmrs/apps/orders/extension.json | 0 openmrs/apps/ot/app.json | 0 openmrs/apps/ot/extension.json | 0 openmrs/apps/ot/printListView.html | 0 openmrs/apps/registration/app.json | 0 openmrs/apps/registration/appTemplate.json | 0 openmrs/apps/registration/attributesConditions.js | 0 openmrs/apps/registration/extension.json | 0 openmrs/apps/registration/fieldValidation.js | 0 .../registrationCardLayout/css/print.css | 0 .../registrationCardLayout/images/bahmni-icon.png | Bin .../registration/registrationCardLayout/print.html | 0 .../registrationCardLayout/printWithBarcode.html | 0 .../registrationCardLayout/print_local.html | 0 .../registrationCardLayout/print_registration.html | 0 .../supplementalPaperLayout/css/print.css | 0 .../registration/supplementalPaperLayout/print.html | 0 openmrs/apps/reports/app.json | 0 openmrs/apps/reports/extension.json | 0 openmrs/apps/reports/reports.json | 0 openmrs/apps/reports/sql/testCount.sql | 0 openmrs/aqs/aqs_query.json | 0 openmrs/beanshell/openelis-prefetch-eventfilter.bsh | 0 .../FilterDonorTestResults.groovy | 0 openmrs/i18n/admin/locale_en.json | 0 openmrs/i18n/adt/locale_en.json | 0 openmrs/i18n/adt/locale_pt_BR.json | 0 openmrs/i18n/clinical/locale_en.json | 0 openmrs/i18n/clinical/locale_es.json | 0 openmrs/i18n/clinical/locale_fr.json | 0 openmrs/i18n/clinical/locale_pt_BR.json | 0 openmrs/i18n/document-upload/locale_en.json | 0 openmrs/i18n/document-upload/locale_fr.json | 0 openmrs/i18n/document-upload/locale_pt_BR.json | 0 openmrs/i18n/home/locale_en.json | 0 openmrs/i18n/home/locale_es.json | 0 openmrs/i18n/home/locale_fr.json | 0 openmrs/i18n/home/locale_pt_BR.json | 0 openmrs/i18n/ipd/locale_en.json | 0 openmrs/i18n/orders/locale_en.json | 0 openmrs/i18n/orders/locale_fr.json | 0 openmrs/i18n/orders/locale_pt_BR.json | 0 openmrs/i18n/ot/locale_en.json | 0 openmrs/i18n/registration/locale_en.json | 0 openmrs/i18n/registration/locale_fr.json | 0 openmrs/migrations/liquibase.xml | 0 .../migrations/updatePatientProgramToEpisode.sql | 0 openmrs/obscalculator/BMI_chart.csv | 0 .../obscalculator/BahmniObsValueCalculator.groovy | 0 openmrs/ordertemplates/templates.json | 0 .../DefaultPatientMatchingAlgorithm | 0 openmrs/rulesengine/drugorderrules/Fever.csv | 0 openmrs/rulesengine/drugorderrules/Tuberculosis.csv | 0 .../rulesengineextension/Chemotherapy.groovy | 0 .../templates/All_templates_generic_concepts.csv | 0 openmrs/templates/Anaemia_concept_sets.csv | 0 openmrs/templates/Anaemia_concepts.csv | 0 openmrs/templates/Arthritis_concept_sets.csv | 0 openmrs/templates/Arthritis_concepts.csv | 0 openmrs/templates/Breast_cancer_concept_sets.csv | 0 openmrs/templates/Breast_cancer_concepts.csv | 0 .../templates/Breast_cancer_generic_concepts.csv | 0 openmrs/templates/COPD_intake_concept_sets.csv | 0 openmrs/templates/COPD_intake_concepts.csv | 0 openmrs/templates/COPD_progress_concept_sets.csv | 0 openmrs/templates/COPD_progress_concepts.csv | 0 openmrs/templates/Cervical_cancer_concept_sets.csv | 0 openmrs/templates/Cervical_cancer_concepts.csv | 0 .../templates/Cervical_cancer_generic_concepts.csv | 0 openmrs/templates/Colon_cancer_concept_sets.csv | 0 openmrs/templates/Colon_cancer_concepts.csv | 0 openmrs/templates/Colon_cancer_generic_concepts.csv | 0 .../Congetive_heart_failure_intake_concept_sets.csv | 0 .../Congetive_heart_failure_intake_concepts.csv | 0 ...ongetive_heart_failure_progress_concept_sets.csv | 0 .../Congetive_heart_failure_progress_concepts.csv | 0 .../Coronary_heart_disease_intake_concept_set.csv | 0 .../Coronary_heart_disease_intake_concept_sets.csv | 0 ...Coronary_heart_disease_progress_concept_sets.csv | 0 .../Coronary_heart_disease_progress_concepts.csv | 0 openmrs/templates/Detailed_history_concept_sets.csv | 0 openmrs/templates/Detailed_history_concepts.csv | 0 openmrs/templates/Diabetes_concept_sets.csv | 0 openmrs/templates/Diabetes_concepts.csv | 0 openmrs/templates/Epilepsy_concept_sets.csv | 0 openmrs/templates/Epilepsy_concepts.csv | 0 openmrs/templates/Gastric_cancer_concept_sets.csv | 0 openmrs/templates/Gastric_cancer_concepts.csv | 0 openmrs/templates/Gastric_generic_concepts.csv | 0 openmrs/templates/Generic_concepts.csv | 0 openmrs/templates/Hyperthyroidism_concept_sets.csv | 0 openmrs/templates/Hyperthyroidism_concepts.csv | 0 openmrs/templates/Kaposis_sarcoma_concept_sets.csv | 0 openmrs/templates/Kaposis_sarcoma_concepts.csv | 0 .../templates/Kaposis_sarcoma_generic_concepts.csv | 0 openmrs/templates/Leprosy_concept_sets.csv | 0 openmrs/templates/Leprosy_concepts.csv | 0 openmrs/templates/Leprosy_generic_concepts.csv | 0 openmrs/templates/Nephroblastoma_concept_sets.csv | 0 openmrs/templates/Nephroblastoma_concepts.csv | 0 .../templates/Nephroblastoma_generic_concepts.csv | 0 .../Neurological_disorder_concept_sets.csv | 0 .../templates/Neurological_disorder_concepts.csv | 0 openmrs/templates/Operation_notes_concept_sets.csv | 0 openmrs/templates/Operation_notes_concepts.csv | 0 .../templates/Operation_notes_generic_concepts.csv | 0 .../Rheumatic_heart_disease_intake_concept_sets.csv | 0 .../Rheumatic_heart_disease_intake_concepts.csv | 0 openmrs/templates/Sickle_cell_concept_sets.csv | 0 openmrs/templates/Sickle_cell_concepts.csv | 0 openmrs/templates/Sickle_cell_generic_concepts.csv | 0 openmrs/templates/Tuberculosis_MDR_concepts.csv | 0 openmrs/templates/Tuberculosis_concept_sets.csv | 0 openmrs/templates/Tuberculosis_generic_concepts.csv | 0 openmrs/templates/Tuberculosis_intake_concepts.csv | 0 openmrs/templates/Tuberculosis_outcome_concepts.csv | 0 .../templates/Tuberculosis_progress_concepts.csv | 0 .../templates/Tuberculosis_retreatment_concepts.csv | 0 openmrs/templates/Undernutrition_concept_sets.csv | 0 openmrs/templates/Undernutrition_concepts.csv | 0 .../TreatmentRegimenExtension.groovy | 0 161 files changed, 0 insertions(+), 0 deletions(-) mode change 100644 => 100755 .gitignore mode change 100644 => 100755 .tx/config mode change 100644 => 100755 LICENSE mode change 100644 => 100755 README.md mode change 100644 => 100755 offline/openmrs/apps/clinical/.extension.json.swp mode change 100644 => 100755 openelis/images/labLogo.jpg mode change 100644 => 100755 openelis/migrations/liquibase.xml mode change 100644 => 100755 openmrs/apps/JsBarcode.all.min.js mode change 100644 => 100755 openmrs/apps/admin/app.json mode change 100644 => 100755 openmrs/apps/admin/extension.json mode change 100644 => 100755 openmrs/apps/adt/app.json mode change 100644 => 100755 openmrs/apps/adt/extension.json mode change 100644 => 100755 openmrs/apps/appointments/app.json mode change 100644 => 100755 openmrs/apps/appointments/extension.json mode change 100644 => 100755 openmrs/apps/appointments/printListView.html mode change 100644 => 100755 openmrs/apps/clinical/app.json mode change 100644 => 100755 openmrs/apps/clinical/dashboard.json mode change 100644 => 100755 openmrs/apps/clinical/extension-programs.json mode change 100644 => 100755 openmrs/apps/clinical/extension.json mode change 100644 => 100755 openmrs/apps/clinical/formConditions.js mode change 100644 => 100755 openmrs/apps/clinical/growthChartReference.csv mode change 100644 => 100755 openmrs/apps/clinical/medication.json mode change 100644 => 100755 openmrs/apps/clinical/visit.json mode change 100644 => 100755 openmrs/apps/customDisplayControl/js/customControl.js mode change 100644 => 100755 openmrs/apps/customDisplayControl/views/birthCertificate.html mode change 100644 => 100755 openmrs/apps/customDisplayControl/views/customTreatmentChart.html mode change 100644 => 100755 openmrs/apps/customDisplayControl/views/deathCertificate.html mode change 100644 => 100755 openmrs/apps/customDisplayControl/views/patientAppointmentsDashboard.html mode change 100644 => 100755 openmrs/apps/dbNameCondition/dbNameCondition.js mode change 100644 => 100755 openmrs/apps/documentUpload/app.json mode change 100644 => 100755 openmrs/apps/documentUpload/extension-Patient Document.json mode change 100644 => 100755 openmrs/apps/documentUpload/extension-RADIOLOGY.json mode change 100644 => 100755 openmrs/apps/home/app.json mode change 100644 => 100755 openmrs/apps/home/extension.json mode change 100644 => 100755 openmrs/apps/home/locale_languages.json mode change 100644 => 100755 openmrs/apps/home/offline-config.json mode change 100644 => 100755 openmrs/apps/home/whiteLabel.json mode change 100644 => 100755 openmrs/apps/ipd/app.json mode change 100644 => 100755 openmrs/apps/ipd/extension.json mode change 100644 => 100755 openmrs/apps/orders/app.json mode change 100644 => 100755 openmrs/apps/orders/extension.json mode change 100644 => 100755 openmrs/apps/ot/app.json mode change 100644 => 100755 openmrs/apps/ot/extension.json mode change 100644 => 100755 openmrs/apps/ot/printListView.html mode change 100644 => 100755 openmrs/apps/registration/app.json mode change 100644 => 100755 openmrs/apps/registration/appTemplate.json mode change 100644 => 100755 openmrs/apps/registration/attributesConditions.js mode change 100644 => 100755 openmrs/apps/registration/extension.json mode change 100644 => 100755 openmrs/apps/registration/fieldValidation.js mode change 100644 => 100755 openmrs/apps/registration/registrationCardLayout/css/print.css mode change 100644 => 100755 openmrs/apps/registration/registrationCardLayout/images/bahmni-icon.png mode change 100644 => 100755 openmrs/apps/registration/registrationCardLayout/print.html mode change 100644 => 100755 openmrs/apps/registration/registrationCardLayout/printWithBarcode.html mode change 100644 => 100755 openmrs/apps/registration/registrationCardLayout/print_local.html mode change 100644 => 100755 openmrs/apps/registration/registrationCardLayout/print_registration.html mode change 100644 => 100755 openmrs/apps/registration/supplementalPaperLayout/css/print.css mode change 100644 => 100755 openmrs/apps/registration/supplementalPaperLayout/print.html mode change 100644 => 100755 openmrs/apps/reports/app.json mode change 100644 => 100755 openmrs/apps/reports/extension.json mode change 100644 => 100755 openmrs/apps/reports/reports.json mode change 100644 => 100755 openmrs/apps/reports/sql/testCount.sql mode change 100644 => 100755 openmrs/aqs/aqs_query.json mode change 100644 => 100755 openmrs/beanshell/openelis-prefetch-eventfilter.bsh mode change 100644 => 100755 openmrs/elisFeedInterceptor/FilterDonorTestResults.groovy mode change 100644 => 100755 openmrs/i18n/admin/locale_en.json mode change 100644 => 100755 openmrs/i18n/adt/locale_en.json mode change 100644 => 100755 openmrs/i18n/adt/locale_pt_BR.json mode change 100644 => 100755 openmrs/i18n/clinical/locale_en.json mode change 100644 => 100755 openmrs/i18n/clinical/locale_es.json mode change 100644 => 100755 openmrs/i18n/clinical/locale_fr.json mode change 100644 => 100755 openmrs/i18n/clinical/locale_pt_BR.json mode change 100644 => 100755 openmrs/i18n/document-upload/locale_en.json mode change 100644 => 100755 openmrs/i18n/document-upload/locale_fr.json mode change 100644 => 100755 openmrs/i18n/document-upload/locale_pt_BR.json mode change 100644 => 100755 openmrs/i18n/home/locale_en.json mode change 100644 => 100755 openmrs/i18n/home/locale_es.json mode change 100644 => 100755 openmrs/i18n/home/locale_fr.json mode change 100644 => 100755 openmrs/i18n/home/locale_pt_BR.json mode change 100644 => 100755 openmrs/i18n/ipd/locale_en.json mode change 100644 => 100755 openmrs/i18n/orders/locale_en.json mode change 100644 => 100755 openmrs/i18n/orders/locale_fr.json mode change 100644 => 100755 openmrs/i18n/orders/locale_pt_BR.json mode change 100644 => 100755 openmrs/i18n/ot/locale_en.json mode change 100644 => 100755 openmrs/i18n/registration/locale_en.json mode change 100644 => 100755 openmrs/i18n/registration/locale_fr.json mode change 100644 => 100755 openmrs/migrations/liquibase.xml mode change 100644 => 100755 openmrs/migrations/updatePatientProgramToEpisode.sql mode change 100644 => 100755 openmrs/obscalculator/BMI_chart.csv mode change 100644 => 100755 openmrs/obscalculator/BahmniObsValueCalculator.groovy mode change 100644 => 100755 openmrs/ordertemplates/templates.json mode change 100644 => 100755 openmrs/patientMatchingAlgorithm/DefaultPatientMatchingAlgorithm mode change 100644 => 100755 openmrs/rulesengine/drugorderrules/Fever.csv mode change 100644 => 100755 openmrs/rulesengine/drugorderrules/Tuberculosis.csv mode change 100644 => 100755 openmrs/rulesengine/rulesengineextension/Chemotherapy.groovy mode change 100644 => 100755 openmrs/templates/All_templates_generic_concepts.csv mode change 100644 => 100755 openmrs/templates/Anaemia_concept_sets.csv mode change 100644 => 100755 openmrs/templates/Anaemia_concepts.csv mode change 100644 => 100755 openmrs/templates/Arthritis_concept_sets.csv mode change 100644 => 100755 openmrs/templates/Arthritis_concepts.csv mode change 100644 => 100755 openmrs/templates/Breast_cancer_concept_sets.csv mode change 100644 => 100755 openmrs/templates/Breast_cancer_concepts.csv mode change 100644 => 100755 openmrs/templates/Breast_cancer_generic_concepts.csv mode change 100644 => 100755 openmrs/templates/COPD_intake_concept_sets.csv mode change 100644 => 100755 openmrs/templates/COPD_intake_concepts.csv mode change 100644 => 100755 openmrs/templates/COPD_progress_concept_sets.csv mode change 100644 => 100755 openmrs/templates/COPD_progress_concepts.csv mode change 100644 => 100755 openmrs/templates/Cervical_cancer_concept_sets.csv mode change 100644 => 100755 openmrs/templates/Cervical_cancer_concepts.csv mode change 100644 => 100755 openmrs/templates/Cervical_cancer_generic_concepts.csv mode change 100644 => 100755 openmrs/templates/Colon_cancer_concept_sets.csv mode change 100644 => 100755 openmrs/templates/Colon_cancer_concepts.csv mode change 100644 => 100755 openmrs/templates/Colon_cancer_generic_concepts.csv mode change 100644 => 100755 openmrs/templates/Congetive_heart_failure_intake_concept_sets.csv mode change 100644 => 100755 openmrs/templates/Congetive_heart_failure_intake_concepts.csv mode change 100644 => 100755 openmrs/templates/Congetive_heart_failure_progress_concept_sets.csv mode change 100644 => 100755 openmrs/templates/Congetive_heart_failure_progress_concepts.csv mode change 100644 => 100755 openmrs/templates/Coronary_heart_disease_intake_concept_set.csv mode change 100644 => 100755 openmrs/templates/Coronary_heart_disease_intake_concept_sets.csv mode change 100644 => 100755 openmrs/templates/Coronary_heart_disease_progress_concept_sets.csv mode change 100644 => 100755 openmrs/templates/Coronary_heart_disease_progress_concepts.csv mode change 100644 => 100755 openmrs/templates/Detailed_history_concept_sets.csv mode change 100644 => 100755 openmrs/templates/Detailed_history_concepts.csv mode change 100644 => 100755 openmrs/templates/Diabetes_concept_sets.csv mode change 100644 => 100755 openmrs/templates/Diabetes_concepts.csv mode change 100644 => 100755 openmrs/templates/Epilepsy_concept_sets.csv mode change 100644 => 100755 openmrs/templates/Epilepsy_concepts.csv mode change 100644 => 100755 openmrs/templates/Gastric_cancer_concept_sets.csv mode change 100644 => 100755 openmrs/templates/Gastric_cancer_concepts.csv mode change 100644 => 100755 openmrs/templates/Gastric_generic_concepts.csv mode change 100644 => 100755 openmrs/templates/Generic_concepts.csv mode change 100644 => 100755 openmrs/templates/Hyperthyroidism_concept_sets.csv mode change 100644 => 100755 openmrs/templates/Hyperthyroidism_concepts.csv mode change 100644 => 100755 openmrs/templates/Kaposis_sarcoma_concept_sets.csv mode change 100644 => 100755 openmrs/templates/Kaposis_sarcoma_concepts.csv mode change 100644 => 100755 openmrs/templates/Kaposis_sarcoma_generic_concepts.csv mode change 100644 => 100755 openmrs/templates/Leprosy_concept_sets.csv mode change 100644 => 100755 openmrs/templates/Leprosy_concepts.csv mode change 100644 => 100755 openmrs/templates/Leprosy_generic_concepts.csv mode change 100644 => 100755 openmrs/templates/Nephroblastoma_concept_sets.csv mode change 100644 => 100755 openmrs/templates/Nephroblastoma_concepts.csv mode change 100644 => 100755 openmrs/templates/Nephroblastoma_generic_concepts.csv mode change 100644 => 100755 openmrs/templates/Neurological_disorder_concept_sets.csv mode change 100644 => 100755 openmrs/templates/Neurological_disorder_concepts.csv mode change 100644 => 100755 openmrs/templates/Operation_notes_concept_sets.csv mode change 100644 => 100755 openmrs/templates/Operation_notes_concepts.csv mode change 100644 => 100755 openmrs/templates/Operation_notes_generic_concepts.csv mode change 100644 => 100755 openmrs/templates/Rheumatic_heart_disease_intake_concept_sets.csv mode change 100644 => 100755 openmrs/templates/Rheumatic_heart_disease_intake_concepts.csv mode change 100644 => 100755 openmrs/templates/Sickle_cell_concept_sets.csv mode change 100644 => 100755 openmrs/templates/Sickle_cell_concepts.csv mode change 100644 => 100755 openmrs/templates/Sickle_cell_generic_concepts.csv mode change 100644 => 100755 openmrs/templates/Tuberculosis_MDR_concepts.csv mode change 100644 => 100755 openmrs/templates/Tuberculosis_concept_sets.csv mode change 100644 => 100755 openmrs/templates/Tuberculosis_generic_concepts.csv mode change 100644 => 100755 openmrs/templates/Tuberculosis_intake_concepts.csv mode change 100644 => 100755 openmrs/templates/Tuberculosis_outcome_concepts.csv mode change 100644 => 100755 openmrs/templates/Tuberculosis_progress_concepts.csv mode change 100644 => 100755 openmrs/templates/Tuberculosis_retreatment_concepts.csv mode change 100644 => 100755 openmrs/templates/Undernutrition_concept_sets.csv mode change 100644 => 100755 openmrs/templates/Undernutrition_concepts.csv mode change 100644 => 100755 openmrs/treatmentRegimenExtension/TreatmentRegimenExtension.groovy diff --git a/.gitignore b/.gitignore old mode 100644 new mode 100755 diff --git a/.tx/config b/.tx/config old mode 100644 new mode 100755 diff --git a/LICENSE b/LICENSE old mode 100644 new mode 100755 diff --git a/README.md b/README.md old mode 100644 new mode 100755 diff --git a/offline/openmrs/apps/clinical/.extension.json.swp b/offline/openmrs/apps/clinical/.extension.json.swp old mode 100644 new mode 100755 diff --git a/openelis/images/labLogo.jpg b/openelis/images/labLogo.jpg old mode 100644 new mode 100755 diff --git a/openelis/migrations/liquibase.xml b/openelis/migrations/liquibase.xml old mode 100644 new mode 100755 diff --git a/openmrs/apps/JsBarcode.all.min.js b/openmrs/apps/JsBarcode.all.min.js old mode 100644 new mode 100755 diff --git a/openmrs/apps/admin/app.json b/openmrs/apps/admin/app.json old mode 100644 new mode 100755 diff --git a/openmrs/apps/admin/extension.json b/openmrs/apps/admin/extension.json old mode 100644 new mode 100755 diff --git a/openmrs/apps/adt/app.json b/openmrs/apps/adt/app.json old mode 100644 new mode 100755 diff --git a/openmrs/apps/adt/extension.json b/openmrs/apps/adt/extension.json old mode 100644 new mode 100755 diff --git a/openmrs/apps/appointments/app.json b/openmrs/apps/appointments/app.json old mode 100644 new mode 100755 diff --git a/openmrs/apps/appointments/extension.json b/openmrs/apps/appointments/extension.json old mode 100644 new mode 100755 diff --git a/openmrs/apps/appointments/printListView.html b/openmrs/apps/appointments/printListView.html old mode 100644 new mode 100755 diff --git a/openmrs/apps/clinical/app.json b/openmrs/apps/clinical/app.json old mode 100644 new mode 100755 diff --git a/openmrs/apps/clinical/dashboard.json b/openmrs/apps/clinical/dashboard.json old mode 100644 new mode 100755 diff --git a/openmrs/apps/clinical/extension-programs.json b/openmrs/apps/clinical/extension-programs.json old mode 100644 new mode 100755 diff --git a/openmrs/apps/clinical/extension.json b/openmrs/apps/clinical/extension.json old mode 100644 new mode 100755 diff --git a/openmrs/apps/clinical/formConditions.js b/openmrs/apps/clinical/formConditions.js old mode 100644 new mode 100755 diff --git a/openmrs/apps/clinical/growthChartReference.csv b/openmrs/apps/clinical/growthChartReference.csv old mode 100644 new mode 100755 diff --git a/openmrs/apps/clinical/medication.json b/openmrs/apps/clinical/medication.json old mode 100644 new mode 100755 diff --git a/openmrs/apps/clinical/visit.json b/openmrs/apps/clinical/visit.json old mode 100644 new mode 100755 diff --git a/openmrs/apps/customDisplayControl/js/customControl.js b/openmrs/apps/customDisplayControl/js/customControl.js old mode 100644 new mode 100755 diff --git a/openmrs/apps/customDisplayControl/views/birthCertificate.html b/openmrs/apps/customDisplayControl/views/birthCertificate.html old mode 100644 new mode 100755 diff --git a/openmrs/apps/customDisplayControl/views/customTreatmentChart.html b/openmrs/apps/customDisplayControl/views/customTreatmentChart.html old mode 100644 new mode 100755 diff --git a/openmrs/apps/customDisplayControl/views/deathCertificate.html b/openmrs/apps/customDisplayControl/views/deathCertificate.html old mode 100644 new mode 100755 diff --git a/openmrs/apps/customDisplayControl/views/patientAppointmentsDashboard.html b/openmrs/apps/customDisplayControl/views/patientAppointmentsDashboard.html old mode 100644 new mode 100755 diff --git a/openmrs/apps/dbNameCondition/dbNameCondition.js b/openmrs/apps/dbNameCondition/dbNameCondition.js old mode 100644 new mode 100755 diff --git a/openmrs/apps/documentUpload/app.json b/openmrs/apps/documentUpload/app.json old mode 100644 new mode 100755 diff --git a/openmrs/apps/documentUpload/extension-Patient Document.json b/openmrs/apps/documentUpload/extension-Patient Document.json old mode 100644 new mode 100755 diff --git a/openmrs/apps/documentUpload/extension-RADIOLOGY.json b/openmrs/apps/documentUpload/extension-RADIOLOGY.json old mode 100644 new mode 100755 diff --git a/openmrs/apps/home/app.json b/openmrs/apps/home/app.json old mode 100644 new mode 100755 diff --git a/openmrs/apps/home/extension.json b/openmrs/apps/home/extension.json old mode 100644 new mode 100755 diff --git a/openmrs/apps/home/locale_languages.json b/openmrs/apps/home/locale_languages.json old mode 100644 new mode 100755 diff --git a/openmrs/apps/home/offline-config.json b/openmrs/apps/home/offline-config.json old mode 100644 new mode 100755 diff --git a/openmrs/apps/home/whiteLabel.json b/openmrs/apps/home/whiteLabel.json old mode 100644 new mode 100755 diff --git a/openmrs/apps/ipd/app.json b/openmrs/apps/ipd/app.json old mode 100644 new mode 100755 diff --git a/openmrs/apps/ipd/extension.json b/openmrs/apps/ipd/extension.json old mode 100644 new mode 100755 diff --git a/openmrs/apps/orders/app.json b/openmrs/apps/orders/app.json old mode 100644 new mode 100755 diff --git a/openmrs/apps/orders/extension.json b/openmrs/apps/orders/extension.json old mode 100644 new mode 100755 diff --git a/openmrs/apps/ot/app.json b/openmrs/apps/ot/app.json old mode 100644 new mode 100755 diff --git a/openmrs/apps/ot/extension.json b/openmrs/apps/ot/extension.json old mode 100644 new mode 100755 diff --git a/openmrs/apps/ot/printListView.html b/openmrs/apps/ot/printListView.html old mode 100644 new mode 100755 diff --git a/openmrs/apps/registration/app.json b/openmrs/apps/registration/app.json old mode 100644 new mode 100755 diff --git a/openmrs/apps/registration/appTemplate.json b/openmrs/apps/registration/appTemplate.json old mode 100644 new mode 100755 diff --git a/openmrs/apps/registration/attributesConditions.js b/openmrs/apps/registration/attributesConditions.js old mode 100644 new mode 100755 diff --git a/openmrs/apps/registration/extension.json b/openmrs/apps/registration/extension.json old mode 100644 new mode 100755 diff --git a/openmrs/apps/registration/fieldValidation.js b/openmrs/apps/registration/fieldValidation.js old mode 100644 new mode 100755 diff --git a/openmrs/apps/registration/registrationCardLayout/css/print.css b/openmrs/apps/registration/registrationCardLayout/css/print.css old mode 100644 new mode 100755 diff --git a/openmrs/apps/registration/registrationCardLayout/images/bahmni-icon.png b/openmrs/apps/registration/registrationCardLayout/images/bahmni-icon.png old mode 100644 new mode 100755 diff --git a/openmrs/apps/registration/registrationCardLayout/print.html b/openmrs/apps/registration/registrationCardLayout/print.html old mode 100644 new mode 100755 diff --git a/openmrs/apps/registration/registrationCardLayout/printWithBarcode.html b/openmrs/apps/registration/registrationCardLayout/printWithBarcode.html old mode 100644 new mode 100755 diff --git a/openmrs/apps/registration/registrationCardLayout/print_local.html b/openmrs/apps/registration/registrationCardLayout/print_local.html old mode 100644 new mode 100755 diff --git a/openmrs/apps/registration/registrationCardLayout/print_registration.html b/openmrs/apps/registration/registrationCardLayout/print_registration.html old mode 100644 new mode 100755 diff --git a/openmrs/apps/registration/supplementalPaperLayout/css/print.css b/openmrs/apps/registration/supplementalPaperLayout/css/print.css old mode 100644 new mode 100755 diff --git a/openmrs/apps/registration/supplementalPaperLayout/print.html b/openmrs/apps/registration/supplementalPaperLayout/print.html old mode 100644 new mode 100755 diff --git a/openmrs/apps/reports/app.json b/openmrs/apps/reports/app.json old mode 100644 new mode 100755 diff --git a/openmrs/apps/reports/extension.json b/openmrs/apps/reports/extension.json old mode 100644 new mode 100755 diff --git a/openmrs/apps/reports/reports.json b/openmrs/apps/reports/reports.json old mode 100644 new mode 100755 diff --git a/openmrs/apps/reports/sql/testCount.sql b/openmrs/apps/reports/sql/testCount.sql old mode 100644 new mode 100755 diff --git a/openmrs/aqs/aqs_query.json b/openmrs/aqs/aqs_query.json old mode 100644 new mode 100755 diff --git a/openmrs/beanshell/openelis-prefetch-eventfilter.bsh b/openmrs/beanshell/openelis-prefetch-eventfilter.bsh old mode 100644 new mode 100755 diff --git a/openmrs/elisFeedInterceptor/FilterDonorTestResults.groovy b/openmrs/elisFeedInterceptor/FilterDonorTestResults.groovy old mode 100644 new mode 100755 diff --git a/openmrs/i18n/admin/locale_en.json b/openmrs/i18n/admin/locale_en.json old mode 100644 new mode 100755 diff --git a/openmrs/i18n/adt/locale_en.json b/openmrs/i18n/adt/locale_en.json old mode 100644 new mode 100755 diff --git a/openmrs/i18n/adt/locale_pt_BR.json b/openmrs/i18n/adt/locale_pt_BR.json old mode 100644 new mode 100755 diff --git a/openmrs/i18n/clinical/locale_en.json b/openmrs/i18n/clinical/locale_en.json old mode 100644 new mode 100755 diff --git a/openmrs/i18n/clinical/locale_es.json b/openmrs/i18n/clinical/locale_es.json old mode 100644 new mode 100755 diff --git a/openmrs/i18n/clinical/locale_fr.json b/openmrs/i18n/clinical/locale_fr.json old mode 100644 new mode 100755 diff --git a/openmrs/i18n/clinical/locale_pt_BR.json b/openmrs/i18n/clinical/locale_pt_BR.json old mode 100644 new mode 100755 diff --git a/openmrs/i18n/document-upload/locale_en.json b/openmrs/i18n/document-upload/locale_en.json old mode 100644 new mode 100755 diff --git a/openmrs/i18n/document-upload/locale_fr.json b/openmrs/i18n/document-upload/locale_fr.json old mode 100644 new mode 100755 diff --git a/openmrs/i18n/document-upload/locale_pt_BR.json b/openmrs/i18n/document-upload/locale_pt_BR.json old mode 100644 new mode 100755 diff --git a/openmrs/i18n/home/locale_en.json b/openmrs/i18n/home/locale_en.json old mode 100644 new mode 100755 diff --git a/openmrs/i18n/home/locale_es.json b/openmrs/i18n/home/locale_es.json old mode 100644 new mode 100755 diff --git a/openmrs/i18n/home/locale_fr.json b/openmrs/i18n/home/locale_fr.json old mode 100644 new mode 100755 diff --git a/openmrs/i18n/home/locale_pt_BR.json b/openmrs/i18n/home/locale_pt_BR.json old mode 100644 new mode 100755 diff --git a/openmrs/i18n/ipd/locale_en.json b/openmrs/i18n/ipd/locale_en.json old mode 100644 new mode 100755 diff --git a/openmrs/i18n/orders/locale_en.json b/openmrs/i18n/orders/locale_en.json old mode 100644 new mode 100755 diff --git a/openmrs/i18n/orders/locale_fr.json b/openmrs/i18n/orders/locale_fr.json old mode 100644 new mode 100755 diff --git a/openmrs/i18n/orders/locale_pt_BR.json b/openmrs/i18n/orders/locale_pt_BR.json old mode 100644 new mode 100755 diff --git a/openmrs/i18n/ot/locale_en.json b/openmrs/i18n/ot/locale_en.json old mode 100644 new mode 100755 diff --git a/openmrs/i18n/registration/locale_en.json b/openmrs/i18n/registration/locale_en.json old mode 100644 new mode 100755 diff --git a/openmrs/i18n/registration/locale_fr.json b/openmrs/i18n/registration/locale_fr.json old mode 100644 new mode 100755 diff --git a/openmrs/migrations/liquibase.xml b/openmrs/migrations/liquibase.xml old mode 100644 new mode 100755 diff --git a/openmrs/migrations/updatePatientProgramToEpisode.sql b/openmrs/migrations/updatePatientProgramToEpisode.sql old mode 100644 new mode 100755 diff --git a/openmrs/obscalculator/BMI_chart.csv b/openmrs/obscalculator/BMI_chart.csv old mode 100644 new mode 100755 diff --git a/openmrs/obscalculator/BahmniObsValueCalculator.groovy b/openmrs/obscalculator/BahmniObsValueCalculator.groovy old mode 100644 new mode 100755 diff --git a/openmrs/ordertemplates/templates.json b/openmrs/ordertemplates/templates.json old mode 100644 new mode 100755 diff --git a/openmrs/patientMatchingAlgorithm/DefaultPatientMatchingAlgorithm b/openmrs/patientMatchingAlgorithm/DefaultPatientMatchingAlgorithm old mode 100644 new mode 100755 diff --git a/openmrs/rulesengine/drugorderrules/Fever.csv b/openmrs/rulesengine/drugorderrules/Fever.csv old mode 100644 new mode 100755 diff --git a/openmrs/rulesengine/drugorderrules/Tuberculosis.csv b/openmrs/rulesengine/drugorderrules/Tuberculosis.csv old mode 100644 new mode 100755 diff --git a/openmrs/rulesengine/rulesengineextension/Chemotherapy.groovy b/openmrs/rulesengine/rulesengineextension/Chemotherapy.groovy old mode 100644 new mode 100755 diff --git a/openmrs/templates/All_templates_generic_concepts.csv b/openmrs/templates/All_templates_generic_concepts.csv old mode 100644 new mode 100755 diff --git a/openmrs/templates/Anaemia_concept_sets.csv b/openmrs/templates/Anaemia_concept_sets.csv old mode 100644 new mode 100755 diff --git a/openmrs/templates/Anaemia_concepts.csv b/openmrs/templates/Anaemia_concepts.csv old mode 100644 new mode 100755 diff --git a/openmrs/templates/Arthritis_concept_sets.csv b/openmrs/templates/Arthritis_concept_sets.csv old mode 100644 new mode 100755 diff --git a/openmrs/templates/Arthritis_concepts.csv b/openmrs/templates/Arthritis_concepts.csv old mode 100644 new mode 100755 diff --git a/openmrs/templates/Breast_cancer_concept_sets.csv b/openmrs/templates/Breast_cancer_concept_sets.csv old mode 100644 new mode 100755 diff --git a/openmrs/templates/Breast_cancer_concepts.csv b/openmrs/templates/Breast_cancer_concepts.csv old mode 100644 new mode 100755 diff --git a/openmrs/templates/Breast_cancer_generic_concepts.csv b/openmrs/templates/Breast_cancer_generic_concepts.csv old mode 100644 new mode 100755 diff --git a/openmrs/templates/COPD_intake_concept_sets.csv b/openmrs/templates/COPD_intake_concept_sets.csv old mode 100644 new mode 100755 diff --git a/openmrs/templates/COPD_intake_concepts.csv b/openmrs/templates/COPD_intake_concepts.csv old mode 100644 new mode 100755 diff --git a/openmrs/templates/COPD_progress_concept_sets.csv b/openmrs/templates/COPD_progress_concept_sets.csv old mode 100644 new mode 100755 diff --git a/openmrs/templates/COPD_progress_concepts.csv b/openmrs/templates/COPD_progress_concepts.csv old mode 100644 new mode 100755 diff --git a/openmrs/templates/Cervical_cancer_concept_sets.csv b/openmrs/templates/Cervical_cancer_concept_sets.csv old mode 100644 new mode 100755 diff --git a/openmrs/templates/Cervical_cancer_concepts.csv b/openmrs/templates/Cervical_cancer_concepts.csv old mode 100644 new mode 100755 diff --git a/openmrs/templates/Cervical_cancer_generic_concepts.csv b/openmrs/templates/Cervical_cancer_generic_concepts.csv old mode 100644 new mode 100755 diff --git a/openmrs/templates/Colon_cancer_concept_sets.csv b/openmrs/templates/Colon_cancer_concept_sets.csv old mode 100644 new mode 100755 diff --git a/openmrs/templates/Colon_cancer_concepts.csv b/openmrs/templates/Colon_cancer_concepts.csv old mode 100644 new mode 100755 diff --git a/openmrs/templates/Colon_cancer_generic_concepts.csv b/openmrs/templates/Colon_cancer_generic_concepts.csv old mode 100644 new mode 100755 diff --git a/openmrs/templates/Congetive_heart_failure_intake_concept_sets.csv b/openmrs/templates/Congetive_heart_failure_intake_concept_sets.csv old mode 100644 new mode 100755 diff --git a/openmrs/templates/Congetive_heart_failure_intake_concepts.csv b/openmrs/templates/Congetive_heart_failure_intake_concepts.csv old mode 100644 new mode 100755 diff --git a/openmrs/templates/Congetive_heart_failure_progress_concept_sets.csv b/openmrs/templates/Congetive_heart_failure_progress_concept_sets.csv old mode 100644 new mode 100755 diff --git a/openmrs/templates/Congetive_heart_failure_progress_concepts.csv b/openmrs/templates/Congetive_heart_failure_progress_concepts.csv old mode 100644 new mode 100755 diff --git a/openmrs/templates/Coronary_heart_disease_intake_concept_set.csv b/openmrs/templates/Coronary_heart_disease_intake_concept_set.csv old mode 100644 new mode 100755 diff --git a/openmrs/templates/Coronary_heart_disease_intake_concept_sets.csv b/openmrs/templates/Coronary_heart_disease_intake_concept_sets.csv old mode 100644 new mode 100755 diff --git a/openmrs/templates/Coronary_heart_disease_progress_concept_sets.csv b/openmrs/templates/Coronary_heart_disease_progress_concept_sets.csv old mode 100644 new mode 100755 diff --git a/openmrs/templates/Coronary_heart_disease_progress_concepts.csv b/openmrs/templates/Coronary_heart_disease_progress_concepts.csv old mode 100644 new mode 100755 diff --git a/openmrs/templates/Detailed_history_concept_sets.csv b/openmrs/templates/Detailed_history_concept_sets.csv old mode 100644 new mode 100755 diff --git a/openmrs/templates/Detailed_history_concepts.csv b/openmrs/templates/Detailed_history_concepts.csv old mode 100644 new mode 100755 diff --git a/openmrs/templates/Diabetes_concept_sets.csv b/openmrs/templates/Diabetes_concept_sets.csv old mode 100644 new mode 100755 diff --git a/openmrs/templates/Diabetes_concepts.csv b/openmrs/templates/Diabetes_concepts.csv old mode 100644 new mode 100755 diff --git a/openmrs/templates/Epilepsy_concept_sets.csv b/openmrs/templates/Epilepsy_concept_sets.csv old mode 100644 new mode 100755 diff --git a/openmrs/templates/Epilepsy_concepts.csv b/openmrs/templates/Epilepsy_concepts.csv old mode 100644 new mode 100755 diff --git a/openmrs/templates/Gastric_cancer_concept_sets.csv b/openmrs/templates/Gastric_cancer_concept_sets.csv old mode 100644 new mode 100755 diff --git a/openmrs/templates/Gastric_cancer_concepts.csv b/openmrs/templates/Gastric_cancer_concepts.csv old mode 100644 new mode 100755 diff --git a/openmrs/templates/Gastric_generic_concepts.csv b/openmrs/templates/Gastric_generic_concepts.csv old mode 100644 new mode 100755 diff --git a/openmrs/templates/Generic_concepts.csv b/openmrs/templates/Generic_concepts.csv old mode 100644 new mode 100755 diff --git a/openmrs/templates/Hyperthyroidism_concept_sets.csv b/openmrs/templates/Hyperthyroidism_concept_sets.csv old mode 100644 new mode 100755 diff --git a/openmrs/templates/Hyperthyroidism_concepts.csv b/openmrs/templates/Hyperthyroidism_concepts.csv old mode 100644 new mode 100755 diff --git a/openmrs/templates/Kaposis_sarcoma_concept_sets.csv b/openmrs/templates/Kaposis_sarcoma_concept_sets.csv old mode 100644 new mode 100755 diff --git a/openmrs/templates/Kaposis_sarcoma_concepts.csv b/openmrs/templates/Kaposis_sarcoma_concepts.csv old mode 100644 new mode 100755 diff --git a/openmrs/templates/Kaposis_sarcoma_generic_concepts.csv b/openmrs/templates/Kaposis_sarcoma_generic_concepts.csv old mode 100644 new mode 100755 diff --git a/openmrs/templates/Leprosy_concept_sets.csv b/openmrs/templates/Leprosy_concept_sets.csv old mode 100644 new mode 100755 diff --git a/openmrs/templates/Leprosy_concepts.csv b/openmrs/templates/Leprosy_concepts.csv old mode 100644 new mode 100755 diff --git a/openmrs/templates/Leprosy_generic_concepts.csv b/openmrs/templates/Leprosy_generic_concepts.csv old mode 100644 new mode 100755 diff --git a/openmrs/templates/Nephroblastoma_concept_sets.csv b/openmrs/templates/Nephroblastoma_concept_sets.csv old mode 100644 new mode 100755 diff --git a/openmrs/templates/Nephroblastoma_concepts.csv b/openmrs/templates/Nephroblastoma_concepts.csv old mode 100644 new mode 100755 diff --git a/openmrs/templates/Nephroblastoma_generic_concepts.csv b/openmrs/templates/Nephroblastoma_generic_concepts.csv old mode 100644 new mode 100755 diff --git a/openmrs/templates/Neurological_disorder_concept_sets.csv b/openmrs/templates/Neurological_disorder_concept_sets.csv old mode 100644 new mode 100755 diff --git a/openmrs/templates/Neurological_disorder_concepts.csv b/openmrs/templates/Neurological_disorder_concepts.csv old mode 100644 new mode 100755 diff --git a/openmrs/templates/Operation_notes_concept_sets.csv b/openmrs/templates/Operation_notes_concept_sets.csv old mode 100644 new mode 100755 diff --git a/openmrs/templates/Operation_notes_concepts.csv b/openmrs/templates/Operation_notes_concepts.csv old mode 100644 new mode 100755 diff --git a/openmrs/templates/Operation_notes_generic_concepts.csv b/openmrs/templates/Operation_notes_generic_concepts.csv old mode 100644 new mode 100755 diff --git a/openmrs/templates/Rheumatic_heart_disease_intake_concept_sets.csv b/openmrs/templates/Rheumatic_heart_disease_intake_concept_sets.csv old mode 100644 new mode 100755 diff --git a/openmrs/templates/Rheumatic_heart_disease_intake_concepts.csv b/openmrs/templates/Rheumatic_heart_disease_intake_concepts.csv old mode 100644 new mode 100755 diff --git a/openmrs/templates/Sickle_cell_concept_sets.csv b/openmrs/templates/Sickle_cell_concept_sets.csv old mode 100644 new mode 100755 diff --git a/openmrs/templates/Sickle_cell_concepts.csv b/openmrs/templates/Sickle_cell_concepts.csv old mode 100644 new mode 100755 diff --git a/openmrs/templates/Sickle_cell_generic_concepts.csv b/openmrs/templates/Sickle_cell_generic_concepts.csv old mode 100644 new mode 100755 diff --git a/openmrs/templates/Tuberculosis_MDR_concepts.csv b/openmrs/templates/Tuberculosis_MDR_concepts.csv old mode 100644 new mode 100755 diff --git a/openmrs/templates/Tuberculosis_concept_sets.csv b/openmrs/templates/Tuberculosis_concept_sets.csv old mode 100644 new mode 100755 diff --git a/openmrs/templates/Tuberculosis_generic_concepts.csv b/openmrs/templates/Tuberculosis_generic_concepts.csv old mode 100644 new mode 100755 diff --git a/openmrs/templates/Tuberculosis_intake_concepts.csv b/openmrs/templates/Tuberculosis_intake_concepts.csv old mode 100644 new mode 100755 diff --git a/openmrs/templates/Tuberculosis_outcome_concepts.csv b/openmrs/templates/Tuberculosis_outcome_concepts.csv old mode 100644 new mode 100755 diff --git a/openmrs/templates/Tuberculosis_progress_concepts.csv b/openmrs/templates/Tuberculosis_progress_concepts.csv old mode 100644 new mode 100755 diff --git a/openmrs/templates/Tuberculosis_retreatment_concepts.csv b/openmrs/templates/Tuberculosis_retreatment_concepts.csv old mode 100644 new mode 100755 diff --git a/openmrs/templates/Undernutrition_concept_sets.csv b/openmrs/templates/Undernutrition_concept_sets.csv old mode 100644 new mode 100755 diff --git a/openmrs/templates/Undernutrition_concepts.csv b/openmrs/templates/Undernutrition_concepts.csv old mode 100644 new mode 100755 diff --git a/openmrs/treatmentRegimenExtension/TreatmentRegimenExtension.groovy b/openmrs/treatmentRegimenExtension/TreatmentRegimenExtension.groovy old mode 100644 new mode 100755 From d374a5947a69acbcab9b001ccf5a8da22efd28fc Mon Sep 17 00:00:00 2001 From: Amol Chavan Date: Wed, 27 Feb 2019 11:51:04 +0530 Subject: [PATCH 12/67] MPOC-78-Remove fields from Registration Forms --- openmrs/apps/registration/app.json | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/openmrs/apps/registration/app.json b/openmrs/apps/registration/app.json index 0b3e626f60..3f66056704 100755 --- a/openmrs/apps/registration/app.json +++ b/openmrs/apps/registration/app.json @@ -19,13 +19,6 @@ "config" : { "patientInformation": { - "patientReferenceInformation": { - "title": "patientReferenceInformation", - "translationKey": "REGISTRATION_REFERENCE_INFO_KEY", - "attributes": ["Nome","Apelido","Phone_2"], - "order" : 2, - "expanded": true - }, "patientTransferenceInformation": { "title": "patientTransferenceInformation", "translationKey": "REGISTRATION_TRANSFERENCE_INFO_KEY", @@ -48,6 +41,7 @@ }, "defaults": { "class": "General", + "TestResult": "HIV_Positive", "landHolding": 2 } }, @@ -69,7 +63,7 @@ "showLastName": true, "isLastNameMandatory": true, "showSaveConfirmDialog": false, - "showBirthTime": true, + "showBirthTime": false, "showCasteSameAsLastNameCheckbox": false, "printOptions": [ { From 4b7daf52ddb39597f6fd8d934d629112f71b4e30 Mon Sep 17 00:00:00 2001 From: Joao Machiana Date: Wed, 27 Feb 2019 17:34:52 +0200 Subject: [PATCH 13/67] Fixed header text under the request of BA team --- openmrs/apps/home/whiteLabel.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openmrs/apps/home/whiteLabel.json b/openmrs/apps/home/whiteLabel.json index 21da43406c..702137544f 100755 --- a/openmrs/apps/home/whiteLabel.json +++ b/openmrs/apps/home/whiteLabel.json @@ -1,6 +1,6 @@ { "homePage": { - "header_text": "BEM VINDO AO
SISTEMA ELECTRÓNICO DE SEGUIMENTO DE PACIENTES (SESP)
POINT OF CARE (POC)", + "header_text": "BEM VINDO AO
SISTEMA ELECTRÓNICO DE SEGUIMENTO DE PACIENTES (SESP)", "logo": "/bahmni/images/emblem_of_mozambique.png", "title_text": " " }, From 3e1cf75fa8eed831d464e8338709d27e7c030730 Mon Sep 17 00:00:00 2001 From: Joao Machiana Date: Thu, 28 Feb 2019 16:44:58 +0200 Subject: [PATCH 14/67] added the Mozambique flag, and the footer logos --- openmrs/apps/home/whiteLabel.json | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/openmrs/apps/home/whiteLabel.json b/openmrs/apps/home/whiteLabel.json index 702137544f..9f7c014bd7 100755 --- a/openmrs/apps/home/whiteLabel.json +++ b/openmrs/apps/home/whiteLabel.json @@ -1,13 +1,17 @@ { "homePage": { - "header_text": "BEM VINDO AO
SISTEMA ELECTRÓNICO DE SEGUIMENTO DE PACIENTES (SESP)", + "header_text": "BEM VINDO AO
SISTEMA ELECTRÓNICO DE SEGUIMENTO DE PACIENTES
SESP - POC", "logo": "/bahmni/images/emblem_of_mozambique.png", - "title_text": " " + "title_text": " ", + "bottomBanner": "/bahmni/images/jembi_uem_moasis_logo.png" }, "loginPage": { - "logo": "/bahmni/images/emblem_of_mozambique.png", + "logo": "/bahmni/images/flag_of_mozambique.png", "showHeaderText": true, - "showTitleText": false + "showTitleText": true, + "bottomLogos" : [ + "/bahmni/images/jembi_uem_moasis_logo.png" + ] }, "helpLink": { "url": "https://bahmni.atlassian.net/wiki/display/BAH/Bahmni+Home" From 53090c54c5bd8528770f29163258210b01cc20ad Mon Sep 17 00:00:00 2001 From: Joao Machiana Date: Thu, 7 Mar 2019 13:52:42 +0200 Subject: [PATCH 15/67] mpoc-94 removed jembi logo, fixed the login page title --- openmrs/apps/home/whiteLabel.json | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/openmrs/apps/home/whiteLabel.json b/openmrs/apps/home/whiteLabel.json index 9f7c014bd7..3d85db3a83 100755 --- a/openmrs/apps/home/whiteLabel.json +++ b/openmrs/apps/home/whiteLabel.json @@ -1,17 +1,13 @@ { "homePage": { - "header_text": "BEM VINDO AO
SISTEMA ELECTRÓNICO DE SEGUIMENTO DE PACIENTES
SESP - POC", + "header_text": "MINISTÉRIO DA SAÚDE
SISTEMA ELECTRÓNICO DE SEGUIMENTO DE PACIENTES(SESP) - POC", "logo": "/bahmni/images/emblem_of_mozambique.png", - "title_text": " ", - "bottomBanner": "/bahmni/images/jembi_uem_moasis_logo.png" + "title_text": " " }, "loginPage": { "logo": "/bahmni/images/flag_of_mozambique.png", "showHeaderText": true, - "showTitleText": true, - "bottomLogos" : [ - "/bahmni/images/jembi_uem_moasis_logo.png" - ] + "showTitleText": true }, "helpLink": { "url": "https://bahmni.atlassian.net/wiki/display/BAH/Bahmni+Home" From de0fe8ef94e4f660a898bd46f439c6f324403394 Mon Sep 17 00:00:00 2001 From: Amol Chavan Date: Wed, 13 Mar 2019 15:20:55 +0530 Subject: [PATCH 16/67] Amol | Hide the ability to capture the photo during patient registration --- openmrs/apps/registration/app.json | 1 + 1 file changed, 1 insertion(+) diff --git a/openmrs/apps/registration/app.json b/openmrs/apps/registration/app.json index 3f66056704..01d1a7bb30 100755 --- a/openmrs/apps/registration/app.json +++ b/openmrs/apps/registration/app.json @@ -64,6 +64,7 @@ "isLastNameMandatory": true, "showSaveConfirmDialog": false, "showBirthTime": false, + "disablePhotoCapture": true, "showCasteSameAsLastNameCheckbox": false, "printOptions": [ { From 93e72891e1a6f7159784d98f48a9d27bfd68346d Mon Sep 17 00:00:00 2001 From: joaomachiana Date: Fri, 15 Mar 2019 18:30:23 +0200 Subject: [PATCH 17/67] mpoc-123 Changed the text of the footer, and added a link to MISAU webpage instead of the Bahmni Help page --- openmrs/apps/home/whiteLabel.json | 3 +++ openmrs/i18n/home/locale_pt_BR.json | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/openmrs/apps/home/whiteLabel.json b/openmrs/apps/home/whiteLabel.json index 3d85db3a83..68ab1eb37b 100755 --- a/openmrs/apps/home/whiteLabel.json +++ b/openmrs/apps/home/whiteLabel.json @@ -11,5 +11,8 @@ }, "helpLink": { "url": "https://bahmni.atlassian.net/wiki/display/BAH/Bahmni+Home" + }, + "misauLink": { + "url": "http://www.misau.gov.mz" } } \ No newline at end of file diff --git a/openmrs/i18n/home/locale_pt_BR.json b/openmrs/i18n/home/locale_pt_BR.json index e7632c66ec..e437f299d9 100755 --- a/openmrs/i18n/home/locale_pt_BR.json +++ b/openmrs/i18n/home/locale_pt_BR.json @@ -11,6 +11,6 @@ "MODULE_LABEL_PROGRAMS_KEY":"Programas", "MODULE_LABEL_IMPLEMENTER_INTERFACE_KEY":"Interface do Implementador", "MODULE_LABEL_ATOMFEED_CONSOLE_KEY":"Consola do AtomFeed", -"MODULE_LABEL_APPOINTMENT_SCHEDULING_KEY":"Marcação de Consultas", +"MODULE_LABEL_APPOINTMENT_SCHEDULING_KEY":"Marcações", "MODULE_LABEL_BED_MANAGEMENT_KEY":"Gestão de Camas" } \ No newline at end of file From 75decbf11c2f1020596ffae48636b5b8f9f5f09b Mon Sep 17 00:00:00 2001 From: Amol Chavan Date: Mon, 18 Mar 2019 15:05:45 +0530 Subject: [PATCH 18/67] Amol | Must automatically flag the patient as Pre TARV --- openmrs/apps/registration/app.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/openmrs/apps/registration/app.json b/openmrs/apps/registration/app.json index 01d1a7bb30..4b8641bc56 100755 --- a/openmrs/apps/registration/app.json +++ b/openmrs/apps/registration/app.json @@ -30,7 +30,7 @@ "patientHIVTestInformation": { "title": "patientHIVTestInformation", "translationKey": "REGISTRATION_HIVTEST_INFO_KEY", - "attributes": ["DateofHIVDiagnosis","Typeoftest","TestResult"], + "attributes": ["DateofHIVDiagnosis","Typeoftest","TestResult","Patient Status"], "order" : 4, "expanded": true }, @@ -42,6 +42,7 @@ "defaults": { "class": "General", "TestResult": "HIV_Positive", + "Patient Status": "Pre TARV", "landHolding": 2 } }, From 80e091d9f5025f9f969df61634ea5cc4dc539ef5 Mon Sep 17 00:00:00 2001 From: Amol Chavan Date: Mon, 18 Mar 2019 15:22:23 +0530 Subject: [PATCH 19/67] Amol | Added quick fixes --- openmrs/apps/appointments/app.json | 2 +- openmrs/apps/registration/app.json | 7 +++---- openmrs/i18n/home/locale_pt_BR.json | 2 +- openmrs/i18n/registration/locale_pt_BR.json | 10 +++++----- 4 files changed, 10 insertions(+), 11 deletions(-) diff --git a/openmrs/apps/appointments/app.json b/openmrs/apps/appointments/app.json index ad88678de5..ac6f6257ab 100755 --- a/openmrs/apps/appointments/app.json +++ b/openmrs/apps/appointments/app.json @@ -9,7 +9,7 @@ ], "config": { "minCharLengthToTriggerPatientSearch": 3, - "enableSpecialities": true, + "enableSpecialities": false, "startOfWeek": 2, "weekStart": "isoWeek", "calendarSlotDuration": "00:30", diff --git a/openmrs/apps/registration/app.json b/openmrs/apps/registration/app.json index 01d1a7bb30..9e0ac22f1d 100755 --- a/openmrs/apps/registration/app.json +++ b/openmrs/apps/registration/app.json @@ -46,8 +46,7 @@ } }, "addressHierarchy": { - "showAddressFieldsTopDown": false, - "strictAutocompleteFromLevel": "stateProvince" + "showAddressFieldsTopDown": true }, "relationshipTypeMap": { "Doctor":"provider", @@ -109,7 +108,7 @@ }, "personAttributes": { "fields": [ - "nick_name" + "NICK_NAME" ] } }, @@ -118,7 +117,7 @@ "customAttributes": { "label": "Alcunha", "placeholder": "Alcunha", - "fields": ["nick_name"] + "fields": ["NICK_NAME"] } } } diff --git a/openmrs/i18n/home/locale_pt_BR.json b/openmrs/i18n/home/locale_pt_BR.json index e7632c66ec..7a108a7da2 100755 --- a/openmrs/i18n/home/locale_pt_BR.json +++ b/openmrs/i18n/home/locale_pt_BR.json @@ -1,5 +1,5 @@ { -"MODULE_LABEL_REGISTRATION_KEY":"Cadastro", +"MODULE_LABEL_REGISTRATION_KEY":"Registo de Paciente", "MODULE_LABEL_CLINICAL_KEY":"Clínico", "MODULE_LABEL_INPATIENT_KEY":"Internamento", "MODULE_LABEL_RADIOLOGY_UPLOAD_KEY":"Radiografia", diff --git a/openmrs/i18n/registration/locale_pt_BR.json b/openmrs/i18n/registration/locale_pt_BR.json index 994e0b1670..753222bbe5 100755 --- a/openmrs/i18n/registration/locale_pt_BR.json +++ b/openmrs/i18n/registration/locale_pt_BR.json @@ -28,15 +28,15 @@ "REGISTRATION_TRANSFERENCE_INFO_KEY": "Transferência", "REGISTRATION_HIVTEST_INFO_KEY":"Teste de HIV", "REGISTRATION_HIV_TEST": "HIV Test", - "country_locale":"Pais", - "province_locale":"Provincia", + "country_locale":"Pas", + "province_locale":"Provncia", "district_locale":"Distrito", "administrative_locale":"Administrativo", "locality_locale":"Localidade", "education":"Nivel de Escolaridade", "ADDRESS_CLOSE_OF_LOCALE":"Perto De", "ADDRESS_AVENUE_STREET_LOCALE":"Avenida/Rua", - "ADDRESS_BLOCK_LOCALE":"Quateiro", - "ADDRESS_FLOOR_FLAT_LOCALE":"Andar / Flat", - "ADDRESS_HOUSE_NUMBER_LOCALE":"N^o^ da Casa" + "ADDRESS_BLOCK_LOCALE":"Quarteiro", + "ADDRESS_FLOOR_FLAT_LOCALE":"Andar/Flat", + "ADDRESS_HOUSE_NUMBER_LOCALE":"No da Casa" } From ee562faff70e988cdd9c343d26efc5f171e5971d Mon Sep 17 00:00:00 2001 From: Krishnan Menon Date: Tue, 19 Mar 2019 11:46:57 +0530 Subject: [PATCH 20/67] Krishnan | MPOC-154 Remove NID as per feedback on ticket 103 --- .../apps/registration/registrationCardLayout/print.html | 7 ------- .../registrationCardLayout/printWithBarcode.html | 8 -------- .../registrationCardLayout/print_registration.html | 7 ------- 3 files changed, 22 deletions(-) diff --git a/openmrs/apps/registration/registrationCardLayout/print.html b/openmrs/apps/registration/registrationCardLayout/print.html index 759219a8c6..59f26a586a 100755 --- a/openmrs/apps/registration/registrationCardLayout/print.html +++ b/openmrs/apps/registration/registrationCardLayout/print.html @@ -33,13 +33,6 @@ {{patient.fullNameLocal()}} - - - - NID - - : - {{patient.extraIdentifiers[0].identifier}} - Era diff --git a/openmrs/apps/registration/registrationCardLayout/print_registration.html b/openmrs/apps/registration/registrationCardLayout/print_registration.html index 4eb6f2ec27..5f40a97fb5 100755 --- a/openmrs/apps/registration/registrationCardLayout/print_registration.html +++ b/openmrs/apps/registration/registrationCardLayout/print_registration.html @@ -33,13 +33,6 @@