Charlie from Imagine
11/20/2023, 4:02 PMrahul1
11/20/2023, 5:28 PMCharlie from Imagine
11/20/2023, 5:28 PMCharlie from Imagine
11/20/2023, 5:29 PMCharlie from Imagine
11/20/2023, 5:30 PMCharlie from Imagine
11/20/2023, 5:31 PMrahul1
11/20/2023, 5:34 PMCharlie from Imagine
11/20/2023, 5:35 PMrahul1
11/20/2023, 5:48 PMCharlie from Imagine
11/20/2023, 5:48 PMCharlie from Imagine
11/20/2023, 5:48 PMrahul1
11/20/2023, 5:48 PMCharlie from Imagine
11/20/2023, 5:48 PMCharlie from Imagine
11/20/2023, 5:48 PMCharlie from Imagine
11/20/2023, 5:49 PMrahul1
11/20/2023, 5:49 PMCharlie from Imagine
11/20/2023, 5:50 PMCodingInput
component that uses the valueset searchrahul1
11/20/2023, 5:50 PMrahul1
11/20/2023, 5:51 PMCharlie from Imagine
11/20/2023, 5:51 PMCharlie from Imagine
11/20/2023, 5:51 PMrahul1
11/20/2023, 5:52 PMCharlie from Imagine
11/20/2023, 5:53 PM"relationship": [
{
"coding": [
{
"code": "FTH",
"display": "Father",
"system": "http://terminology.hl7.org/CodeSystem/v3-RoleCode"
}
]
}
],
Charlie from Imagine
11/20/2023, 5:54 PMCharlie from Imagine
11/20/2023, 5:54 PMCharlie from Imagine
11/20/2023, 5:54 PMrahul1
11/20/2023, 7:55 PMCodeInput
? I would just like to check the URL string to see if I can see any issues there?Charlie from Imagine
11/20/2023, 7:56 PMtsx
<Input.Wrapper
placeholder="Please select"
label="Relationship to patient"
{...form.getInputProps('contact.relationship')}
>
<Input
binding={HL7System.RoleCode}
name="outcome"
component={CodingInput}
defaultValue={form.values.contact.relationship}
onChange={(value) => form.setFieldValue('contact.relationship', value)}
/>
</Input.Wrapper>
Charlie from Imagine
11/20/2023, 7:57 PMtsx
export const enum HL7System {
LivingArrangement = 'http://terminology.hl7.org/CodeSystem/v3-LivingArrangement',
InterpreterRequired = 'http://hl7.org/fhir/StructureDefinition/patient-interpreterRequired',
OrganizationType = 'http://terminology.hl7.org/CodeSystem/organization-type',
CoverageClass = 'http://terminology.hl7.org/CodeSystem/coverage-class',
RoleCode = 'http://terminology.hl7.org/CodeSystem/v3-RoleCode',
GenderIdentity = 'http://hl7.org/fhir/us/core/StructureDefinition/us-core-genderIdentity',
PreferredPronoun = 'http://terminology.hl7.org/ValueSet/pronouns',
}