This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <addressConfiguration> | |
| <wipe>true</wipe> | |
| <addressComponents> | |
| <addressComponent> | |
| <field>COUNTRY</field> | |
| <nameMapping>Location.country</nameMapping> | |
| <sizeMapping>40</sizeMapping> | |
| <elementDefault>Cambodia</elementDefault> | |
| <requiredInHierarchy>true</requiredInHierarchy> | |
| </addressComponent> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "name": "AMPATH POC Triage v1.2", | |
| "uuid": "xxxx", | |
| "processor": "EncounterFormProcessor", | |
| "pages": [ | |
| { | |
| "label": "Encounter Details", | |
| "sections": [ | |
| { | |
| "label": "Encounter Details", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "@openmrs/esm-patient-chart-app": { | |
| "extensionSlots": { | |
| "patient-chart-dashboard-slot": { | |
| "remove": [ | |
| "charts-summary-dashboard", | |
| "immunization-summary-dashboard", | |
| "medications-summary-dashboard", | |
| "encounters-summary-dashboard", | |
| "appointments-summary-dashboard", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Registry entries with renamed controls | |
| const inbuiltControls = [ | |
| { | |
| name: 'OHRIText', | |
| component: OHRIText, | |
| type: 'text', | |
| }, | |
| { | |
| name: 'OHRIRadio', | |
| component: OHRIRadio, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import { FormField, FormSchemaTransformer, FormSchema } from '../types'; | |
| export const AngularFormEngineSchemaTransformer: FormSchemaTransformer = { | |
| transform: (form: FormSchema) => { | |
| form.pages.forEach((page) => { | |
| if (page.sections) { | |
| page.sections.forEach((section) => { | |
| section?.questions.forEach((question) => handleQuestion(question)); | |
| }); | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "@openmrs/esm-laboratory-app": { | |
| "Display conditions": { | |
| "privileges": [ | |
| "Manage Laboratory" | |
| ] | |
| } | |
| }, | |
| "@ugandaemr/esm-data-visualizer-app": { | |
| "Display conditions": { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import React from 'react'; | |
| import { Tooltip } from '@carbon/react'; | |
| import { useTranslation } from 'react-i18next'; | |
| import { type FormField } from '../../types'; | |
| import styles from './field-label.scss'; | |
| import { Information } from '@carbon/react/icons'; | |
| interface FieldLabelProps { | |
| field: FormField; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package org.openmrs.module.drools.patientflags; | |
| //generated from Decision Table | |
| import org.openmrs.Patient; | |
| import org.openmrs.module.drools.patientflags.FlaggedPatient; | |
| import org.openmrs.module.drools.calculation.Operator; | |
| import static org.openmrs.module.drools.utils.DroolsDateUtils.daysAgo; | |
| global org.openmrs.module.drools.calculation.DroolsCalculationService calculationService; | |
| global String SYSTOLIC_UUID; | |
| global java.util.List flaggedPatients; | |
| no-loop true |
OlderNewer