Feature available in v5.0 and onwards. Below The below-mentioned code block , is to setup the visit lookup step. For searching the participants, MRN/EMPI can be used and for visits 'Visit name' or 'Accession Number'
...
the visits 'Visit name' or 'Accession Number' can be used.
Info |
---|
Below is the section from the code block which is configurable.
Example: In the below code 'Visit Name' renamed to 'Bank Number' (Refer to the first screenshot)
Example: In the below code block, the Visit Name, Visit Date, and Surgical Pathology Number are added. (Refer to the second screenshot)
|
Note |
---|
Configure the below code block in JSON workflow in the new section "visitsLookup". |
Example: In the below code block, the search visit table is sorted in descending order of the visit date.
Code Block | ||
---|---|---|
| ||
{ "name": "visitsLookup", "data": { "enable": true, /* matchTableOpts is used to sort the matching visit based on Visit date*/ "matchTableOpts": { "sortAttr": "visit.visitDate", "sortDirection": "desc" }, "matchTable": [ { "name": "visit.name", "baseField": "visit.name", "caption": "Bank Number" }, { "name": "visit.visitDate", "baseField": "visit.visitDate" }, { "name": "visit.surgicalPathologyNumber", "baseField": "visit.surgicalPathologyNumber", "caption": "Accession Number" } ], "searchAttrs": [ { "attr": "EMPI_MRN", "caption": "MRN" }, { "attr": "VISIT_NAME", "caption": "Bank Number" }, { "attr": "SPR_NO", "caption": "Accession Number" } ] } } |
The configured fields will be displayed on the search visits page
On searching for a participant that has 2 visits addedby MRN, OpenSpecimen will fetch both the visits in the results table. User You can then select from these visits and add specimens to them. The fields added in the 'matchTable' section will be displayed as the columns in the results table.