Skip to content

Commit

Permalink
Update getDataId to use ID attribute instead of data-id comment (#2877)
Browse files Browse the repository at this point in the history
* Update getDataId to use ID attribute. Remove code for data-id comments since they are no longer added

* Add tests for xhtml with ID attribute

* [pre-commit.ci] auto fixes from pre-commit hooks

---------

Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
  • Loading branch information
1 parent bae4e0c commit 6f80942
Show file tree
Hide file tree
Showing 3 changed files with 139 additions and 51 deletions.
21 changes: 7 additions & 14 deletions containers/ecr-viewer/src/app/services/formatService.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -415,25 +415,18 @@ export function getFirstNonCommentChild(
}

/**
* Extracts the `data-id` value from the element or an HTML comment within the child nodes.
* The `data-id` is either expected to be an attribute (`data-id="some-id"`) or in the format: `<!-- data-id: some-id -->`.
* Extracts the `data-id` attribute from the element or its ID if there is no `data-id` attribute.
* @param elem - The element to search for the `data-id`.
* @returns - The extracted `data-id` value if found, otherwise `null`.
*/
export function getDataId(elem: HTMLLIElement | HTMLTableElement | Element) {
if (elem.getAttribute("data-id")) return elem.getAttribute("data-id");
for (let i = 0; i < elem.childNodes.length; i++) {
const node = elem.childNodes[i];
if (node.nodeType === Node.COMMENT_NODE) {
// Extract the comment content and parse out the data-id
const commentText = node.nodeValue?.trim() || "";
const match = commentText.match(/data-id:\s*([^\s]+)/);
if (match) {
return match[1];
}
}
if (elem.getAttribute("data-id")) {
return elem.getAttribute("data-id");
} else if (elem.id) {
return elem.id;
} else {
return null; // Return null if no match is found
}
return null; // Return null if no match is found
}

/**
Expand Down
2 changes: 1 addition & 1 deletion containers/ecr-viewer/src/app/tests/assets/BundleLab.json
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
"title": "Results",
"text": {
"status": "generated",
"div": "<ul> <li><!-- data-id: Result.1.2.840.114350.1.13.297.3.7.2.798268.1670845 --> <caption data-id='Result.1.2.840.114350.1.13.297.3.7.2.798268.1670845.Procedure'>Stool Pathogens, NAAT, 12 to 25 Targets (09/28/2022 1:51 PM PDT)</caption> <table> <thead> <tr> <th>Component</th> <th>Value</th> <th>Ref Range</th> <th>Test Method</th> <th>Analysis Time</th> <th>Performed At</th> <th>Pathologist Signature</th> </tr> </thead> <tbody> <tr data-id='Result.1.2.840.114350.1.13.297.3.7.2.798268.1670845.Comp1'> <td data-id='Result.1.2.840.114350.1.13.297.3.7.2.798268.1670845.Comp1Name'>Campylobacter, NAAT</td> <td>Not Detected</td> <td>Not Detected</td> <td> <paragraph data-id='Result.1.2.840.114350.1.13.297.3.7.2.798268.1670845.Comp1TestMethodName1'>LAB DEVICE: BIOFIRE\u00ae FILMARRAY\u00ae 2.0 SYSTEM</paragraph> </td> <td>09/28/2022 1:59 PM PDT</td> <td>PROVIDENCE ST. JOSEPH MEDICAL CENTER LABORATORY (CLIA 05D0672675)</td> <td data-id='Result.1.2.840.114350.1.13.297.3.7.2.798268.1670845.Comp1Signature'></td> </tr> <tr data-id='Result.1.2.840.114350.1.13.297.3.7.2.798268.1670845.Comp2'> <td data-id='Result.1.2.840.114350.1.13.297.3.7.2.798268.1670845.Comp2Name'>Plesiomonas shigelloides, NAAT</td> <td>Not Detected</td> <td>Not Detected</td> <td> <paragraph data-id='Result.1.2.840.114350.1.13.297.3.7.2.798268.1670845.Comp2TestMethodName1'>LAB DEVICE: BIOFIRE\u00ae FILMARRAY\u00ae 2.0 SYSTEM</paragraph> </td> <td>09/28/2022 1:59 PM PDT</td> <td>PROVIDENCE ST. JOSEPH MEDICAL CENTER LABORATORY (CLIA 05D0672675)</td> <td data-id='Result.1.2.840.114350.1.13.297.3.7.2.798268.1670845.Comp2Signature'></td> </tr> </tbody> </table> <table> <thead> <tr> <th>Specimen (Source)</th> <th>Anatomical Location / Laterality</th> <th>Collection Method / Volume</th> <th>Collection Time</th> <th>Received Time</th> </tr> </thead> <tbody> <tr> <td data-id='Result.1.2.840.114350.1.13.297.3.7.2.798268.1670845.Specimen'>Stool</td> <td>STOOL SPECIMEN / Unknown</td> <td></td> <td>09/28/2022 1:51 PM PDT</td> <td>09/28/2022 1:51 PM PDT</td> </tr> </tbody> </table> <table> <thead> <tr> <th>Authorizing Provider</th> <th>Result Type</th> </tr> </thead> <tbody> <tr> <td>Ambhp1 Test MD</td> <td>MICROBIOLOGY - GENERAL ORDERABLES</td> </tr> </tbody> </table> <table> <thead> <tr> <th>Performing Organization</th> <th>Address</th> <th>City/State/ZIP Code</th> <th>Phone Number</th> </tr> </thead> <tbody> <tr> <td data-id='Result.1.2.840.114350.1.13.297.3.7.2.798268.1670845.PerformingLab'> <paragraph>PROVIDENCE ST. JOSEPH MEDICAL CENTER LABORATORY (CLIA 05D0672675)</paragraph> </td> <td> <paragraph>501 S. Buena Vista Street</paragraph> </td> <td> <paragraph>Burbank, CA 91505</paragraph> </td> <td> <paragraph>818-847-6000</paragraph> </td> </tr> </tbody> </table> </li> <li data-id='Result.1.2.840.114350.1.13.297.3.7.2.798268.1670844'> <caption data-id='Result.1.2.840.114350.1.13.297.3.7.2.798268.1670844.Procedure'>(ABNORMAL) Stool Pathogens, NAAT, 12 to 25 Targets (09/28/2022 1:51 PM PDT)</caption> <table> <thead> <tr> <th>Component</th> <th>Value</th> <th>Ref Range</th> <th>Test Method</th> <th>Analysis Time</th> <th>Performed At</th> <th>Pathologist Signature</th> </tr> </thead> <tbody> <tr data-id='Result.1.2.840.114350.1.13.297.3.7.2.798268.1670844.Comp1'> <td data-id='Result.1.2.840.114350.1.13.297.3.7.2.798268.1670844.Comp1Name'>Campylobacter, NAAT</td> <td>Not Detected</td> <td>Not Detected</td> <td> <paragraph data-id='Result.1.2.840.114350.1.13.297.3.7.2.798268.1670844.Comp1TestMethodName1'>LAB DEVICE: BIOFIRE\u00ae FILMARRAY\u00ae 2.0 SYSTEM</paragraph> </td> <td>09/28/2022 2:00 PM PDT</td> <td>PROVIDENCE ST. JOSEPH MEDICAL CENTER LABORATORY (CLIA 05D0672675)</td> <td data-id='Result.1.2.840.114350.1.13.297.3.7.2.798268.1670844.Comp1Signature'></td> </tr> <tr data-id='Result.1.2.840.114350.1.13.297.3.7.2.798268.1670844.Comp2'> <td data-id='Result.1.2.840.114350.1.13.297.3.7.2.798268.1670844.Comp2Name'>Plesiomonas shigelloides, NAAT</td> <td>Not Detected</td> <td>Not Detected</td> <td> <paragraph data-id='Result.1.2.840.114350.1.13.297.3.7.2.798268.1670844.Comp2TestMethodName1'>LAB DEVICE: BIOFIRE\u00ae FILMARRAY\u00ae 2.0 SYSTEM</paragraph> </td> <td>09/28/2022 2:00 PM PDT</td> <td>PROVIDENCE ST. JOSEPH MEDICAL CENTER LABORATORY (CLIA 05D0672675)</td> <td data-id='Result.1.2.840.114350.1.13.297.3.7.2.798268.1670844.Comp2Signature'></td> </tr> </tbody> </table> <table> <thead> <tr> <th>Specimen (Source)</th> <th>Anatomical Location / Laterality</th> <th>Collection Method / Volume</th> <th>Collection Time</th> <th>Received Time</th> </tr> </thead> <tbody> <tr> <td data-id='Result.1.2.840.114350.1.13.297.3.7.2.798268.1670844.Specimen'>Stool</td> <td>STOOL SPECIMEN / Unknown</td> <td></td> <td>09/28/2022 1:51 PM PDT</td> <td>09/28/2022 1:51 PM PDT</td> </tr> </tbody> </table> <table> <thead> <tr> <th>Authorizing Provider</th> <th>Result Type</th> </tr> </thead> <tbody> <tr> <td>Ambhp1 Test MD</td> <td>MICROBIOLOGY - GENERAL ORDERABLES</td> </tr> </tbody> </table> <table> <thead> <tr> <th>Performing Organization</th> <th>Address</th> <th>City/State/ZIP Code</th> <th>Phone Number</th> </tr> </thead> <tbody> <tr> <td data-id='Result.1.2.840.114350.1.13.297.3.7.2.798268.1670844.PerformingLab'> <paragraph>PROVIDENCE ST. JOSEPH MEDICAL CENTER LABORATORY (CLIA 05D0672675)</paragraph> </td> <td> <paragraph>501 S. Buena Vista Street</paragraph> </td> <td> <paragraph>Burbank, CA 91505</paragraph> </td> <td> <paragraph>818-847-6000</paragraph> </td> </tr> </tbody> </table> </li> <li data-id='Result.1.2.840.114350.1.13.478.3.7.2.798268.2061347'> <caption data-id='Result.1.2.840.114350.1.13.478.3.7.2.798268.2061347.Procedure'>Cytogenomic SNP microarray (04/04/2022 11:55 AM CDT)</caption> <table> <thead> <tr> <th>Component</th> <th>Value</th> <th>Ref Range</th> <th>Test Method</th> <th>Analysis Time</th> <th>Performed At</th> <th>Pathologist Signature</th> </tr> </thead> <tbody> <tr data-id='Result.1.2.840.114350.1.13.478.3.7.2.798268.2061347.Comp1'> <td data-id='Result.1.2.840.114350.1.13.478.3.7.2.798268.2061347.Comp1Name'>Organism ID</td> <td>Acinetobacter baumannii</td> <td></td> <td></td> <td></td> <td>VUMC CERNER LAB</td> <td data-id='Result.1.2.840.114350.1.13.478.3.7.2.798268.2061347.Comp1Signature'></td> </tr> <tr> <td>Comment: <br>Lab comment<br></td> </tr> </tbody> </table> <table> <thead> <tr> <th>Organism</th> <th>Antibiotic</th> <th>Method</th> <th>Susceptibility</th> </tr> </thead> <tbody data-id='Result.1.2.840.114350.1.13.478.3.7.2.798268.2061347.Cluster1'> <tr data-id='Result.1.2.840.114350.1.13.478.3.7.2.798268.2061347.Cluster1Antibiotic1'> <td data-id='Result.1.2.840.114350.1.13.478.3.7.2.798268.2061347.Cluster1Name'>Acinetobacter baumannii</td> <td data-id='Result.1.2.840.114350.1.13.478.3.7.2.798268.2061347.Cluster1Antibiotic1Name'>Amikacin</td> <td>MIC</td> <td> <paragraph>0.25: Susceptible</paragraph> </td> </tr> <tr data-id='Result.1.2.840.114350.1.13.478.3.7.2.798268.2061347.Cluster1Antibiotic2'> <td>Acinetobacter baumannii</td> <td data-id='Result.1.2.840.114350.1.13.478.3.7.2.798268.2061347.Cluster1Antibiotic2Name'>Avycaz (Ceftazidime/Avibactam)</td> <td>MIC</td> <td> <paragraph>0.05: Intermediate</paragraph> </td> </tr> <tr data-id='Result.1.2.840.114350.1.13.478.3.7.2.798268.2061347.Cluster1Antibiotic3'> <td>Acinetobacter baumannii</td> <td data-id='Result.1.2.840.114350.1.13.478.3.7.2.798268.2061347.Cluster1Antibiotic3Name'>Levofloxacin</td> <td>MIC</td> <td> <paragraph>0.75: Resistant</paragraph> </td> </tr> </tbody> </table> <table> <thead> <tr> <th>Specimen (Source)</th> <th>Anatomical Location / Laterality</th> <th>Collection Method / Volume</th> <th>Collection Time</th> <th>Received Time</th> </tr> </thead> <tbody> <tr> <td data-id='Result.1.2.840.114350.1.13.478.3.7.2.798268.2061347.Specimen'>Blood</td> <td></td> <td>Collection / Unknown</td> <td>04/04/2022 11:55 AM CDT</td> <td>04/18/2022 2:46 PM CDT</td> </tr> </tbody> </table> <table> <thead> <tr> <th>Narrative</th> </tr> </thead> <tbody> <tr> <td> <paragraph>VUMC CERNER LAB - 04/18/2022 2:57 PM CDT</paragraph> <paragraph data-id='Result.1.2.840.114350.1.13.478.3.7.2.798268.2061347.Narrative'> MICROARRAY REPORT NARRATIVE</paragraph> </td> </tr> </tbody> </table> <table> <thead> <tr> <th>Resulting Agency Comment</th> </tr> </thead> <tbody> <tr> <td> <paragraph data-id='Result.1.2.840.114350.1.13.478.3.7.2.798268.2061347.ResultingAgencyComment'>testing comment</paragraph> </td> </tr> </tbody> </table> <table> <thead> <tr> <th>Authorizing Provider</th> <th>Result Type</th> </tr> </thead> <tbody> <tr> <td>Carda Testprovqa MD</td> <td>LAB GENETIC TESTING</td> </tr> </tbody> </table> <table> <thead> <tr> <th>Performing Organization</th> <th>Address</th> <th>City/State/ZIP Code</th> <th>Phone Number</th> </tr> </thead> <tbody> <tr> <td data-id='Result.1.2.840.114350.1.13.478.3.7.2.798268.2061347.PerformingLab'> <paragraph>VUMC CERNER LAB</paragraph> </td> <td> <paragraph>4605 TVC VUMC</paragraph> <paragraph>1301 Medical Center Drive</paragraph> </td> <td> <paragraph>NASHVILLE, TN 37232-5310</paragraph> </td> <td> <paragraph>615-875-5227</paragraph> </td> </tr> </tbody> </table> </li> </ul> documented in this encounter"
"div": "<ul> <li data-id='Result.1.2.840.114350.1.13.297.3.7.2.798268.1670845'> <caption data-id='Result.1.2.840.114350.1.13.297.3.7.2.798268.1670845.Procedure'>Stool Pathogens, NAAT, 12 to 25 Targets (09/28/2022 1:51 PM PDT)</caption> <table> <thead> <tr> <th>Component</th> <th>Value</th> <th>Ref Range</th> <th>Test Method</th> <th>Analysis Time</th> <th>Performed At</th> <th>Pathologist Signature</th> </tr> </thead> <tbody> <tr data-id='Result.1.2.840.114350.1.13.297.3.7.2.798268.1670845.Comp1'> <td data-id='Result.1.2.840.114350.1.13.297.3.7.2.798268.1670845.Comp1Name'>Campylobacter, NAAT</td> <td>Not Detected</td> <td>Not Detected</td> <td> <paragraph data-id='Result.1.2.840.114350.1.13.297.3.7.2.798268.1670845.Comp1TestMethodName1'>LAB DEVICE: BIOFIRE\u00ae FILMARRAY\u00ae 2.0 SYSTEM</paragraph> </td> <td>09/28/2022 1:59 PM PDT</td> <td>PROVIDENCE ST. JOSEPH MEDICAL CENTER LABORATORY (CLIA 05D0672675)</td> <td data-id='Result.1.2.840.114350.1.13.297.3.7.2.798268.1670845.Comp1Signature'></td> </tr> <tr data-id='Result.1.2.840.114350.1.13.297.3.7.2.798268.1670845.Comp2'> <td data-id='Result.1.2.840.114350.1.13.297.3.7.2.798268.1670845.Comp2Name'>Plesiomonas shigelloides, NAAT</td> <td>Not Detected</td> <td>Not Detected</td> <td> <paragraph data-id='Result.1.2.840.114350.1.13.297.3.7.2.798268.1670845.Comp2TestMethodName1'>LAB DEVICE: BIOFIRE\u00ae FILMARRAY\u00ae 2.0 SYSTEM</paragraph> </td> <td>09/28/2022 1:59 PM PDT</td> <td>PROVIDENCE ST. JOSEPH MEDICAL CENTER LABORATORY (CLIA 05D0672675)</td> <td data-id='Result.1.2.840.114350.1.13.297.3.7.2.798268.1670845.Comp2Signature'></td> </tr> </tbody> </table> <table> <thead> <tr> <th>Specimen (Source)</th> <th>Anatomical Location / Laterality</th> <th>Collection Method / Volume</th> <th>Collection Time</th> <th>Received Time</th> </tr> </thead> <tbody> <tr> <td data-id='Result.1.2.840.114350.1.13.297.3.7.2.798268.1670845.Specimen'>Stool</td> <td>STOOL SPECIMEN / Unknown</td> <td></td> <td>09/28/2022 1:51 PM PDT</td> <td>09/28/2022 1:51 PM PDT</td> </tr> </tbody> </table> <table> <thead> <tr> <th>Authorizing Provider</th> <th>Result Type</th> </tr> </thead> <tbody> <tr> <td>Ambhp1 Test MD</td> <td>MICROBIOLOGY - GENERAL ORDERABLES</td> </tr> </tbody> </table> <table> <thead> <tr> <th>Performing Organization</th> <th>Address</th> <th>City/State/ZIP Code</th> <th>Phone Number</th> </tr> </thead> <tbody> <tr> <td data-id='Result.1.2.840.114350.1.13.297.3.7.2.798268.1670845.PerformingLab'> <paragraph>PROVIDENCE ST. JOSEPH MEDICAL CENTER LABORATORY (CLIA 05D0672675)</paragraph> </td> <td> <paragraph>501 S. Buena Vista Street</paragraph> </td> <td> <paragraph>Burbank, CA 91505</paragraph> </td> <td> <paragraph>818-847-6000</paragraph> </td> </tr> </tbody> </table> </li> <li data-id='Result.1.2.840.114350.1.13.297.3.7.2.798268.1670844'> <caption data-id='Result.1.2.840.114350.1.13.297.3.7.2.798268.1670844.Procedure'>(ABNORMAL) Stool Pathogens, NAAT, 12 to 25 Targets (09/28/2022 1:51 PM PDT)</caption> <table> <thead> <tr> <th>Component</th> <th>Value</th> <th>Ref Range</th> <th>Test Method</th> <th>Analysis Time</th> <th>Performed At</th> <th>Pathologist Signature</th> </tr> </thead> <tbody> <tr data-id='Result.1.2.840.114350.1.13.297.3.7.2.798268.1670844.Comp1'> <td data-id='Result.1.2.840.114350.1.13.297.3.7.2.798268.1670844.Comp1Name'>Campylobacter, NAAT</td> <td>Not Detected</td> <td>Not Detected</td> <td> <paragraph data-id='Result.1.2.840.114350.1.13.297.3.7.2.798268.1670844.Comp1TestMethodName1'>LAB DEVICE: BIOFIRE\u00ae FILMARRAY\u00ae 2.0 SYSTEM</paragraph> </td> <td>09/28/2022 2:00 PM PDT</td> <td>PROVIDENCE ST. JOSEPH MEDICAL CENTER LABORATORY (CLIA 05D0672675)</td> <td data-id='Result.1.2.840.114350.1.13.297.3.7.2.798268.1670844.Comp1Signature'></td> </tr> <tr data-id='Result.1.2.840.114350.1.13.297.3.7.2.798268.1670844.Comp2'> <td data-id='Result.1.2.840.114350.1.13.297.3.7.2.798268.1670844.Comp2Name'>Plesiomonas shigelloides, NAAT</td> <td>Not Detected</td> <td>Not Detected</td> <td> <paragraph data-id='Result.1.2.840.114350.1.13.297.3.7.2.798268.1670844.Comp2TestMethodName1'>LAB DEVICE: BIOFIRE\u00ae FILMARRAY\u00ae 2.0 SYSTEM</paragraph> </td> <td>09/28/2022 2:00 PM PDT</td> <td>PROVIDENCE ST. JOSEPH MEDICAL CENTER LABORATORY (CLIA 05D0672675)</td> <td data-id='Result.1.2.840.114350.1.13.297.3.7.2.798268.1670844.Comp2Signature'></td> </tr> </tbody> </table> <table> <thead> <tr> <th>Specimen (Source)</th> <th>Anatomical Location / Laterality</th> <th>Collection Method / Volume</th> <th>Collection Time</th> <th>Received Time</th> </tr> </thead> <tbody> <tr> <td data-id='Result.1.2.840.114350.1.13.297.3.7.2.798268.1670844.Specimen'>Stool</td> <td>STOOL SPECIMEN / Unknown</td> <td></td> <td>09/28/2022 1:51 PM PDT</td> <td>09/28/2022 1:51 PM PDT</td> </tr> </tbody> </table> <table> <thead> <tr> <th>Authorizing Provider</th> <th>Result Type</th> </tr> </thead> <tbody> <tr> <td>Ambhp1 Test MD</td> <td>MICROBIOLOGY - GENERAL ORDERABLES</td> </tr> </tbody> </table> <table> <thead> <tr> <th>Performing Organization</th> <th>Address</th> <th>City/State/ZIP Code</th> <th>Phone Number</th> </tr> </thead> <tbody> <tr> <td data-id='Result.1.2.840.114350.1.13.297.3.7.2.798268.1670844.PerformingLab'> <paragraph>PROVIDENCE ST. JOSEPH MEDICAL CENTER LABORATORY (CLIA 05D0672675)</paragraph> </td> <td> <paragraph>501 S. Buena Vista Street</paragraph> </td> <td> <paragraph>Burbank, CA 91505</paragraph> </td> <td> <paragraph>818-847-6000</paragraph> </td> </tr> </tbody> </table> </li> <li data-id='Result.1.2.840.114350.1.13.478.3.7.2.798268.2061347'> <caption data-id='Result.1.2.840.114350.1.13.478.3.7.2.798268.2061347.Procedure'>Cytogenomic SNP microarray (04/04/2022 11:55 AM CDT)</caption> <table> <thead> <tr> <th>Component</th> <th>Value</th> <th>Ref Range</th> <th>Test Method</th> <th>Analysis Time</th> <th>Performed At</th> <th>Pathologist Signature</th> </tr> </thead> <tbody> <tr data-id='Result.1.2.840.114350.1.13.478.3.7.2.798268.2061347.Comp1'> <td data-id='Result.1.2.840.114350.1.13.478.3.7.2.798268.2061347.Comp1Name'>Organism ID</td> <td>Acinetobacter baumannii</td> <td></td> <td></td> <td></td> <td>VUMC CERNER LAB</td> <td data-id='Result.1.2.840.114350.1.13.478.3.7.2.798268.2061347.Comp1Signature'></td> </tr> <tr> <td>Comment: <br>Lab comment<br></td> </tr> </tbody> </table> <table> <thead> <tr> <th>Organism</th> <th>Antibiotic</th> <th>Method</th> <th>Susceptibility</th> </tr> </thead> <tbody data-id='Result.1.2.840.114350.1.13.478.3.7.2.798268.2061347.Cluster1'> <tr data-id='Result.1.2.840.114350.1.13.478.3.7.2.798268.2061347.Cluster1Antibiotic1'> <td data-id='Result.1.2.840.114350.1.13.478.3.7.2.798268.2061347.Cluster1Name'>Acinetobacter baumannii</td> <td data-id='Result.1.2.840.114350.1.13.478.3.7.2.798268.2061347.Cluster1Antibiotic1Name'>Amikacin</td> <td>MIC</td> <td> <paragraph>0.25: Susceptible</paragraph> </td> </tr> <tr data-id='Result.1.2.840.114350.1.13.478.3.7.2.798268.2061347.Cluster1Antibiotic2'> <td>Acinetobacter baumannii</td> <td data-id='Result.1.2.840.114350.1.13.478.3.7.2.798268.2061347.Cluster1Antibiotic2Name'>Avycaz (Ceftazidime/Avibactam)</td> <td>MIC</td> <td> <paragraph>0.05: Intermediate</paragraph> </td> </tr> <tr data-id='Result.1.2.840.114350.1.13.478.3.7.2.798268.2061347.Cluster1Antibiotic3'> <td>Acinetobacter baumannii</td> <td data-id='Result.1.2.840.114350.1.13.478.3.7.2.798268.2061347.Cluster1Antibiotic3Name'>Levofloxacin</td> <td>MIC</td> <td> <paragraph>0.75: Resistant</paragraph> </td> </tr> </tbody> </table> <table> <thead> <tr> <th>Specimen (Source)</th> <th>Anatomical Location / Laterality</th> <th>Collection Method / Volume</th> <th>Collection Time</th> <th>Received Time</th> </tr> </thead> <tbody> <tr> <td data-id='Result.1.2.840.114350.1.13.478.3.7.2.798268.2061347.Specimen'>Blood</td> <td></td> <td>Collection / Unknown</td> <td>04/04/2022 11:55 AM CDT</td> <td>04/18/2022 2:46 PM CDT</td> </tr> </tbody> </table> <table> <thead> <tr> <th>Narrative</th> </tr> </thead> <tbody> <tr> <td> <paragraph>VUMC CERNER LAB - 04/18/2022 2:57 PM CDT</paragraph> <paragraph data-id='Result.1.2.840.114350.1.13.478.3.7.2.798268.2061347.Narrative'> MICROARRAY REPORT NARRATIVE</paragraph> </td> </tr> </tbody> </table> <table> <thead> <tr> <th>Resulting Agency Comment</th> </tr> </thead> <tbody> <tr> <td> <paragraph data-id='Result.1.2.840.114350.1.13.478.3.7.2.798268.2061347.ResultingAgencyComment'>testing comment</paragraph> </td> </tr> </tbody> </table> <table> <thead> <tr> <th>Authorizing Provider</th> <th>Result Type</th> </tr> </thead> <tbody> <tr> <td>Carda Testprovqa MD</td> <td>LAB GENETIC TESTING</td> </tr> </tbody> </table> <table> <thead> <tr> <th>Performing Organization</th> <th>Address</th> <th>City/State/ZIP Code</th> <th>Phone Number</th> </tr> </thead> <tbody> <tr> <td data-id='Result.1.2.840.114350.1.13.478.3.7.2.798268.2061347.PerformingLab'> <paragraph>VUMC CERNER LAB</paragraph> </td> <td> <paragraph>4605 TVC VUMC</paragraph> <paragraph>1301 Medical Center Drive</paragraph> </td> <td> <paragraph>NASHVILLE, TN 37232-5310</paragraph> </td> <td> <paragraph>615-875-5227</paragraph> </td> </tr> </tbody> </table> </li> </ul> documented in this encounter"
},
"code": {
"coding": [
Expand Down
Loading

0 comments on commit 6f80942

Please sign in to comment.