diff --git a/.github/workflows/container-ecr-viewer.yaml b/.github/workflows/container-ecr-viewer.yaml index 4251ff20aa..31b1c03759 100644 --- a/.github/workflows/container-ecr-viewer.yaml +++ b/.github/workflows/container-ecr-viewer.yaml @@ -151,6 +151,8 @@ jobs: - name: Run seed data conversion working-directory: ./containers/${{env.CONTAINER}} run: npm run convert-seed-data + env: + SEED_DATA_DIRECTORIES: e2e - name: Run Playwright tests working-directory: ./containers/${{env.CONTAINER}} diff --git a/containers/ecr-viewer/.env.sample b/containers/ecr-viewer/.env.sample index 29b0a22a77..1be62881bf 100644 --- a/containers/ecr-viewer/.env.sample +++ b/containers/ecr-viewer/.env.sample @@ -1,5 +1,8 @@ CONFIG_NAME=AWS_SQLSERVER_NON_INTEGRATED +# Seed script configuration (default, "LA") +# SEED_DATA_DIRECTORIES=DIR1,DIR2 + # Azure Connection AZURE_STORAGE_CONNECTION_STRING="DefaultEndpointsProtocol=http;AccountName=devstoreaccount1;AccountKey=Eby8vdM02xNOcqFlqUwJPLlmEtlCDXJ1OUzFT50uSRZ6IFsuFq2UVErCz4I6tq/K1SZFPTOtr/KBHBeksoGMGw==;BlobEndpoint=http://localhost:10000/devstoreaccount1;" AZURE_CONTAINER_NAME=ecr-viewer-files diff --git a/containers/ecr-viewer/Dockerfile b/containers/ecr-viewer/Dockerfile index 6aec499382..457b9434b8 100644 --- a/containers/ecr-viewer/Dockerfile +++ b/containers/ecr-viewer/Dockerfile @@ -1,3 +1,4 @@ +# syntax=docker.io/docker/dockerfile:1.7-labs FROM node:18-alpine AS base # Install dependencies only when needed @@ -15,7 +16,7 @@ RUN npm ci FROM base AS builder WORKDIR /app COPY --from=deps /app/node_modules ./node_modules -COPY . . +COPY --exclude=./seed-scripts . . # Next.js collects completely anonymous telemetry data about general usage. # Learn more here: https://nextjs.org/telemetry @@ -64,4 +65,4 @@ ENV OTEL_EXPORTER_OTLP_TRACES_ENDPOINT=http://otel-collector:4318/v1/traces # server.js is created by next build from the standalone output # https://nextjs.org/docs/pages/api-reference/next-config-js/output -CMD ["node", "server.js"] \ No newline at end of file +CMD ["node", "server.js"] diff --git a/containers/ecr-viewer/README.md b/containers/ecr-viewer/README.md index ba36d21db4..089d43a667 100644 --- a/containers/ecr-viewer/README.md +++ b/containers/ecr-viewer/README.md @@ -78,6 +78,8 @@ Sample eICRs are included in `containers/ecr-viewer/seed-scripts/baseECR/`. If y 2. Run `npm run convert-seed-data` to re-run the FHIR conversion of the seed eCRs 3. Run `npm run local-dev` to re-run the eCR Viewer with the newly converted data. +By default, the seed data in the `LA` subfolder converts. To convert other (or additional) subfolders, set the `SEED_DATA_DIRECTORIES` environment variable to a comma delimited list of subfolders (e.g. `LA,Dir2` or `Dir2`). + ### Developer Commands Additional commands can be found in [`package.json`](package.json). @@ -97,7 +99,7 @@ Running tests: End to end test utilize the Playwright framerwork. Running Tests: -1. `npm run convert-seed-data:build` to save all required eCRs necessary for e2e tests. The tests require all eCRs located in `/seed-scripts/baseECR/LA` have been saved (and no other eCRs). +1. set `SEED_DATA_DIRECTORIES=e2e` in your `.env.local`, then `npm run convert-seed-data:build` to save all required eCRs necessary for e2e tests. The tests require all eCRs located in `/seed-scripts/baseECR/e2e` have been saved (and no other eCRs). 2. `npm run test:e2e` to run the tests against http://localhost:3000/ecr-viewer. - If the service isn't available, Playwright is [configured to spin it up](https://playwright.dev/docs/test-webserver). - If you would prefer to spin up the service manually, you can run `npm run local-dev` or `npm run local-docker`. diff --git a/containers/ecr-viewer/e2e/ecr-library.spec.ts b/containers/ecr-viewer/e2e/ecr-library.spec.ts index 9768fce745..ce629d0065 100644 --- a/containers/ecr-viewer/e2e/ecr-library.spec.ts +++ b/containers/ecr-viewer/e2e/ecr-library.spec.ts @@ -17,7 +17,7 @@ test.describe("eCR Library page", () => { }); }); test.describe("eCR Library Filtering", () => { - const totalNumOfConditions = "24"; + const totalNumOfConditions = "4"; test("Set reportable condition filter to anthrax", async ({ page }) => { await page.goto("/ecr-viewer"); await page.waitForURL("/ecr-viewer?columnId=date_created&direction=DESC"); @@ -30,9 +30,9 @@ test.describe("eCR Library Filtering", () => { await page.getByText("Deselect all").click({ delay: 200 }); await page.getByRole("group").getByText("Anthrax (disorder)").click(); await page.getByLabel("Apply Filter").click(); - await expect(page.getByText("Showing 1-16")).toBeVisible(); + await expect(page.getByText("Showing 1-1")).toBeVisible(); expect((await page.locator("tbody > tr").allTextContents()).length).toEqual( - 16, + 1, ); }); @@ -43,12 +43,12 @@ test.describe("eCR Library Filtering", () => { totalNumOfConditions, ); - await page.getByTestId("textInput").fill("Victoria"); + await page.getByTestId("textInput").fill("Abel"); await page.getByTestId("form").getByTestId("button").click(); await expect(page.getByText("Showing 1-1 of 1 eCRs")).toBeVisible(); await expect( - page.getByRole("cell", { name: "Victoria Hunter DOB: 11/15/" }), + page.getByRole("cell", { name: "Abel Castillo DOB: 04/15/2015" }), ).toBeVisible(); expect((await page.locator("tbody > tr").allTextContents()).length).toEqual( 1, @@ -65,7 +65,7 @@ test.describe("eCR Library Filtering", () => { ); await page.getByTestId("textInput").click(); - await page.getByTestId("textInput").fill("Victoria"); + await page.getByTestId("textInput").fill("Abel"); await page.getByTestId("form").getByTestId("button").click(); await expect(page.getByText("Showing 1-1 of 1 eCRs")).toBeVisible(); diff --git a/containers/ecr-viewer/e2e/ecr-viewer.spec.ts b/containers/ecr-viewer/e2e/ecr-viewer.spec.ts index 135ba74f10..4f560e7ce6 100644 --- a/containers/ecr-viewer/e2e/ecr-viewer.spec.ts +++ b/containers/ecr-viewer/e2e/ecr-viewer.spec.ts @@ -8,7 +8,7 @@ test("should not have any automatically detectable accessibility issues", async test.setTimeout(120_000); await page.goto( - "/ecr-viewer/view-data?id=1.2.840.114350.1.13.297.3.7.8.688883.573942", + "/ecr-viewer/view-data?id=1.2.840.114350.1.13.297.3.7.8.688883.567479", ); await page.getByText("Patient Name").first().waitFor(); @@ -21,20 +21,11 @@ test("fully expanded should not have any automatically detectable accessibility page, }) => { await page.goto( - "/ecr-viewer/view-data?id=1.2.840.114350.1.13.297.3.7.8.688883.573942", + "/ecr-viewer/view-data?id=1.2.840.114350.1.13.297.3.7.8.688883.567479", ); - await page.getByTestId("accordionButton_giardiasis").click(); await page.getByRole("button", { name: "Expand all labs" }).click(); - const accordionButtons = await page - .getByTestId("accordionItem_giardiasis") - .getByTestId("accordionButton_stool-pathogens-naat-parasite") - .all(); - for (let accordionButton of accordionButtons) { - await accordionButton.scrollIntoViewIfNeeded(); - await accordionButton.click(); - } - const viewCommentButtons = await page.getByText("View comment").all(); + const viewCommentButtons = await page.getByTestId("comment-button").all(); for (let viewCommentButton of viewCommentButtons) { await viewCommentButton.scrollIntoViewIfNeeded(); await viewCommentButton.click(); diff --git a/containers/ecr-viewer/seed-scripts/baseECR/e2e/0a0b1da9-7ac6-4668-a448-c66012afae3b/CDA_RR.html b/containers/ecr-viewer/seed-scripts/baseECR/e2e/0a0b1da9-7ac6-4668-a448-c66012afae3b/CDA_RR.html new file mode 100644 index 0000000000..ac8aea8790 --- /dev/null +++ b/containers/ecr-viewer/seed-scripts/baseECR/e2e/0a0b1da9-7ac6-4668-a448-c66012afae3b/CDA_RR.html @@ -0,0 +1,191 @@ + + + + + + Reportability Response + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
PatientEpictest, Peter Pan
Patient ID(s)POC1417409 1.2.840.114350.1.13.297.3.7.3.688884.100 +
+
Contact info Primary Home: +
+ 278 MAIN ST +
+ NEWHALL, CA 91321 +
+
Date of BirthFebruary 17, 1986
SexMale
Race
Ethnicity
Preferred LanguageInformation not available
+ + + + + + + + + +
Primary Information Recipient:Obstetrics, Midwife
Contact info
+ + + + + + +
eICR Identifier: 1.2.840.114350.1.13.297.3.7.8.688883.567479
+
+
+ Subject: +

Public Health Reporting Communication: one or more conditions are reportable, or may be reportable, to public health.

+
+
+
+ Summary: +

Your organization electronically submitted an initial case report to determine if reporting to public health is needed for a patient.

+

+ "Overdose of opiate (disorder)" is reportable to "Los Angeles County Department of Public Health". The initial case report was sent to "Los Angeles County Department of Public Health". Additional information may be required for this report. +
+

+

+ No determination of reportability could be made for any condition for "California Department of Public Health". This may be because it is not on the list of reportable conditions for the relevant Public Health Agency, or the information provided at the time of this report does not meet reporting criteria, or not all data needed to confirm reportability were available. +
+

+

+ "Overdose of opiate (disorder)" for "Los Angeles County Department of Public Health" +

+
+
+
+ + diff --git a/containers/ecr-viewer/seed-scripts/baseECR/e2e/0a0b1da9-7ac6-4668-a448-c66012afae3b/CDA_RR.xml b/containers/ecr-viewer/seed-scripts/baseECR/e2e/0a0b1da9-7ac6-4668-a448-c66012afae3b/CDA_RR.xml new file mode 100644 index 0000000000..341d94af59 --- /dev/null +++ b/containers/ecr-viewer/seed-scripts/baseECR/e2e/0a0b1da9-7ac6-4668-a448-c66012afae3b/CDA_RR.xml @@ -0,0 +1 @@ +Reportability Response278 MAIN STNEWHALLCA91321Peter PanEpictestHoag Memorial Hospital1 HOAG DRORANGENEWPORT BEACHCA92663-4162USAAPHL | Association of Public Health Laboratories.8515 Georgia Avenue, Suite 700Silver SpringMD20910USMidwifeObstetricsHoag Memorial Hospital1 HOAG DRORANGENEWPORT BEACHCA92663-4162USAEmergencyMidwifeObstetricsHoag Memorial Hospital1 HOAG DRORANGENEWPORT BEACHCA92663-4162USAEmergency MedicineHOAG MEMORIAL HOSPITAL NEWPORT EMERGENCY CENTER1 HOAG DRORANGENEWPORT BEACHCA92663-4162USAHOAG HOSPITAL NEWPORT BEACH1 HOAG DRORANGENEWPORT BEACHCA92663-4162USAHoag Memorial Hospital
.
Subject:Public Health Reporting Communication: one or more conditions are reportable, or may be reportable, to public health.
Public Health Reporting Communication: one or more conditions are reportable, or may be reportable, to public health.
.Summary:Your organization electronically submitted an initial case report to determine if reporting to public health is needed for a patient."Overdose of opiate (disorder)" is reportable to "Los Angeles County Department of Public Health". The initial case report was sent to "Los Angeles County Department of Public Health". Additional information may be required for this report.
No determination of reportability could be made for any condition for "California Department of Public Health". This may be because it is not on the list of reportable conditions for the relevant Public Health Agency, or the information provided at the time of this report does not meet reporting criteria, or not all data needed to confirm reportability were available.
"Overdose of opiate (disorder)" for "Los Angeles County Department of Public Health"
Your organization electronically submitted an initial case report to determine if reporting to public health is needed for a patient. Los Angeles County Department of Public HealthLos Angeles County Department of Public HealthDetection of opioid substance or metabolite in a clinical specimen by any methodVital status at end of encounter is alive or unknownSacramentoCACalifornia Department of Public HealthSacramentoCACalifornia Department of Public Health
\ No newline at end of file diff --git a/containers/ecr-viewer/seed-scripts/baseECR/e2e/0a0b1da9-7ac6-4668-a448-c66012afae3b/CDA_eICR.html b/containers/ecr-viewer/seed-scripts/baseECR/e2e/0a0b1da9-7ac6-4668-a448-c66012afae3b/CDA_eICR.html new file mode 100644 index 0000000000..cd3a3969b7 --- /dev/null +++ b/containers/ecr-viewer/seed-scripts/baseECR/e2e/0a0b1da9-7ac6-4668-a448-c66012afae3b/CDA_eICR.html @@ -0,0 +1,3655 @@ + + + + + + + Initial Public Health Case Report + + + + + + + +
+ +

Initial Public Health Case Report

+
+
+
+
+
Peter Pan Epictest
+
+
Patient Identifiers
+
+
POC1417409 OID: 1.2.840.114350.1.13.297.3.7.3.688884.100
+
+
+
+
+
+

About

+
+
+
Date of Birth
+
02/17/1986
+
+
+
Sex
+
Male
+
+
+
Race
+
+
+
+
Ethnicity
+
+
+
+
Preferred Language
+
+ Information not available +
+
+
+
+
+

Contact

+
+
+
Primary Home (04/7/2017 to // )
+
+

278 MAIN ST

+

NEWHALL, CA

+

91321

+
+
+
+
tel: (Primary Home) +1-661-210-7348
+
+
+
+
+
+
+
+
+

Author

+
+
+
Time:
+
12/23/2022, 14:59
+
+
+
Background Lab
+
+
+
LABBACKGROUND OID: 1.2.840.114350.1.13.297.3.7.2.697780
+
+
+
+
+

Contact

+
+
+
+
+
+
+
+

Author Organization

+
+
+
Hoag Memorial Hospital
+
+
+
51 OID: 1.2.840.114350.1.13.297.3.7.2.696570
+
+
+
+
+

Contact

+
+
+
Work Place
+
+

1 HOAG DR

+

NEWPORT BEACH, CA

+

92663-4162, USA

+
+
+
+
tel: (Work Place) +1-949-764-8400
+
+
+
+
+
+
+

Author

+
+
+
Time:
+
12/23/2022, 14:59
+
+
+
+
+
+
10.1 OID: 1.2.840.114350.1.1
+
+
+
+
+

Contact

+
+
+
+
+
+
+
+

Author Organization

+
+
+
Hoag Memorial Hospital
+
+
+
51 OID: 1.2.840.114350.1.13.297.3.7.2.696570
+
+
+
+
+

Contact

+
+
+
Work Place
+
+

1 HOAG DR

+

NEWPORT BEACH, CA

+

92663-4162, USA

+
+
+
+
tel: (Work Place) +1-949-764-8400
+
+
+
+
+
+
+
+
+

Encounter

+
+
+
Identifier
+
50000596781 OID: 1.2.840.114350.1.13.297.3.7.3.698084.8
+
+
+
Type
+
Emergency
+
+
+
Date
+
+ From: 10/11/2022 +
+
+
+
Location
+
HOAG MEMORIAL HOSPITAL NEWPORT EMERGENCY CENTER of HOAG HOSPITAL NEWPORT BEACH
+
+
+
+
+
+
+
+
+
+
+
+

Miscellaneous Notes

+
+ Not on file + documented in this encounter +
+
+
+

Immunizations

+
+ Not on file + documented as of this encounter +
+
+
+

Administered Medications

+
+ Not on file + documented in this encounter +
+
+
+

Plan of Treatment

+
+
+ + Pending Results + + + + + + + + + + + + + + + + +
NameTypePriorityAssociated DiagnosesDate/Time
+ Drugs Of Abuse Comprehensive Screen, Ur + LabSTAT12/23/2022 11:13 AM PST
+
+
+ + Scheduled Orders + + + + + + + + + + + + + + + + +
NameTypePriorityAssociated DiagnosesOrder Schedule
+ Drugs Of Abuse Comprehensive Screen, Ur + LabRoutineOne Time for 1 Occurrences starting 12/23/22 until 12/23/22
+
+ documented as of this encounter +
+
+
+

Problems

+
+

No known active problems

+ documented as of this encounter (statuses as of 12/23/2022) +
+
+
+

Reason for Visit

+
+ Not on file +
+
+
+

Results

+
+
    +
  • + (ABNORMAL) Drugs of Abuse, Screen, Urine (12/23/2022 12:56 PM PST): +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    ComponentValueRef RangeTest MethodAnalysis TimePerformed AtPathologist Signature
    Phencyclidine Screen, Urine + Negative + Negative +

    LAB DEVICE: ORTHO CLINICAL DIAGNOSTICS VITROS® 7500

    +
    12/23/2022 2:59 PM PSTHOAG MEMORIAL HOSPITAL NEWPORT BEACH LABORATORY (CLIA 05D0578635)
    + + Comment: +
    + + PCP: Cut-off conc 25 ng/mL +
    +
    +
    +
    +
    +
    Benzodiazepines Screen, Urine + Negative + Negative +

    LAB DEVICE: ORTHO CLINICAL DIAGNOSTICS VITROS® 7500

    +
    12/23/2022 2:59 PM PSTHOAG MEMORIAL HOSPITAL NEWPORT BEACH LABORATORY (CLIA 05D0578635)
    + + Comment: +
    + + Benzo: Cut-off conc 200 ng/mL +
    +
    +
    +
    +
    +
    Cocaine Screen, Urine + Negative + Negative +

    LAB DEVICE: ORTHO CLINICAL DIAGNOSTICS VITROS® 7500

    +
    12/23/2022 2:59 PM PSTHOAG MEMORIAL HOSPITAL NEWPORT BEACH LABORATORY (CLIA 05D0578635)
    + + Comment: + Cocaine: Cut-off conc 150 ng/mL + +
    Barbiturates Screen, Urine + Negative + Negative +

    LAB DEVICE: ORTHO CLINICAL DIAGNOSTICS VITROS® 7500

    +
    12/23/2022 2:59 PM PSTHOAG MEMORIAL HOSPITAL NEWPORT BEACH LABORATORY (CLIA 05D0578635)
    + + Comment: +
    + + Barb: Cut-off conc 200 ng/mL +
    +
    +
    +
    +
    +
    Amphetamine Screen, Urine + Negative + Negative +

    LAB DEVICE: ORTHO CLINICAL DIAGNOSTICS VITROS® 7500

    +
    12/23/2022 2:59 PM PSTHOAG MEMORIAL HOSPITAL NEWPORT BEACH LABORATORY (CLIA 05D0578635)
    + + Comment: +
    + + Amph: Cut-off conc 500 ng/mL +
    +
    +
    +
    +
    +
    Cannabinoids Screen, Urine + Negative + Negative +

    LAB DEVICE: ORTHO CLINICAL DIAGNOSTICS VITROS® 7500

    +
    12/23/2022 2:59 PM PSTHOAG MEMORIAL HOSPITAL NEWPORT BEACH LABORATORY (CLIA 05D0578635)
    + + Comment: + THC: Cut-off conc 50 ng/mL + +
    Opiates Screen, Urine + Negative + Negative +

    LAB DEVICE: ORTHO CLINICAL DIAGNOSTICS VITROS® 7500

    +
    12/23/2022 2:59 PM PSTHOAG MEMORIAL HOSPITAL NEWPORT BEACH LABORATORY (CLIA 05D0578635)
    + + Comment: + Opiates: Cut-off conc 300 ng/mL + +
    Specific Gravity, Urine12/23/2022 2:59 PM PSTHOAG MEMORIAL HOSPITAL NEWPORT BEACH LABORATORY (CLIA 05D0578635)
    + + Comment: + Not Indicated + +
    Creatinine, Urine, Random43Not Established mg/dL +

    LAB DEVICE: ORTHO CLINICAL DIAGNOSTICS VITROS® 7500

    +
    12/23/2022 2:59 PM PSTHOAG MEMORIAL HOSPITAL NEWPORT BEACH LABORATORY (CLIA 05D0578635)
    Fentanyl Screen, Urine + Positive + (A) + Negative +

    LAB DEVICE: ORTHO CLINICAL DIAGNOSTICS VITROS® 7500

    +
    12/23/2022 2:59 PM PSTHOAG MEMORIAL HOSPITAL NEWPORT BEACH LABORATORY (CLIA 05D0578635)
    + + Comment: + Fentanyl: Cut-off conc 1 ng/mL + +
    +
    +
    + + + + + + + + + + + + + + +
    Specimen (Source)Anatomical Location / LateralityCollection Method / VolumeCollection TimeReceived Time
    UrineCollection / Unknown12/23/2022 12:56 PM PST12/23/2022 12:56 PM PST
    +
    +
    + + + + + + + + + + + +
    Narrative
    +

    HOAG MEMORIAL HOSPITAL NEWPORT BEACH LABORATORY (CLIA 05D0578635) - 12/23/2022 2:59 PM PST

    +

    + Positive screening results are unconfirmed and are to be used only for medical (i.e., treatment) purposes. Unconfirmed screening results must not be used for non-medical purposes (e.g., employment testing). +
    + Only positive maternal and neonatal screening results reflex for confirmation and are reported separately. +
    + +

    +
    +
    +
    + + + + + + + + + + + + + + + +
    Authorizing ProviderResult Type
    Midwife Obstetrics CNMURINE ORDERABLES
    +
    +
    + + + + + + + + + + + + + + + +
    Performing OrganizationAddressCity/State/ZIP CodePhone Number
    +

    HOAG MEMORIAL HOSPITAL NEWPORT BEACH LABORATORY (CLIA 05D0578635)

    +
    +

    One Hoag Drive

    +
    +

    Newport Beach, CA 92663

    +
    +

    949-764-5600

    +
    +
    +
  • +
  • + (ABNORMAL) Drugs of Abuse, Screen, Urine (12/23/2022 11:16 AM PST): +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    ComponentValueRef RangeTest MethodAnalysis TimePerformed AtPathologist Signature
    Phencyclidine Screen, Urine + Negative + Negative +

    LAB DEVICE: ORTHO CLINICAL DIAGNOSTICS VITROS® 7500

    +
    12/23/2022 11:35 AM PSTHOAG MEMORIAL HOSPITAL NEWPORT BEACH LABORATORY (CLIA 05D0578635)
    + + Comment: +
    + + PCP: Cut-off conc 25 ng/mL +
    +
    +
    +
    +
    +
    Benzodiazepines Screen, Urine + Negative + Negative +

    LAB DEVICE: ORTHO CLINICAL DIAGNOSTICS VITROS® 7500

    +
    12/23/2022 11:35 AM PSTHOAG MEMORIAL HOSPITAL NEWPORT BEACH LABORATORY (CLIA 05D0578635)
    + + Comment: +
    + + Benzo: Cut-off conc 200 ng/mL +
    +
    +
    +
    +
    +
    Cocaine Screen, Urine + Negative + Negative +

    LAB DEVICE: ORTHO CLINICAL DIAGNOSTICS VITROS® 7500

    +
    12/23/2022 11:35 AM PSTHOAG MEMORIAL HOSPITAL NEWPORT BEACH LABORATORY (CLIA 05D0578635)
    + + Comment: + Cocaine: Cut-off conc 150 ng/mL + +
    Barbiturates Screen, Urine + Negative + Negative +

    LAB DEVICE: ORTHO CLINICAL DIAGNOSTICS VITROS® 7500

    +
    12/23/2022 11:35 AM PSTHOAG MEMORIAL HOSPITAL NEWPORT BEACH LABORATORY (CLIA 05D0578635)
    + + Comment: +
    + + Barb: Cut-off conc 200 ng/mL +
    +
    +
    +
    +
    +
    Amphetamine Screen, Urine + Negative + Negative +

    LAB DEVICE: ORTHO CLINICAL DIAGNOSTICS VITROS® 7500

    +
    12/23/2022 11:35 AM PSTHOAG MEMORIAL HOSPITAL NEWPORT BEACH LABORATORY (CLIA 05D0578635)
    + + Comment: +
    + + Amph: Cut-off conc 500 ng/mL +
    +
    +
    +
    +
    +
    Cannabinoids Screen, Urine + Negative + Negative +

    LAB DEVICE: ORTHO CLINICAL DIAGNOSTICS VITROS® 7500

    +
    12/23/2022 11:35 AM PSTHOAG MEMORIAL HOSPITAL NEWPORT BEACH LABORATORY (CLIA 05D0578635)
    + + Comment: + THC: Cut-off conc 50 ng/mL + +
    Opiates Screen, Urine + Negative + Negative +

    LAB DEVICE: ORTHO CLINICAL DIAGNOSTICS VITROS® 7500

    +
    12/23/2022 11:35 AM PSTHOAG MEMORIAL HOSPITAL NEWPORT BEACH LABORATORY (CLIA 05D0578635)
    + + Comment: + Opiates: Cut-off conc 300 ng/mL + +
    Specific Gravity, Urine12/23/2022 11:35 AM PSTHOAG MEMORIAL HOSPITAL NEWPORT BEACH LABORATORY (CLIA 05D0578635)
    + + Comment: + Not Indicated + +
    Creatinine, Urine, Random100Not Established mg/dL +

    LAB DEVICE: ORTHO CLINICAL DIAGNOSTICS VITROS® 7500

    +
    12/23/2022 11:35 AM PSTHOAG MEMORIAL HOSPITAL NEWPORT BEACH LABORATORY (CLIA 05D0578635)
    Fentanyl Screen, Urine + Positive + (A) + Negative +

    LAB DEVICE: ORTHO CLINICAL DIAGNOSTICS VITROS® 7500

    +
    12/23/2022 11:35 AM PSTHOAG MEMORIAL HOSPITAL NEWPORT BEACH LABORATORY (CLIA 05D0578635)
    + + Comment: + Fentanyl: Cut-off conc 1 ng/mL + +
    +
    +
    + + + + + + + + + + + + + + +
    Specimen (Source)Anatomical Location / LateralityCollection Method / VolumeCollection TimeReceived Time
    UrineCollection / Unknown12/23/2022 11:16 AM PST12/23/2022 11:16 AM PST
    +
    +
    + + + + + + + + + + + +
    Narrative
    +

    HOAG MEMORIAL HOSPITAL NEWPORT BEACH LABORATORY (CLIA 05D0578635) - 12/23/2022 11:35 AM PST

    +

    + Positive screening results are unconfirmed and are to be used only for medical (i.e., treatment) purposes. Unconfirmed screening results must not be used for non-medical purposes (e.g., employment testing). +
    + Only positive maternal and neonatal screening results reflex for confirmation and are reported separately. +
    + +

    +
    +
    +
    + + + + + + + + + + + + + + + +
    Authorizing ProviderResult Type
    Valerie Krozel MDURINE ORDERABLES
    +
    +
    + + + + + + + + + + + + + + + +
    Performing OrganizationAddressCity/State/ZIP CodePhone Number
    +

    HOAG MEMORIAL HOSPITAL NEWPORT BEACH LABORATORY (CLIA 05D0578635)

    +
    +

    One Hoag Drive

    +
    +

    Newport Beach, CA 92663

    +
    +

    949-764-5600

    +
    +
    +
  • +
  • + (ABNORMAL) PSA, Screen (11/23/2022 9:16 AM PST): +
    + + + + + + + + + + + + + + + + + + + + + + +
    ComponentValueRef RangeTest MethodAnalysis TimePerformed AtPathologist Signature
    PSA + 8.00 + (H) + 0.06 - 4.00 ng/mL +

    LAB DEVICE: ORTHO CLINICAL DIAGNOSTICS VITROS® 7500

    +
    11/23/2022 9:17 AM PSTHOAG MEMORIAL HOSPITAL NEWPORT BEACH LABORATORY (CLIA 05D0578635)
    + + Comment: + This immunoassay is manufactured by Ortho clinical Diagnostics. Tumor marker values using different test methods or manufacturers may vary and cannot be compared. If there is a change to the manufacturer or methodology, patients undergoing serial monitoring should have additional testing performed to confirm baseline values. + +
    +
    +
    + + + + + + + + + + + + + + +
    Specimen (Source)Anatomical Location / LateralityCollection Method / VolumeCollection TimeReceived Time
    BloodVenipuncture / Unknown11/23/2022 9:16 AM PST11/23/2022 9:16 AM PST
    +
    +
    + + + + + + + + + + + + + + + +
    Authorizing ProviderResult Type
    Victor J Aaen MDLAB BLOOD ORDERABLES
    +
    +
    + + + + + + + + + + + + + + + +
    Performing OrganizationAddressCity/State/ZIP CodePhone Number
    +

    HOAG MEMORIAL HOSPITAL NEWPORT BEACH LABORATORY (CLIA 05D0578635)

    +
    +

    One Hoag Drive

    +
    +

    Newport Beach, CA 92663

    +
    +

    949-764-5600

    +
    +
    +
  • +
  • + (ABNORMAL) PSA, Diagnostic (11/23/2022 9:16 AM PST): +
    + + + + + + + + + + + + + + + + + + + + + + +
    ComponentValueRef RangeTest MethodAnalysis TimePerformed AtPathologist Signature
    PSA + 8.00 + (H) + 0.06 - 4.00 ng/mL +

    LAB DEVICE: ORTHO CLINICAL DIAGNOSTICS VITROS® 7500

    +
    11/23/2022 9:17 AM PSTHOAG MEMORIAL HOSPITAL NEWPORT BEACH LABORATORY (CLIA 05D0578635)
    + + Comment: + This immunoassay is manufactured by Ortho clinical Diagnostics. Tumor marker values using different test methods or manufacturers may vary and cannot be compared. If there is a change to the manufacturer or methodology, patients undergoing serial monitoring should have additional testing performed to confirm baseline values. + +
    +
    +
    + + + + + + + + + + + + + + +
    Specimen (Source)Anatomical Location / LateralityCollection Method / VolumeCollection TimeReceived Time
    BloodVenipuncture / Unknown11/23/2022 9:16 AM PST11/23/2022 9:16 AM PST
    +
    +
    + + + + + + + + + + + + + + + +
    Authorizing ProviderResult Type
    Ruth A Fischer-Wright MDLAB BLOOD ORDERABLES
    +
    +
    + + + + + + + + + + + + + + + +
    Performing OrganizationAddressCity/State/ZIP CodePhone Number
    +

    HOAG MEMORIAL HOSPITAL NEWPORT BEACH LABORATORY (CLIA 05D0578635)

    +
    +

    One Hoag Drive

    +
    +

    Newport Beach, CA 92663

    +
    +

    949-764-5600

    +
    +
    +
  • +
  • + (ABNORMAL) CEA (11/23/2022 9:16 AM PST): +
    + + + + + + + + + + + + + + + + + + + + + + +
    ComponentValueRef RangeTest MethodAnalysis TimePerformed AtPathologist Signature
    CEA + 50.0 + (H) + 0.3 - 3.0 ng/mL +

    LAB DEVICE: ORTHO CLINICAL DIAGNOSTICS VITROS® 7500

    +
    11/23/2022 9:17 AM PSTHOAG MEMORIAL HOSPITAL NEWPORT BEACH LABORATORY (CLIA 05D0578635)
    + + Comment: + This immunoassay is manufactured by Ortho clinical Diagnostics. Tumor marker values using different test methods or manufacturers may vary and cannot be compared. If there is a change to the manufacturer or methodology, patients undergoing serial monitoring should have additional testing performed to confirm baseline values. + +
    +
    +
    + + + + + + + + + + + + + + +
    Specimen (Source)Anatomical Location / LateralityCollection Method / VolumeCollection TimeReceived Time
    BloodVenipuncture / Unknown11/23/2022 9:16 AM PST11/23/2022 9:16 AM PST
    +
    +
    + + + + + + + + + + + + + + + +
    Authorizing ProviderResult Type
    Ruth A Fischer-Wright MDLAB BLOOD ORDERABLES
    +
    +
    + + + + + + + + + + + + + + + +
    Performing OrganizationAddressCity/State/ZIP CodePhone Number
    +

    HOAG MEMORIAL HOSPITAL NEWPORT BEACH LABORATORY (CLIA 05D0578635)

    +
    +

    One Hoag Drive

    +
    +

    Newport Beach, CA 92663

    +
    +

    949-764-5600

    +
    +
    +
  • +
  • + (ABNORMAL) CA 125, Quant (11/23/2022 9:16 AM PST): +
    + + + + + + + + + + + + + + + + + + + + + + +
    ComponentValueRef RangeTest MethodAnalysis TimePerformed AtPathologist Signature
    Cancer Antigen 125 + 12,200 + (H) + 6 - 35 U/mL +

    LAB DEVICE: ORTHO CLINICAL DIAGNOSTICS VITROS® 7500

    +
    11/23/2022 9:17 AM PSTHOAG MEMORIAL HOSPITAL NEWPORT BEACH LABORATORY (CLIA 05D0578635)
    + + Comment: + This immunoassay is manufactured by Ortho clinical Diagnostics. Tumor marker values using different test methods or manufacturers may vary and cannot be compared. If there is a change to the manufacturer or methodology, patients undergoing serial monitoring should have additional testing performed to confirm baseline values. + +
    +
    +
    + + + + + + + + + + + + + + +
    Specimen (Source)Anatomical Location / LateralityCollection Method / VolumeCollection TimeReceived Time
    BloodVenipuncture / Unknown11/23/2022 9:16 AM PST11/23/2022 9:16 AM PST
    +
    +
    + + + + + + + + + + + + + + + +
    Authorizing ProviderResult Type
    Ruth A Fischer-Wright MDLAB BLOOD ORDERABLES
    +
    +
    + + + + + + + + + + + + + + + +
    Performing OrganizationAddressCity/State/ZIP CodePhone Number
    +

    HOAG MEMORIAL HOSPITAL NEWPORT BEACH LABORATORY (CLIA 05D0578635)

    +
    +

    One Hoag Drive

    +
    +

    Newport Beach, CA 92663

    +
    +

    949-764-5600

    +
    +
    +
  • +
  • + CA 19-9, Quant (11/23/2022 9:16 AM PST): +
    + + + + + + + + + + + + + + + + + + + + + + +
    ComponentValueRef RangeTest MethodAnalysis TimePerformed AtPathologist Signature
    CA 19 9 + 10 + 1 - 37 U/mL +

    LAB DEVICE: ORTHO CLINICAL DIAGNOSTICS VITROS® 7500

    +
    11/23/2022 9:17 AM PSTHOAG MEMORIAL HOSPITAL NEWPORT BEACH LABORATORY (CLIA 05D0578635)
    + + Comment: + This immunoassay is manufactured by Ortho clinical Diagnostics. Tumor marker values using different test methods or manufacturers may vary and cannot be compared. If there is a change to the manufacturer or methodology, patients undergoing serial monitoring should have additional testing performed to confirm baseline values. + +
    +
    +
    + + + + + + + + + + + + + + +
    Specimen (Source)Anatomical Location / LateralityCollection Method / VolumeCollection TimeReceived Time
    BloodVenipuncture / Unknown11/23/2022 9:16 AM PST11/23/2022 9:16 AM PST
    +
    +
    + + + + + + + + + + + + + + + +
    Authorizing ProviderResult Type
    Ruth A Fischer-Wright MDLAB BLOOD ORDERABLES
    +
    +
    + + + + + + + + + + + + + + + +
    Performing OrganizationAddressCity/State/ZIP CodePhone Number
    +

    HOAG MEMORIAL HOSPITAL NEWPORT BEACH LABORATORY (CLIA 05D0578635)

    +
    +

    One Hoag Drive

    +
    +

    Newport Beach, CA 92663

    +
    +

    949-764-5600

    +
    +
    +
  • +
  • + (ABNORMAL) Drugs Of Abuse Comprehensive Screen, Ur (10/19/2022 10:17 AM PDT): +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    ComponentValueRef RangeTest MethodAnalysis TimePerformed AtPathologist Signature
    Phencyclidine Screen, Urine + Negative + Negative10/19/2022 11:29 AM PDTHOAG MEMORIAL HOSPITAL NEWPORT BEACH LABORATORY (CLIA 05D0578635)
    + + Comment: +
    + + PCP: Cut-off conc 25 ng/mL +
    +
    +
    +
    +
    +
    Benzodiazepines Screen, Urine + Negative + Negative10/19/2022 11:29 AM PDTHOAG MEMORIAL HOSPITAL NEWPORT BEACH LABORATORY (CLIA 05D0578635)
    + + Comment: +
    + + Benzo: Cut-off conc 200 ng/mL +
    +
    +
    +
    +
    +
    Cocaine Screen, Urine + Negative + Negative10/19/2022 11:29 AM PDTHOAG MEMORIAL HOSPITAL NEWPORT BEACH LABORATORY (CLIA 05D0578635)
    + + Comment: + Cocaine: Cut-off conc 150 ng/mL + +
    Barbiturates Screen, Urine + Negative + Negative10/19/2022 11:29 AM PDTHOAG MEMORIAL HOSPITAL NEWPORT BEACH LABORATORY (CLIA 05D0578635)
    + + Comment: +
    + + Barb: Cut-off conc 200 ng/mL +
    +
    +
    +
    +
    +
    Amphetamine Screen, Urine + Negative + Negative10/19/2022 11:29 AM PDTHOAG MEMORIAL HOSPITAL NEWPORT BEACH LABORATORY (CLIA 05D0578635)
    + + Comment: +
    + + Amph: Cut-off conc 500 ng/mL +
    +
    +
    +
    +
    +
    Cannabinoids Screen, Urine + Negative + Negative10/19/2022 11:29 AM PDTHOAG MEMORIAL HOSPITAL NEWPORT BEACH LABORATORY (CLIA 05D0578635)
    + + Comment: + THC: Cut-off conc 50 ng/mL + +
    Opiates Screen, Urine + Negative + Negative10/19/2022 11:29 AM PDTHOAG MEMORIAL HOSPITAL NEWPORT BEACH LABORATORY (CLIA 05D0578635)
    + + Comment: + Opiates: Cut-off conc 300 ng/mL + +
    Methadone Screen, Urine + Negative + Negative10/19/2022 11:29 AM PDTHOAG MEMORIAL HOSPITAL NEWPORT BEACH LABORATORY (CLIA 05D0578635)
    + + Comment: + Methadone: Cut-off conc 300 ng/mL + +
    Fentanyl Screen, Urine + Negative + Negative10/19/2022 11:29 AM PDTHOAG MEMORIAL HOSPITAL NEWPORT BEACH LABORATORY (CLIA 05D0578635)
    + + Comment: + Fentanyl: Cut-off conc 1 ng/mL + +
    Ethyl Glucuronide Screen, Urine + Negative + Negative10/19/2022 11:29 AM PDTHOAG MEMORIAL HOSPITAL NEWPORT BEACH LABORATORY (CLIA 05D0578635)
    + + Comment: + Ethyl Glucuronide: Cut-off conc 500 ng/mL + +
    Buprenorphine Screen, Urine + Positive + (A) + Negative10/19/2022 11:29 AM PDTHOAG MEMORIAL HOSPITAL NEWPORT BEACH LABORATORY (CLIA 05D0578635)
    + + Comment: + Buprenorphine: Cut-off conc 5 ng/mL + +
    Oxycodone Screen, Urine + Negative + Negative10/19/2022 11:29 AM PDTHOAG MEMORIAL HOSPITAL NEWPORT BEACH LABORATORY (CLIA 05D0578635)
    + + Comment: +
    + + Oxycodone: Cut-off conc 100 ng/mL +
    +
    +
    +
    +
    +
    MDMA Screen, Urine + Negative + Negative10/19/2022 11:29 AM PDTHOAG MEMORIAL HOSPITAL NEWPORT BEACH LABORATORY (CLIA 05D0578635)
    + + Comment: +
    + + MDMA: Cut-off conc 500 ng/mL +
    +
    +
    +
    +
    +
    Specific Gravity, Urine1.0111.003 - 1.03510/19/2022 11:29 AM PDTHOAG MEMORIAL HOSPITAL NEWPORT BEACH LABORATORY (CLIA 05D0578635)
    Creatinine, Urine, Random44Not Established mg/dL10/19/2022 11:29 AM PDTHOAG MEMORIAL HOSPITAL NEWPORT BEACH LABORATORY (CLIA 05D0578635)
    Mitragynine (Kratom), Urine + Negative + Negative10/19/2022 11:29 AM PDTHOAG MEMORIAL HOSPITAL NEWPORT BEACH LABORATORY (CLIA 05D0578635)
    + + Comment: + Mitragynine: Cut-off conc 50 ng/mL + +
    +
    +
    + + + + + + + + + + + + + + +
    Specimen (Source)Anatomical Location / LateralityCollection Method / VolumeCollection TimeReceived Time
    UrineCollection / Unknown10/19/2022 10:17 AM PDT10/19/2022 10:17 AM PDT
    +
    +
    + + + + + + + + + + + +
    Narrative
    +

    HOAG MEMORIAL HOSPITAL NEWPORT BEACH LABORATORY (CLIA 05D0578635) - 10/19/2022 11:29 AM PDT

    +

    + Positive screening results are unconfirmed and are to be used only for medical (i.e., treatment) purposes. Unconfirmed screening results must not be used for non-medical purposes (e.g., employment testing). +
    + Only positive maternal and neonatal screening results reflex for confirmation and are reported separately. +
    + +

    +
    +
    +
    + + + + + + + + + + + + + + + +
    Authorizing ProviderResult Type
    Valerie Krozel MDURINE ORDERABLES
    +
    +
    + + + + + + + + + + + + + + + +
    Performing OrganizationAddressCity/State/ZIP CodePhone Number
    +

    HOAG MEMORIAL HOSPITAL NEWPORT BEACH LABORATORY (CLIA 05D0578635)

    +
    +

    One Hoag Drive

    +
    +

    Newport Beach, CA 92663

    +
    +

    949-764-5600

    +
    +
    +
  • +
  • + Drugs Of Abuse Comprehensive Screen, Ur (10/19/2022 8:31 AM PDT): +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    ComponentValueRef RangeTest MethodAnalysis TimePerformed AtPathologist Signature
    Phencyclidine Screen, Urine + Negative + Negative10/19/2022 10:04 AM PDTHOAG MEMORIAL HOSPITAL NEWPORT BEACH LABORATORY (CLIA 05D0578635)
    + + Comment: +
    + + PCP: Cut-off conc 25 ng/mL +
    +
    +
    +
    +
    +
    Benzodiazepines Screen, Urine + Negative + Negative10/19/2022 10:04 AM PDTHOAG MEMORIAL HOSPITAL NEWPORT BEACH LABORATORY (CLIA 05D0578635)
    + + Comment: +
    + + Benzo: Cut-off conc 200 ng/mL +
    +
    +
    +
    +
    +
    Cocaine Screen, Urine + Negative + Negative10/19/2022 10:04 AM PDTHOAG MEMORIAL HOSPITAL NEWPORT BEACH LABORATORY (CLIA 05D0578635)
    + + Comment: + Cocaine: Cut-off conc 150 ng/mL + +
    Barbiturates Screen, Urine + Negative + Negative10/19/2022 10:04 AM PDTHOAG MEMORIAL HOSPITAL NEWPORT BEACH LABORATORY (CLIA 05D0578635)
    + + Comment: +
    + + Barb: Cut-off conc 200 ng/mL +
    +
    +
    +
    +
    +
    Amphetamine Screen, Urine + Negative + Negative10/19/2022 10:04 AM PDTHOAG MEMORIAL HOSPITAL NEWPORT BEACH LABORATORY (CLIA 05D0578635)
    + + Comment: +
    + + Amph: Cut-off conc 500 ng/mL +
    +
    +
    +
    +
    +
    Cannabinoids Screen, Urine + Negative + Negative10/19/2022 10:04 AM PDTHOAG MEMORIAL HOSPITAL NEWPORT BEACH LABORATORY (CLIA 05D0578635)
    + + Comment: + THC: Cut-off conc 50 ng/mL + +
    Opiates Screen, Urine + Negative + Negative10/19/2022 10:04 AM PDTHOAG MEMORIAL HOSPITAL NEWPORT BEACH LABORATORY (CLIA 05D0578635)
    + + Comment: + Opiates: Cut-off conc 300 ng/mL + +
    Methadone Screen, Urine + Negative + Negative10/19/2022 10:04 AM PDTHOAG MEMORIAL HOSPITAL NEWPORT BEACH LABORATORY (CLIA 05D0578635)
    + + Comment: + Methadone: Cut-off conc 300 ng/mL + +
    Fentanyl Screen, Urine + Negative + Negative10/19/2022 10:04 AM PDTHOAG MEMORIAL HOSPITAL NEWPORT BEACH LABORATORY (CLIA 05D0578635)
    + + Comment: + Fentanyl: Cut-off conc 1 ng/mL + +
    Ethyl Glucuronide Screen, Urine + Negative + Negative10/19/2022 10:04 AM PDTHOAG MEMORIAL HOSPITAL NEWPORT BEACH LABORATORY (CLIA 05D0578635)
    + + Comment: + Ethyl Glucuronide: Cut-off conc 500 ng/mL + +
    Buprenorphine Screen, Urine + Negative + Negative10/19/2022 10:04 AM PDTHOAG MEMORIAL HOSPITAL NEWPORT BEACH LABORATORY (CLIA 05D0578635)
    + + Comment: + Buprenorphine: Cut-off conc 5 ng/mL + +
    Oxycodone Screen, Urine + Negative + Negative10/19/2022 10:04 AM PDTHOAG MEMORIAL HOSPITAL NEWPORT BEACH LABORATORY (CLIA 05D0578635)
    + + Comment: +
    + + Oxycodone: Cut-off conc 100 ng/mL +
    +
    +
    +
    +
    +
    MDMA Screen, Urine + Negative + Negative10/19/2022 10:04 AM PDTHOAG MEMORIAL HOSPITAL NEWPORT BEACH LABORATORY (CLIA 05D0578635)
    + + Comment: +
    + + MDMA: Cut-off conc 500 ng/mL +
    +
    +
    +
    +
    +
    Specific Gravity, Urine1.0111.003 - 1.03510/19/2022 10:04 AM PDTHOAG MEMORIAL HOSPITAL NEWPORT BEACH LABORATORY (CLIA 05D0578635)
    Creatinine, Urine, Random55Not Established mg/dL10/19/2022 10:04 AM PDTHOAG MEMORIAL HOSPITAL NEWPORT BEACH LABORATORY (CLIA 05D0578635)
    Mitragynine (Kratom), Urine + Negative + Negative10/19/2022 10:04 AM PDTHOAG MEMORIAL HOSPITAL NEWPORT BEACH LABORATORY (CLIA 05D0578635)
    + + Comment: + Mitragynine: Cut-off conc 50 ng/mL + +
    +
    +
    + + + + + + + + + + + + + + +
    Specimen (Source)Anatomical Location / LateralityCollection Method / VolumeCollection TimeReceived Time
    UrineCollection / Unknown10/19/2022 8:31 AM PDT10/19/2022 8:31 AM PDT
    +
    +
    + + + + + + + + + + + +
    Narrative
    +

    HOAG MEMORIAL HOSPITAL NEWPORT BEACH LABORATORY (CLIA 05D0578635) - 10/19/2022 10:04 AM PDT

    +

    + Positive screening results are unconfirmed and are to be used only for medical (i.e., treatment) purposes. Unconfirmed screening results must not be used for non-medical purposes (e.g., employment testing). +
    + Only positive maternal and neonatal screening results reflex for confirmation and are reported separately. +
    + +

    +
    +
    +
    + + + + + + + + + + + + + + + +
    Authorizing ProviderResult Type
    Shssurgmd Ord MDURINE ORDERABLES
    +
    +
    + + + + + + + + + + + + + + + +
    Performing OrganizationAddressCity/State/ZIP CodePhone Number
    +

    HOAG MEMORIAL HOSPITAL NEWPORT BEACH LABORATORY (CLIA 05D0578635)

    +
    +

    One Hoag Drive

    +
    +

    Newport Beach, CA 92663

    +
    +

    949-764-5600

    +
    +
    +
  • +
  • + (ABNORMAL) Drugs Of Abuse Comprehensive Screen, Ur (10/11/2022 12:29 PM PDT): +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    ComponentValueRef RangeTest MethodAnalysis TimePerformed AtPathologist Signature
    Phencyclidine Screen, Urine + Negative + Negative10/19/2022 10:00 AM PDTHOAG MEMORIAL HOSPITAL NEWPORT BEACH LABORATORY (CLIA 05D0578635)
    + + Comment: +
    + + PCP: Cut-off conc 25 ng/mL +
    +
    +
    +
    +
    +
    Benzodiazepines Screen, Urine + Positive + (A) + Negative10/19/2022 10:00 AM PDTHOAG MEMORIAL HOSPITAL NEWPORT BEACH LABORATORY (CLIA 05D0578635)
    + + Comment: +
    + + Benzo: Cut-off conc 200 ng/mL +
    +
    +
    +
    +
    +
    Cocaine Screen, Urine + Negative + Negative10/19/2022 10:00 AM PDTHOAG MEMORIAL HOSPITAL NEWPORT BEACH LABORATORY (CLIA 05D0578635)
    + + Comment: + Cocaine: Cut-off conc 150 ng/mL + +
    Barbiturates Screen, Urine + Positive + (A) + Negative10/19/2022 10:00 AM PDTHOAG MEMORIAL HOSPITAL NEWPORT BEACH LABORATORY (CLIA 05D0578635)
    + + Comment: +
    + + Barb: Cut-off conc 200 ng/mL +
    +
    +
    +
    +
    +
    Amphetamine Screen, Urine + Positive + (A) + Negative10/19/2022 10:00 AM PDTHOAG MEMORIAL HOSPITAL NEWPORT BEACH LABORATORY (CLIA 05D0578635)
    + + Comment: +
    + + Amph: Cut-off conc 500 ng/mL +
    +
    +
    +
    +
    +
    Cannabinoids Screen, Urine + Positive + (A) + Negative10/19/2022 10:00 AM PDTHOAG MEMORIAL HOSPITAL NEWPORT BEACH LABORATORY (CLIA 05D0578635)
    + + Comment: + THC: Cut-off conc 50 ng/mL + +
    Opiates Screen, Urine + Negative + Negative10/19/2022 10:00 AM PDTHOAG MEMORIAL HOSPITAL NEWPORT BEACH LABORATORY (CLIA 05D0578635)
    + + Comment: + Opiates: Cut-off conc 300 ng/mL + +
    Methadone Screen, Urine + Negative + Negative10/19/2022 10:00 AM PDTHOAG MEMORIAL HOSPITAL NEWPORT BEACH LABORATORY (CLIA 05D0578635)
    + + Comment: + Methadone: Cut-off conc 300 ng/mL + +
    Fentanyl Screen, Urine + Negative + Negative10/19/2022 10:00 AM PDTHOAG MEMORIAL HOSPITAL NEWPORT BEACH LABORATORY (CLIA 05D0578635)
    + + Comment: + Fentanyl: Cut-off conc 1 ng/mL + +
    Ethyl Glucuronide Screen, Urine + Negative + Negative10/19/2022 10:00 AM PDTHOAG MEMORIAL HOSPITAL NEWPORT BEACH LABORATORY (CLIA 05D0578635)
    + + Comment: + Ethyl Glucuronide: Cut-off conc 500 ng/mL + +
    Buprenorphine Screen, Urine + Negative + Negative10/19/2022 10:00 AM PDTHOAG MEMORIAL HOSPITAL NEWPORT BEACH LABORATORY (CLIA 05D0578635)
    + + Comment: + Buprenorphine: Cut-off conc 5 ng/mL + +
    Oxycodone Screen, Urine + Negative + Negative10/19/2022 10:00 AM PDTHOAG MEMORIAL HOSPITAL NEWPORT BEACH LABORATORY (CLIA 05D0578635)
    + + Comment: +
    + + Oxycodone: Cut-off conc 100 ng/mL +
    +
    +
    +
    +
    +
    MDMA Screen, Urine + Negative + Negative10/19/2022 10:00 AM PDTHOAG MEMORIAL HOSPITAL NEWPORT BEACH LABORATORY (CLIA 05D0578635)
    + + Comment: +
    + + MDMA: Cut-off conc 500 ng/mL +
    +
    +
    +
    +
    +
    Specific Gravity, Urine1.0141.003 - 1.03510/19/2022 10:00 AM PDTHOAG MEMORIAL HOSPITAL NEWPORT BEACH LABORATORY (CLIA 05D0578635)
    Creatinine, Urine, Random63Not Established mg/dL10/19/2022 10:00 AM PDTHOAG MEMORIAL HOSPITAL NEWPORT BEACH LABORATORY (CLIA 05D0578635)
    Mitragynine (Kratom), Urine + Negative + Negative10/19/2022 10:00 AM PDTHOAG MEMORIAL HOSPITAL NEWPORT BEACH LABORATORY (CLIA 05D0578635)
    + + Comment: + Mitragynine: Cut-off conc 50 ng/mL + +
    +
    +
    + + + + + + + + + + + + + + +
    Specimen (Source)Anatomical Location / LateralityCollection Method / VolumeCollection TimeReceived Time
    UrineCollection / Unknown10/11/2022 12:29 PM PDT10/11/2022 12:30 PM PDT
    +
    +
    + + + + + + + + + + + +
    Narrative
    +

    HOAG MEMORIAL HOSPITAL NEWPORT BEACH LABORATORY (CLIA 05D0578635) - 10/19/2022 10:00 AM PDT

    +

    + Positive screening results are unconfirmed and are to be used only for medical (i.e., treatment) purposes. Unconfirmed screening results must not be used for non-medical purposes (e.g., employment testing). +
    + Only positive maternal and neonatal screening results reflex for confirmation and are reported separately. +
    + +

    +
    +
    +
    + + + + + + + + + + + + + + + +
    Authorizing ProviderResult Type
    Ruth A Fischer-Wright MDURINE ORDERABLES
    +
    +
    + + + + + + + + + + + + + + + +
    Performing OrganizationAddressCity/State/ZIP CodePhone Number
    +

    HOAG MEMORIAL HOSPITAL NEWPORT BEACH LABORATORY (CLIA 05D0578635)

    +
    +

    One Hoag Drive

    +
    +

    Newport Beach, CA 92663

    +
    +

    949-764-5600

    +
    +
    +
  • +
+ documented in this encounter +
+
+
+

Social History

+
+
+ + + + + + + + + + + + + + + + + +
Tobacco UseTypesPacks/DayYears UsedDate
Smoking Tobacco: Never Assessed
+
+
+ + + + + + + + + + + + + + + +
Sex Assigned at BirthDate Recorded
Not on file
+
+ documented as of this encounter +
+
+
+

Encounter Details

+
+
+ + + + + + + + + + + + + + + + +
DateTypeDepartmentCare TeamDescription
10/11/22Emergency +

HOAG MEMORIAL HOSPITAL NEWPORT EMERGENCY CENTER

+

1 HOAG DR

+

NEWPORT BEACH, CA 92663-4162

+

949-764-8372

+
+
+
+
+
+
+
+
+

Document maintained by

+
Hoag Memorial Hospital
+
+
+

Contact

+
+
+
Work Place
+
+

1 HOAG DR

+

NEWPORT BEACH, CA

+

92663-4162, USA

+
+
+
+
tel: (Work Place) +1-949-764-8400
+
+
+
+
+
+

Document Information

+
+ + + + + + + + + + + +
Document IdentifierDocument Created
OID: 1.2.840.114350.1.13.297.3.7.8.688883.56747912/23/2022, 14:59
+
+
+
+
+ + diff --git a/containers/ecr-viewer/seed-scripts/baseECR/e2e/0a0b1da9-7ac6-4668-a448-c66012afae3b/CDA_eICR.xml b/containers/ecr-viewer/seed-scripts/baseECR/e2e/0a0b1da9-7ac6-4668-a448-c66012afae3b/CDA_eICR.xml new file mode 100644 index 0000000000..1ef7ef531d --- /dev/null +++ b/containers/ecr-viewer/seed-scripts/baseECR/e2e/0a0b1da9-7ac6-4668-a448-c66012afae3b/CDA_eICR.xml @@ -0,0 +1 @@ +Initial Public Health Case Report278 MAIN STNEWHALLCA91321Peter PanEpictestHoag Memorial Hospital1 HOAG DRORANGENEWPORT BEACHCA92663-4162USAHoag Memorial Hospital1 HOAG DRORANGENEWPORT BEACHCA92663-4162USAEmergencyMidwifeObstetricsHoag Memorial Hospital1 HOAG DRORANGENEWPORT BEACHCA92663-4162USAEmergency MedicineHOAG MEMORIAL HOSPITAL NEWPORT EMERGENCY CENTER1 HOAG DRORANGENEWPORT BEACHCA92663-4162USAHOAG HOSPITAL NEWPORT BEACH1 HOAG DRORANGENEWPORT BEACHCA92663-4162USAHoag Memorial Hospital
Miscellaneous NotesNot on filedocumented in this encounter
ImmunizationsNot on filedocumented as of this encounter
Administered MedicationsNot on filedocumented in this encounter
Plan of Treatment
Pending Results
NameTypePriorityAssociated DiagnosesDate/Time
Drugs Of Abuse Comprehensive Screen, UrLabSTAT12/23/2022 11:13 AM PST
Scheduled Orders
NameTypePriorityAssociated DiagnosesOrder Schedule
Drugs Of Abuse Comprehensive Screen, UrLabRoutineOne Time for 1 Occurrences starting 12/23/22 until 12/23/22
documented as of this encounter
ProblemsNo known active problemsdocumented as of this encounter (statuses as of 12/23/2022)
Reason for VisitNot on file
Results(ABNORMAL) Drugs of Abuse, Screen, Urine (12/23/2022 12:56 PM PST)
ComponentValueRef RangeTest MethodAnalysis TimePerformed AtPathologist Signature
Phencyclidine Screen, UrineNegativeNegativeLAB DEVICE: ORTHO CLINICAL DIAGNOSTICS VITROS® 750012/23/2022 2:59 PM PSTHOAG MEMORIAL HOSPITAL NEWPORT BEACH LABORATORY (CLIA 05D0578635)
Comment:
PCP: Cut-off conc 25 ng/mL


Benzodiazepines Screen, UrineNegativeNegativeLAB DEVICE: ORTHO CLINICAL DIAGNOSTICS VITROS® 750012/23/2022 2:59 PM PSTHOAG MEMORIAL HOSPITAL NEWPORT BEACH LABORATORY (CLIA 05D0578635)
Comment:
Benzo: Cut-off conc 200 ng/mL


Cocaine Screen, UrineNegativeNegativeLAB DEVICE: ORTHO CLINICAL DIAGNOSTICS VITROS® 750012/23/2022 2:59 PM PSTHOAG MEMORIAL HOSPITAL NEWPORT BEACH LABORATORY (CLIA 05D0578635)
Comment: Cocaine: Cut-off conc 150 ng/mL
Barbiturates Screen, UrineNegativeNegativeLAB DEVICE: ORTHO CLINICAL DIAGNOSTICS VITROS® 750012/23/2022 2:59 PM PSTHOAG MEMORIAL HOSPITAL NEWPORT BEACH LABORATORY (CLIA 05D0578635)
Comment:
Barb: Cut-off conc 200 ng/mL


Amphetamine Screen, UrineNegativeNegativeLAB DEVICE: ORTHO CLINICAL DIAGNOSTICS VITROS® 750012/23/2022 2:59 PM PSTHOAG MEMORIAL HOSPITAL NEWPORT BEACH LABORATORY (CLIA 05D0578635)
Comment:
Amph: Cut-off conc 500 ng/mL


Cannabinoids Screen, UrineNegativeNegativeLAB DEVICE: ORTHO CLINICAL DIAGNOSTICS VITROS® 750012/23/2022 2:59 PM PSTHOAG MEMORIAL HOSPITAL NEWPORT BEACH LABORATORY (CLIA 05D0578635)
Comment: THC: Cut-off conc 50 ng/mL
Opiates Screen, UrineNegativeNegativeLAB DEVICE: ORTHO CLINICAL DIAGNOSTICS VITROS® 750012/23/2022 2:59 PM PSTHOAG MEMORIAL HOSPITAL NEWPORT BEACH LABORATORY (CLIA 05D0578635)
Comment: Opiates: Cut-off conc 300 ng/mL
Specific Gravity, Urine12/23/2022 2:59 PM PSTHOAG MEMORIAL HOSPITAL NEWPORT BEACH LABORATORY (CLIA 05D0578635)
Comment: Not Indicated
Creatinine, Urine, Random43Not Established mg/dLLAB DEVICE: ORTHO CLINICAL DIAGNOSTICS VITROS® 750012/23/2022 2:59 PM PSTHOAG MEMORIAL HOSPITAL NEWPORT BEACH LABORATORY (CLIA 05D0578635)
Fentanyl Screen, UrinePositive (A)NegativeLAB DEVICE: ORTHO CLINICAL DIAGNOSTICS VITROS® 750012/23/2022 2:59 PM PSTHOAG MEMORIAL HOSPITAL NEWPORT BEACH LABORATORY (CLIA 05D0578635)
Comment: Fentanyl: Cut-off conc 1 ng/mL
Specimen (Source)Anatomical Location / LateralityCollection Method / VolumeCollection TimeReceived Time
UrineCollection / Unknown12/23/2022 12:56 PM PST12/23/2022 12:56 PM PST
Narrative
HOAG MEMORIAL HOSPITAL NEWPORT BEACH LABORATORY (CLIA 05D0578635) - 12/23/2022 2:59 PM PSTPositive screening results are unconfirmed and are to be used only for medical (i.e., treatment) purposes. Unconfirmed screening results must not be used for non-medical purposes (e.g., employment testing).
Only positive maternal and neonatal screening results reflex for confirmation and are reported separately.
Authorizing ProviderResult Type
Midwife Obstetrics CNMURINE ORDERABLES
Performing OrganizationAddressCity/State/ZIP CodePhone Number
HOAG MEMORIAL HOSPITAL NEWPORT BEACH LABORATORY (CLIA 05D0578635)One Hoag DriveNewport Beach, CA 92663949-764-5600
(ABNORMAL) Drugs of Abuse, Screen, Urine (12/23/2022 11:16 AM PST)
ComponentValueRef RangeTest MethodAnalysis TimePerformed AtPathologist Signature
Phencyclidine Screen, UrineNegativeNegativeLAB DEVICE: ORTHO CLINICAL DIAGNOSTICS VITROS® 750012/23/2022 11:35 AM PSTHOAG MEMORIAL HOSPITAL NEWPORT BEACH LABORATORY (CLIA 05D0578635)
Comment:
PCP: Cut-off conc 25 ng/mL


Benzodiazepines Screen, UrineNegativeNegativeLAB DEVICE: ORTHO CLINICAL DIAGNOSTICS VITROS® 750012/23/2022 11:35 AM PSTHOAG MEMORIAL HOSPITAL NEWPORT BEACH LABORATORY (CLIA 05D0578635)
Comment:
Benzo: Cut-off conc 200 ng/mL


Cocaine Screen, UrineNegativeNegativeLAB DEVICE: ORTHO CLINICAL DIAGNOSTICS VITROS® 750012/23/2022 11:35 AM PSTHOAG MEMORIAL HOSPITAL NEWPORT BEACH LABORATORY (CLIA 05D0578635)
Comment: Cocaine: Cut-off conc 150 ng/mL
Barbiturates Screen, UrineNegativeNegativeLAB DEVICE: ORTHO CLINICAL DIAGNOSTICS VITROS® 750012/23/2022 11:35 AM PSTHOAG MEMORIAL HOSPITAL NEWPORT BEACH LABORATORY (CLIA 05D0578635)
Comment:
Barb: Cut-off conc 200 ng/mL


Amphetamine Screen, UrineNegativeNegativeLAB DEVICE: ORTHO CLINICAL DIAGNOSTICS VITROS® 750012/23/2022 11:35 AM PSTHOAG MEMORIAL HOSPITAL NEWPORT BEACH LABORATORY (CLIA 05D0578635)
Comment:
Amph: Cut-off conc 500 ng/mL


Cannabinoids Screen, UrineNegativeNegativeLAB DEVICE: ORTHO CLINICAL DIAGNOSTICS VITROS® 750012/23/2022 11:35 AM PSTHOAG MEMORIAL HOSPITAL NEWPORT BEACH LABORATORY (CLIA 05D0578635)
Comment: THC: Cut-off conc 50 ng/mL
Opiates Screen, UrineNegativeNegativeLAB DEVICE: ORTHO CLINICAL DIAGNOSTICS VITROS® 750012/23/2022 11:35 AM PSTHOAG MEMORIAL HOSPITAL NEWPORT BEACH LABORATORY (CLIA 05D0578635)
Comment: Opiates: Cut-off conc 300 ng/mL
Specific Gravity, Urine12/23/2022 11:35 AM PSTHOAG MEMORIAL HOSPITAL NEWPORT BEACH LABORATORY (CLIA 05D0578635)
Comment: Not Indicated
Creatinine, Urine, Random100Not Established mg/dLLAB DEVICE: ORTHO CLINICAL DIAGNOSTICS VITROS® 750012/23/2022 11:35 AM PSTHOAG MEMORIAL HOSPITAL NEWPORT BEACH LABORATORY (CLIA 05D0578635)
Fentanyl Screen, UrinePositive (A)NegativeLAB DEVICE: ORTHO CLINICAL DIAGNOSTICS VITROS® 750012/23/2022 11:35 AM PSTHOAG MEMORIAL HOSPITAL NEWPORT BEACH LABORATORY (CLIA 05D0578635)
Comment: Fentanyl: Cut-off conc 1 ng/mL
Specimen (Source)Anatomical Location / LateralityCollection Method / VolumeCollection TimeReceived Time
UrineCollection / Unknown12/23/2022 11:16 AM PST12/23/2022 11:16 AM PST
Narrative
HOAG MEMORIAL HOSPITAL NEWPORT BEACH LABORATORY (CLIA 05D0578635) - 12/23/2022 11:35 AM PSTPositive screening results are unconfirmed and are to be used only for medical (i.e., treatment) purposes. Unconfirmed screening results must not be used for non-medical purposes (e.g., employment testing).
Only positive maternal and neonatal screening results reflex for confirmation and are reported separately.
Authorizing ProviderResult Type
Valerie Krozel MDURINE ORDERABLES
Performing OrganizationAddressCity/State/ZIP CodePhone Number
HOAG MEMORIAL HOSPITAL NEWPORT BEACH LABORATORY (CLIA 05D0578635)One Hoag DriveNewport Beach, CA 92663949-764-5600
(ABNORMAL) PSA, Screen (11/23/2022 9:16 AM PST)
ComponentValueRef RangeTest MethodAnalysis TimePerformed AtPathologist Signature
PSA8.00 (H)0.06 - 4.00 ng/mLLAB DEVICE: ORTHO CLINICAL DIAGNOSTICS VITROS® 750011/23/2022 9:17 AM PSTHOAG MEMORIAL HOSPITAL NEWPORT BEACH LABORATORY (CLIA 05D0578635)
Comment: This immunoassay is manufactured by Ortho clinical Diagnostics. Tumor marker values using different test methods or manufacturers may vary and cannot be compared. If there is a change to the manufacturer or methodology, patients undergoing serial monitoring should have additional testing performed to confirm baseline values.
Specimen (Source)Anatomical Location / LateralityCollection Method / VolumeCollection TimeReceived Time
BloodVenipuncture / Unknown11/23/2022 9:16 AM PST11/23/2022 9:16 AM PST
Authorizing ProviderResult Type
Victor J Aaen MDLAB BLOOD ORDERABLES
Performing OrganizationAddressCity/State/ZIP CodePhone Number
HOAG MEMORIAL HOSPITAL NEWPORT BEACH LABORATORY (CLIA 05D0578635)One Hoag DriveNewport Beach, CA 92663949-764-5600
(ABNORMAL) PSA, Diagnostic (11/23/2022 9:16 AM PST)
ComponentValueRef RangeTest MethodAnalysis TimePerformed AtPathologist Signature
PSA8.00 (H)0.06 - 4.00 ng/mLLAB DEVICE: ORTHO CLINICAL DIAGNOSTICS VITROS® 750011/23/2022 9:17 AM PSTHOAG MEMORIAL HOSPITAL NEWPORT BEACH LABORATORY (CLIA 05D0578635)
Comment: This immunoassay is manufactured by Ortho clinical Diagnostics. Tumor marker values using different test methods or manufacturers may vary and cannot be compared. If there is a change to the manufacturer or methodology, patients undergoing serial monitoring should have additional testing performed to confirm baseline values.
Specimen (Source)Anatomical Location / LateralityCollection Method / VolumeCollection TimeReceived Time
BloodVenipuncture / Unknown11/23/2022 9:16 AM PST11/23/2022 9:16 AM PST
Authorizing ProviderResult Type
Ruth A Fischer-Wright MDLAB BLOOD ORDERABLES
Performing OrganizationAddressCity/State/ZIP CodePhone Number
HOAG MEMORIAL HOSPITAL NEWPORT BEACH LABORATORY (CLIA 05D0578635)One Hoag DriveNewport Beach, CA 92663949-764-5600
(ABNORMAL) CEA (11/23/2022 9:16 AM PST)
ComponentValueRef RangeTest MethodAnalysis TimePerformed AtPathologist Signature
CEA50.0 (H)0.3 - 3.0 ng/mLLAB DEVICE: ORTHO CLINICAL DIAGNOSTICS VITROS® 750011/23/2022 9:17 AM PSTHOAG MEMORIAL HOSPITAL NEWPORT BEACH LABORATORY (CLIA 05D0578635)
Comment: This immunoassay is manufactured by Ortho clinical Diagnostics. Tumor marker values using different test methods or manufacturers may vary and cannot be compared. If there is a change to the manufacturer or methodology, patients undergoing serial monitoring should have additional testing performed to confirm baseline values.
Specimen (Source)Anatomical Location / LateralityCollection Method / VolumeCollection TimeReceived Time
BloodVenipuncture / Unknown11/23/2022 9:16 AM PST11/23/2022 9:16 AM PST
Authorizing ProviderResult Type
Ruth A Fischer-Wright MDLAB BLOOD ORDERABLES
Performing OrganizationAddressCity/State/ZIP CodePhone Number
HOAG MEMORIAL HOSPITAL NEWPORT BEACH LABORATORY (CLIA 05D0578635)One Hoag DriveNewport Beach, CA 92663949-764-5600
(ABNORMAL) CA 125, Quant (11/23/2022 9:16 AM PST)
ComponentValueRef RangeTest MethodAnalysis TimePerformed AtPathologist Signature
Cancer Antigen 12512,200 (H)6 - 35 U/mLLAB DEVICE: ORTHO CLINICAL DIAGNOSTICS VITROS® 750011/23/2022 9:17 AM PSTHOAG MEMORIAL HOSPITAL NEWPORT BEACH LABORATORY (CLIA 05D0578635)
Comment: This immunoassay is manufactured by Ortho clinical Diagnostics. Tumor marker values using different test methods or manufacturers may vary and cannot be compared. If there is a change to the manufacturer or methodology, patients undergoing serial monitoring should have additional testing performed to confirm baseline values.
Specimen (Source)Anatomical Location / LateralityCollection Method / VolumeCollection TimeReceived Time
BloodVenipuncture / Unknown11/23/2022 9:16 AM PST11/23/2022 9:16 AM PST
Authorizing ProviderResult Type
Ruth A Fischer-Wright MDLAB BLOOD ORDERABLES
Performing OrganizationAddressCity/State/ZIP CodePhone Number
HOAG MEMORIAL HOSPITAL NEWPORT BEACH LABORATORY (CLIA 05D0578635)One Hoag DriveNewport Beach, CA 92663949-764-5600
CA 19-9, Quant (11/23/2022 9:16 AM PST)
ComponentValueRef RangeTest MethodAnalysis TimePerformed AtPathologist Signature
CA 19 9101 - 37 U/mLLAB DEVICE: ORTHO CLINICAL DIAGNOSTICS VITROS® 750011/23/2022 9:17 AM PSTHOAG MEMORIAL HOSPITAL NEWPORT BEACH LABORATORY (CLIA 05D0578635)
Comment: This immunoassay is manufactured by Ortho clinical Diagnostics. Tumor marker values using different test methods or manufacturers may vary and cannot be compared. If there is a change to the manufacturer or methodology, patients undergoing serial monitoring should have additional testing performed to confirm baseline values.
Specimen (Source)Anatomical Location / LateralityCollection Method / VolumeCollection TimeReceived Time
BloodVenipuncture / Unknown11/23/2022 9:16 AM PST11/23/2022 9:16 AM PST
Authorizing ProviderResult Type
Ruth A Fischer-Wright MDLAB BLOOD ORDERABLES
Performing OrganizationAddressCity/State/ZIP CodePhone Number
HOAG MEMORIAL HOSPITAL NEWPORT BEACH LABORATORY (CLIA 05D0578635)One Hoag DriveNewport Beach, CA 92663949-764-5600
(ABNORMAL) Drugs Of Abuse Comprehensive Screen, Ur (10/19/2022 10:17 AM PDT)
ComponentValueRef RangeTest MethodAnalysis TimePerformed AtPathologist Signature
Phencyclidine Screen, UrineNegativeNegative10/19/2022 11:29 AM PDTHOAG MEMORIAL HOSPITAL NEWPORT BEACH LABORATORY (CLIA 05D0578635)
Comment:
PCP: Cut-off conc 25 ng/mL


Benzodiazepines Screen, UrineNegativeNegative10/19/2022 11:29 AM PDTHOAG MEMORIAL HOSPITAL NEWPORT BEACH LABORATORY (CLIA 05D0578635)
Comment:
Benzo: Cut-off conc 200 ng/mL


Cocaine Screen, UrineNegativeNegative10/19/2022 11:29 AM PDTHOAG MEMORIAL HOSPITAL NEWPORT BEACH LABORATORY (CLIA 05D0578635)
Comment: Cocaine: Cut-off conc 150 ng/mL
Barbiturates Screen, UrineNegativeNegative10/19/2022 11:29 AM PDTHOAG MEMORIAL HOSPITAL NEWPORT BEACH LABORATORY (CLIA 05D0578635)
Comment:
Barb: Cut-off conc 200 ng/mL


Amphetamine Screen, UrineNegativeNegative10/19/2022 11:29 AM PDTHOAG MEMORIAL HOSPITAL NEWPORT BEACH LABORATORY (CLIA 05D0578635)
Comment:
Amph: Cut-off conc 500 ng/mL


Cannabinoids Screen, UrineNegativeNegative10/19/2022 11:29 AM PDTHOAG MEMORIAL HOSPITAL NEWPORT BEACH LABORATORY (CLIA 05D0578635)
Comment: THC: Cut-off conc 50 ng/mL
Opiates Screen, UrineNegativeNegative10/19/2022 11:29 AM PDTHOAG MEMORIAL HOSPITAL NEWPORT BEACH LABORATORY (CLIA 05D0578635)
Comment: Opiates: Cut-off conc 300 ng/mL
Methadone Screen, UrineNegativeNegative10/19/2022 11:29 AM PDTHOAG MEMORIAL HOSPITAL NEWPORT BEACH LABORATORY (CLIA 05D0578635)
Comment: Methadone: Cut-off conc 300 ng/mL
Fentanyl Screen, UrineNegativeNegative10/19/2022 11:29 AM PDTHOAG MEMORIAL HOSPITAL NEWPORT BEACH LABORATORY (CLIA 05D0578635)
Comment: Fentanyl: Cut-off conc 1 ng/mL
Ethyl Glucuronide Screen, UrineNegativeNegative10/19/2022 11:29 AM PDTHOAG MEMORIAL HOSPITAL NEWPORT BEACH LABORATORY (CLIA 05D0578635)
Comment: Ethyl Glucuronide: Cut-off conc 500 ng/mL
Buprenorphine Screen, UrinePositive (A)Negative10/19/2022 11:29 AM PDTHOAG MEMORIAL HOSPITAL NEWPORT BEACH LABORATORY (CLIA 05D0578635)
Comment: Buprenorphine: Cut-off conc 5 ng/mL
Oxycodone Screen, UrineNegativeNegative10/19/2022 11:29 AM PDTHOAG MEMORIAL HOSPITAL NEWPORT BEACH LABORATORY (CLIA 05D0578635)
Comment:
Oxycodone: Cut-off conc 100 ng/mL


MDMA Screen, UrineNegativeNegative10/19/2022 11:29 AM PDTHOAG MEMORIAL HOSPITAL NEWPORT BEACH LABORATORY (CLIA 05D0578635)
Comment:
MDMA: Cut-off conc 500 ng/mL


Specific Gravity, Urine1.0111.003 - 1.03510/19/2022 11:29 AM PDTHOAG MEMORIAL HOSPITAL NEWPORT BEACH LABORATORY (CLIA 05D0578635)
Creatinine, Urine, Random44Not Established mg/dL10/19/2022 11:29 AM PDTHOAG MEMORIAL HOSPITAL NEWPORT BEACH LABORATORY (CLIA 05D0578635)
Mitragynine (Kratom), UrineNegativeNegative10/19/2022 11:29 AM PDTHOAG MEMORIAL HOSPITAL NEWPORT BEACH LABORATORY (CLIA 05D0578635)
Comment: Mitragynine: Cut-off conc 50 ng/mL
Specimen (Source)Anatomical Location / LateralityCollection Method / VolumeCollection TimeReceived Time
UrineCollection / Unknown10/19/2022 10:17 AM PDT10/19/2022 10:17 AM PDT
Narrative
HOAG MEMORIAL HOSPITAL NEWPORT BEACH LABORATORY (CLIA 05D0578635) - 10/19/2022 11:29 AM PDTPositive screening results are unconfirmed and are to be used only for medical (i.e., treatment) purposes. Unconfirmed screening results must not be used for non-medical purposes (e.g., employment testing).
Only positive maternal and neonatal screening results reflex for confirmation and are reported separately.
Authorizing ProviderResult Type
Valerie Krozel MDURINE ORDERABLES
Performing OrganizationAddressCity/State/ZIP CodePhone Number
HOAG MEMORIAL HOSPITAL NEWPORT BEACH LABORATORY (CLIA 05D0578635)One Hoag DriveNewport Beach, CA 92663949-764-5600
Drugs Of Abuse Comprehensive Screen, Ur (10/19/2022 8:31 AM PDT)
ComponentValueRef RangeTest MethodAnalysis TimePerformed AtPathologist Signature
Phencyclidine Screen, UrineNegativeNegative10/19/2022 10:04 AM PDTHOAG MEMORIAL HOSPITAL NEWPORT BEACH LABORATORY (CLIA 05D0578635)
Comment:
PCP: Cut-off conc 25 ng/mL


Benzodiazepines Screen, UrineNegativeNegative10/19/2022 10:04 AM PDTHOAG MEMORIAL HOSPITAL NEWPORT BEACH LABORATORY (CLIA 05D0578635)
Comment:
Benzo: Cut-off conc 200 ng/mL


Cocaine Screen, UrineNegativeNegative10/19/2022 10:04 AM PDTHOAG MEMORIAL HOSPITAL NEWPORT BEACH LABORATORY (CLIA 05D0578635)
Comment: Cocaine: Cut-off conc 150 ng/mL
Barbiturates Screen, UrineNegativeNegative10/19/2022 10:04 AM PDTHOAG MEMORIAL HOSPITAL NEWPORT BEACH LABORATORY (CLIA 05D0578635)
Comment:
Barb: Cut-off conc 200 ng/mL


Amphetamine Screen, UrineNegativeNegative10/19/2022 10:04 AM PDTHOAG MEMORIAL HOSPITAL NEWPORT BEACH LABORATORY (CLIA 05D0578635)
Comment:
Amph: Cut-off conc 500 ng/mL


Cannabinoids Screen, UrineNegativeNegative10/19/2022 10:04 AM PDTHOAG MEMORIAL HOSPITAL NEWPORT BEACH LABORATORY (CLIA 05D0578635)
Comment: THC: Cut-off conc 50 ng/mL
Opiates Screen, UrineNegativeNegative10/19/2022 10:04 AM PDTHOAG MEMORIAL HOSPITAL NEWPORT BEACH LABORATORY (CLIA 05D0578635)
Comment: Opiates: Cut-off conc 300 ng/mL
Methadone Screen, UrineNegativeNegative10/19/2022 10:04 AM PDTHOAG MEMORIAL HOSPITAL NEWPORT BEACH LABORATORY (CLIA 05D0578635)
Comment: Methadone: Cut-off conc 300 ng/mL
Fentanyl Screen, UrineNegativeNegative10/19/2022 10:04 AM PDTHOAG MEMORIAL HOSPITAL NEWPORT BEACH LABORATORY (CLIA 05D0578635)
Comment: Fentanyl: Cut-off conc 1 ng/mL
Ethyl Glucuronide Screen, UrineNegativeNegative10/19/2022 10:04 AM PDTHOAG MEMORIAL HOSPITAL NEWPORT BEACH LABORATORY (CLIA 05D0578635)
Comment: Ethyl Glucuronide: Cut-off conc 500 ng/mL
Buprenorphine Screen, UrineNegativeNegative10/19/2022 10:04 AM PDTHOAG MEMORIAL HOSPITAL NEWPORT BEACH LABORATORY (CLIA 05D0578635)
Comment: Buprenorphine: Cut-off conc 5 ng/mL
Oxycodone Screen, UrineNegativeNegative10/19/2022 10:04 AM PDTHOAG MEMORIAL HOSPITAL NEWPORT BEACH LABORATORY (CLIA 05D0578635)
Comment:
Oxycodone: Cut-off conc 100 ng/mL


MDMA Screen, UrineNegativeNegative10/19/2022 10:04 AM PDTHOAG MEMORIAL HOSPITAL NEWPORT BEACH LABORATORY (CLIA 05D0578635)
Comment:
MDMA: Cut-off conc 500 ng/mL


Specific Gravity, Urine1.0111.003 - 1.03510/19/2022 10:04 AM PDTHOAG MEMORIAL HOSPITAL NEWPORT BEACH LABORATORY (CLIA 05D0578635)
Creatinine, Urine, Random55Not Established mg/dL10/19/2022 10:04 AM PDTHOAG MEMORIAL HOSPITAL NEWPORT BEACH LABORATORY (CLIA 05D0578635)
Mitragynine (Kratom), UrineNegativeNegative10/19/2022 10:04 AM PDTHOAG MEMORIAL HOSPITAL NEWPORT BEACH LABORATORY (CLIA 05D0578635)
Comment: Mitragynine: Cut-off conc 50 ng/mL
Specimen (Source)Anatomical Location / LateralityCollection Method / VolumeCollection TimeReceived Time
UrineCollection / Unknown10/19/2022 8:31 AM PDT10/19/2022 8:31 AM PDT
Narrative
HOAG MEMORIAL HOSPITAL NEWPORT BEACH LABORATORY (CLIA 05D0578635) - 10/19/2022 10:04 AM PDTPositive screening results are unconfirmed and are to be used only for medical (i.e., treatment) purposes. Unconfirmed screening results must not be used for non-medical purposes (e.g., employment testing).
Only positive maternal and neonatal screening results reflex for confirmation and are reported separately.
Authorizing ProviderResult Type
Shssurgmd Ord MDURINE ORDERABLES
Performing OrganizationAddressCity/State/ZIP CodePhone Number
HOAG MEMORIAL HOSPITAL NEWPORT BEACH LABORATORY (CLIA 05D0578635)One Hoag DriveNewport Beach, CA 92663949-764-5600
(ABNORMAL) Drugs Of Abuse Comprehensive Screen, Ur (10/11/2022 12:29 PM PDT)
ComponentValueRef RangeTest MethodAnalysis TimePerformed AtPathologist Signature
Phencyclidine Screen, UrineNegativeNegative10/19/2022 10:00 AM PDTHOAG MEMORIAL HOSPITAL NEWPORT BEACH LABORATORY (CLIA 05D0578635)
Comment:
PCP: Cut-off conc 25 ng/mL


Benzodiazepines Screen, UrinePositive (A)Negative10/19/2022 10:00 AM PDTHOAG MEMORIAL HOSPITAL NEWPORT BEACH LABORATORY (CLIA 05D0578635)
Comment:
Benzo: Cut-off conc 200 ng/mL


Cocaine Screen, UrineNegativeNegative10/19/2022 10:00 AM PDTHOAG MEMORIAL HOSPITAL NEWPORT BEACH LABORATORY (CLIA 05D0578635)
Comment: Cocaine: Cut-off conc 150 ng/mL
Barbiturates Screen, UrinePositive (A)Negative10/19/2022 10:00 AM PDTHOAG MEMORIAL HOSPITAL NEWPORT BEACH LABORATORY (CLIA 05D0578635)
Comment:
Barb: Cut-off conc 200 ng/mL


Amphetamine Screen, UrinePositive (A)Negative10/19/2022 10:00 AM PDTHOAG MEMORIAL HOSPITAL NEWPORT BEACH LABORATORY (CLIA 05D0578635)
Comment:
Amph: Cut-off conc 500 ng/mL


Cannabinoids Screen, UrinePositive (A)Negative10/19/2022 10:00 AM PDTHOAG MEMORIAL HOSPITAL NEWPORT BEACH LABORATORY (CLIA 05D0578635)
Comment: THC: Cut-off conc 50 ng/mL
Opiates Screen, UrineNegativeNegative10/19/2022 10:00 AM PDTHOAG MEMORIAL HOSPITAL NEWPORT BEACH LABORATORY (CLIA 05D0578635)
Comment: Opiates: Cut-off conc 300 ng/mL
Methadone Screen, UrineNegativeNegative10/19/2022 10:00 AM PDTHOAG MEMORIAL HOSPITAL NEWPORT BEACH LABORATORY (CLIA 05D0578635)
Comment: Methadone: Cut-off conc 300 ng/mL
Fentanyl Screen, UrineNegativeNegative10/19/2022 10:00 AM PDTHOAG MEMORIAL HOSPITAL NEWPORT BEACH LABORATORY (CLIA 05D0578635)
Comment: Fentanyl: Cut-off conc 1 ng/mL
Ethyl Glucuronide Screen, UrineNegativeNegative10/19/2022 10:00 AM PDTHOAG MEMORIAL HOSPITAL NEWPORT BEACH LABORATORY (CLIA 05D0578635)
Comment: Ethyl Glucuronide: Cut-off conc 500 ng/mL
Buprenorphine Screen, UrineNegativeNegative10/19/2022 10:00 AM PDTHOAG MEMORIAL HOSPITAL NEWPORT BEACH LABORATORY (CLIA 05D0578635)
Comment: Buprenorphine: Cut-off conc 5 ng/mL
Oxycodone Screen, UrineNegativeNegative10/19/2022 10:00 AM PDTHOAG MEMORIAL HOSPITAL NEWPORT BEACH LABORATORY (CLIA 05D0578635)
Comment:
Oxycodone: Cut-off conc 100 ng/mL


MDMA Screen, UrineNegativeNegative10/19/2022 10:00 AM PDTHOAG MEMORIAL HOSPITAL NEWPORT BEACH LABORATORY (CLIA 05D0578635)
Comment:
MDMA: Cut-off conc 500 ng/mL


Specific Gravity, Urine1.0141.003 - 1.03510/19/2022 10:00 AM PDTHOAG MEMORIAL HOSPITAL NEWPORT BEACH LABORATORY (CLIA 05D0578635)
Creatinine, Urine, Random63Not Established mg/dL10/19/2022 10:00 AM PDTHOAG MEMORIAL HOSPITAL NEWPORT BEACH LABORATORY (CLIA 05D0578635)
Mitragynine (Kratom), UrineNegativeNegative10/19/2022 10:00 AM PDTHOAG MEMORIAL HOSPITAL NEWPORT BEACH LABORATORY (CLIA 05D0578635)
Comment: Mitragynine: Cut-off conc 50 ng/mL
Specimen (Source)Anatomical Location / LateralityCollection Method / VolumeCollection TimeReceived Time
UrineCollection / Unknown10/11/2022 12:29 PM PDT10/11/2022 12:30 PM PDT
Narrative
HOAG MEMORIAL HOSPITAL NEWPORT BEACH LABORATORY (CLIA 05D0578635) - 10/19/2022 10:00 AM PDTPositive screening results are unconfirmed and are to be used only for medical (i.e., treatment) purposes. Unconfirmed screening results must not be used for non-medical purposes (e.g., employment testing).
Only positive maternal and neonatal screening results reflex for confirmation and are reported separately.
Authorizing ProviderResult Type
Ruth A Fischer-Wright MDURINE ORDERABLES
Performing OrganizationAddressCity/State/ZIP CodePhone Number
HOAG MEMORIAL HOSPITAL NEWPORT BEACH LABORATORY (CLIA 05D0578635)One Hoag DriveNewport Beach, CA 92663949-764-5600
documented in this encounter
Drugs Of Abuse Comprehensive Screen, UrProvidence Health and Services Oregon and California (TST)Family Medicine4823 MEADOWS RD STE 127CLACKAMASLAKE OSWEGOOR97035-2622USARuthAFischer-Wright MDUrinePhencyclidine Screen, UrineNegativeHOAG MEMORIAL HOSPITAL NEWPORT BEACH LABORATORY (CLIA 05D0578635)One Hoag DriveNewport BeachCA92663KatieErinWilkinsonNegativeNegativeBenzodiazepines Screen, UrinePositiveAbnormalHOAG MEMORIAL HOSPITAL NEWPORT BEACH LABORATORY (CLIA 05D0578635)One Hoag DriveNewport BeachCA92663KatieErinWilkinsonNegativeNegativeCocaine Screen, UrineNegativeHOAG MEMORIAL HOSPITAL NEWPORT BEACH LABORATORY (CLIA 05D0578635)One Hoag DriveNewport BeachCA92663KatieErinWilkinsonNegativeNegativeBarbiturates Screen, UrinePositiveAbnormalHOAG MEMORIAL HOSPITAL NEWPORT BEACH LABORATORY (CLIA 05D0578635)One Hoag DriveNewport BeachCA92663KatieErinWilkinsonNegativeNegativeAmphetamine Screen, UrinePositiveAbnormalHOAG MEMORIAL HOSPITAL NEWPORT BEACH LABORATORY (CLIA 05D0578635)One Hoag DriveNewport BeachCA92663KatieErinWilkinsonNegativeNegativeCannabinoids Screen, UrinePositiveAbnormalHOAG MEMORIAL HOSPITAL NEWPORT BEACH LABORATORY (CLIA 05D0578635)One Hoag DriveNewport BeachCA92663KatieErinWilkinsonNegativeNegativeOpiates Screen, UrineNegativeHOAG MEMORIAL HOSPITAL NEWPORT BEACH LABORATORY (CLIA 05D0578635)One Hoag DriveNewport BeachCA92663KatieErinWilkinsonNegativeNegativeMethadone Screen, UrineNegativeHOAG MEMORIAL HOSPITAL NEWPORT BEACH LABORATORY (CLIA 05D0578635)One Hoag DriveNewport BeachCA92663KatieErinWilkinsonNegativeNegativeFentanyl Screen, UrineNegativeHOAG MEMORIAL HOSPITAL NEWPORT BEACH LABORATORY (CLIA 05D0578635)One Hoag DriveNewport BeachCA92663KatieErinWilkinsonNegativeNegativeEthyl Glucuronide Screen, UrineNegativeHOAG MEMORIAL HOSPITAL NEWPORT BEACH LABORATORY (CLIA 05D0578635)One Hoag DriveNewport BeachCA92663KatieErinWilkinsonNegativeNegativeBuprenorphine Screen, UrineNegativeHOAG MEMORIAL HOSPITAL NEWPORT BEACH LABORATORY (CLIA 05D0578635)One Hoag DriveNewport BeachCA92663KatieErinWilkinsonNegativeNegativeOxycodone Screen, UrineNegativeHOAG MEMORIAL HOSPITAL NEWPORT BEACH LABORATORY (CLIA 05D0578635)One Hoag DriveNewport BeachCA92663KatieErinWilkinsonNegativeNegativeMDMA Screen, UrineNegativeHOAG MEMORIAL HOSPITAL NEWPORT BEACH LABORATORY (CLIA 05D0578635)One Hoag DriveNewport BeachCA92663KatieErinWilkinsonNegativeNegativeSpecific Gravity, UrineHOAG MEMORIAL HOSPITAL NEWPORT BEACH LABORATORY (CLIA 05D0578635)One Hoag DriveNewport BeachCA92663KatieErinWilkinson1.003 - 1.035Creatinine, Urine, RandomHOAG MEMORIAL HOSPITAL NEWPORT BEACH LABORATORY (CLIA 05D0578635)One Hoag DriveNewport BeachCA92663KatieErinWilkinsonNot EstablishedNot EstablishedMitragynine (Kratom), UrineNegativeHOAG MEMORIAL HOSPITAL NEWPORT BEACH LABORATORY (CLIA 05D0578635)One Hoag DriveNewport BeachCA92663KatieErinWilkinsonNegativeNegativeKatieErinWilkinsonHOAG MEMORIAL HOSPITAL NEWPORT BEACH LABORATORY (CLIA 05D0578635)One Hoag DriveNewport BeachCA92663Lab InterpretationAbnormalCollectionDrugs Of Abuse Comprehensive Screen, UrProvidence Health and Services Oregon and California (TST)Orthopedic Surgery - Orthopedic TraumaShssurgmdOrd MDUrinePhencyclidine Screen, UrineNegativeHOAG MEMORIAL HOSPITAL NEWPORT BEACH LABORATORY (CLIA 05D0578635)One Hoag DriveNewport BeachCA92663KatieErinWilkinsonNegativeNegativeBenzodiazepines Screen, UrineNegativeHOAG MEMORIAL HOSPITAL NEWPORT BEACH LABORATORY (CLIA 05D0578635)One Hoag DriveNewport BeachCA92663KatieErinWilkinsonNegativeNegativeCocaine Screen, UrineNegativeHOAG MEMORIAL HOSPITAL NEWPORT BEACH LABORATORY (CLIA 05D0578635)One Hoag DriveNewport BeachCA92663KatieErinWilkinsonNegativeNegativeBarbiturates Screen, UrineNegativeHOAG MEMORIAL HOSPITAL NEWPORT BEACH LABORATORY (CLIA 05D0578635)One Hoag DriveNewport BeachCA92663KatieErinWilkinsonNegativeNegativeAmphetamine Screen, UrineNegativeHOAG MEMORIAL HOSPITAL NEWPORT BEACH LABORATORY (CLIA 05D0578635)One Hoag DriveNewport BeachCA92663KatieErinWilkinsonNegativeNegativeCannabinoids Screen, UrineNegativeHOAG MEMORIAL HOSPITAL NEWPORT BEACH LABORATORY (CLIA 05D0578635)One Hoag DriveNewport BeachCA92663KatieErinWilkinsonNegativeNegativeOpiates Screen, UrineNegativeHOAG MEMORIAL HOSPITAL NEWPORT BEACH LABORATORY (CLIA 05D0578635)One Hoag DriveNewport BeachCA92663KatieErinWilkinsonNegativeNegativeMethadone Screen, UrineNegativeHOAG MEMORIAL HOSPITAL NEWPORT BEACH LABORATORY (CLIA 05D0578635)One Hoag DriveNewport BeachCA92663KatieErinWilkinsonNegativeNegativeFentanyl Screen, UrineNegativeHOAG MEMORIAL HOSPITAL NEWPORT BEACH LABORATORY (CLIA 05D0578635)One Hoag DriveNewport BeachCA92663KatieErinWilkinsonNegativeNegativeEthyl Glucuronide Screen, UrineNegativeHOAG MEMORIAL HOSPITAL NEWPORT BEACH LABORATORY (CLIA 05D0578635)One Hoag DriveNewport BeachCA92663KatieErinWilkinsonNegativeNegativeBuprenorphine Screen, UrineNegativeHOAG MEMORIAL HOSPITAL NEWPORT BEACH LABORATORY (CLIA 05D0578635)One Hoag DriveNewport BeachCA92663KatieErinWilkinsonNegativeNegativeOxycodone Screen, UrineNegativeHOAG MEMORIAL HOSPITAL NEWPORT BEACH LABORATORY (CLIA 05D0578635)One Hoag DriveNewport BeachCA92663KatieErinWilkinsonNegativeNegativeMDMA Screen, UrineNegativeHOAG MEMORIAL HOSPITAL NEWPORT BEACH LABORATORY (CLIA 05D0578635)One Hoag DriveNewport BeachCA92663KatieErinWilkinsonNegativeNegativeSpecific Gravity, UrineHOAG MEMORIAL HOSPITAL NEWPORT BEACH LABORATORY (CLIA 05D0578635)One Hoag DriveNewport BeachCA92663KatieErinWilkinson1.003 - 1.035Creatinine, Urine, RandomHOAG MEMORIAL HOSPITAL NEWPORT BEACH LABORATORY (CLIA 05D0578635)One Hoag DriveNewport BeachCA92663KatieErinWilkinsonNot EstablishedNot EstablishedMitragynine (Kratom), UrineNegativeHOAG MEMORIAL HOSPITAL NEWPORT BEACH LABORATORY (CLIA 05D0578635)One Hoag DriveNewport BeachCA92663KatieErinWilkinsonNegativeNegativeKatieErinWilkinsonHOAG MEMORIAL HOSPITAL NEWPORT BEACH LABORATORY (CLIA 05D0578635)One Hoag DriveNewport BeachCA92663CollectionDrugs Of Abuse Comprehensive Screen, UrProvidence Health and Services Oregon and California (TST)Family Medicine3122 MERIDIAN PARK LOOPMATANUSKA-SUSITNAWASILLAAK99654USAValerieKrozel MDUrinePhencyclidine Screen, UrineNegativeHOAG MEMORIAL HOSPITAL NEWPORT BEACH LABORATORY (CLIA 05D0578635)One Hoag DriveNewport BeachCA92663KatieErinWilkinsonNegativeNegativeBenzodiazepines Screen, UrineNegativeHOAG MEMORIAL HOSPITAL NEWPORT BEACH LABORATORY (CLIA 05D0578635)One Hoag DriveNewport BeachCA92663KatieErinWilkinsonNegativeNegativeCocaine Screen, UrineNegativeHOAG MEMORIAL HOSPITAL NEWPORT BEACH LABORATORY (CLIA 05D0578635)One Hoag DriveNewport BeachCA92663KatieErinWilkinsonNegativeNegativeBarbiturates Screen, UrineNegativeHOAG MEMORIAL HOSPITAL NEWPORT BEACH LABORATORY (CLIA 05D0578635)One Hoag DriveNewport BeachCA92663KatieErinWilkinsonNegativeNegativeAmphetamine Screen, UrineNegativeHOAG MEMORIAL HOSPITAL NEWPORT BEACH LABORATORY (CLIA 05D0578635)One Hoag DriveNewport BeachCA92663KatieErinWilkinsonNegativeNegativeCannabinoids Screen, UrineNegativeHOAG MEMORIAL HOSPITAL NEWPORT BEACH LABORATORY (CLIA 05D0578635)One Hoag DriveNewport BeachCA92663KatieErinWilkinsonNegativeNegativeOpiates Screen, UrineNegativeHOAG MEMORIAL HOSPITAL NEWPORT BEACH LABORATORY (CLIA 05D0578635)One Hoag DriveNewport BeachCA92663KatieErinWilkinsonNegativeNegativeMethadone Screen, UrineNegativeHOAG MEMORIAL HOSPITAL NEWPORT BEACH LABORATORY (CLIA 05D0578635)One Hoag DriveNewport BeachCA92663KatieErinWilkinsonNegativeNegativeFentanyl Screen, UrineNegativeHOAG MEMORIAL HOSPITAL NEWPORT BEACH LABORATORY (CLIA 05D0578635)One Hoag DriveNewport BeachCA92663KatieErinWilkinsonNegativeNegativeEthyl Glucuronide Screen, UrineNegativeHOAG MEMORIAL HOSPITAL NEWPORT BEACH LABORATORY (CLIA 05D0578635)One Hoag DriveNewport BeachCA92663KatieErinWilkinsonNegativeNegativeBuprenorphine Screen, UrinePositiveAbnormalHOAG MEMORIAL HOSPITAL NEWPORT BEACH LABORATORY (CLIA 05D0578635)One Hoag DriveNewport BeachCA92663KatieErinWilkinsonNegativeNegativeOxycodone Screen, UrineNegativeHOAG MEMORIAL HOSPITAL NEWPORT BEACH LABORATORY (CLIA 05D0578635)One Hoag DriveNewport BeachCA92663KatieErinWilkinsonNegativeNegativeMDMA Screen, UrineNegativeHOAG MEMORIAL HOSPITAL NEWPORT BEACH LABORATORY (CLIA 05D0578635)One Hoag DriveNewport BeachCA92663KatieErinWilkinsonNegativeNegativeSpecific Gravity, UrineHOAG MEMORIAL HOSPITAL NEWPORT BEACH LABORATORY (CLIA 05D0578635)One Hoag DriveNewport BeachCA92663KatieErinWilkinson1.003 - 1.035Creatinine, Urine, RandomHOAG MEMORIAL HOSPITAL NEWPORT BEACH LABORATORY (CLIA 05D0578635)One Hoag DriveNewport BeachCA92663KatieErinWilkinsonNot EstablishedNot EstablishedMitragynine (Kratom), UrineNegativeHOAG MEMORIAL HOSPITAL NEWPORT BEACH LABORATORY (CLIA 05D0578635)One Hoag DriveNewport BeachCA92663KatieErinWilkinsonNegativeNegativeKatieErinWilkinsonHOAG MEMORIAL HOSPITAL NEWPORT BEACH LABORATORY (CLIA 05D0578635)One Hoag DriveNewport BeachCA92663Lab InterpretationAbnormalCollectionCA 19-9, QuantProvidence Health and Services Oregon and California (TST)Family Medicine4823 MEADOWS RD STE 127CLACKAMASLAKE OSWEGOOR97035-2622USARuthAFischer-Wright MDBloodCA 19 9HOAG MEMORIAL HOSPITAL NEWPORT BEACH LABORATORY (CLIA 05D0578635)One Hoag DriveNewport BeachCA92663KatieErinWilkinson1 - 37Lab InterpretationNormalVenipunctureCA 125, QuantProvidence Health and Services Oregon and California (TST)Family Medicine4823 MEADOWS RD STE 127CLACKAMASLAKE OSWEGOOR97035-2622USARuthAFischer-Wright MDBloodCancer Antigen 125HighHOAG MEMORIAL HOSPITAL NEWPORT BEACH LABORATORY (CLIA 05D0578635)One Hoag DriveNewport BeachCA92663KatieErinWilkinson6 - 35Lab InterpretationAbnormalVenipunctureCEAProvidence Health and Services Oregon and California (TST)Family Medicine4823 MEADOWS RD STE 127CLACKAMASLAKE OSWEGOOR97035-2622USARuthAFischer-Wright MDBloodCEAHighHOAG MEMORIAL HOSPITAL NEWPORT BEACH LABORATORY (CLIA 05D0578635)One Hoag DriveNewport BeachCA92663KatieErinWilkinson0.3 - 3.0Lab InterpretationAbnormalVenipuncturePSA, DiagnosticProvidence Health and Services Oregon and California (TST)Family Medicine4823 MEADOWS RD STE 127CLACKAMASLAKE OSWEGOOR97035-2622USARuthAFischer-Wright MDBloodPSAHighHOAG MEMORIAL HOSPITAL NEWPORT BEACH LABORATORY (CLIA 05D0578635)One Hoag DriveNewport BeachCA92663KatieErinWilkinson0.06 - 4.00Lab InterpretationAbnormalVenipuncturePSA, ScreenProvidence Health and Services Oregon and California (TST)Family MedicineVictorJAaen MDBloodPSAHighHOAG MEMORIAL HOSPITAL NEWPORT BEACH LABORATORY (CLIA 05D0578635)One Hoag DriveNewport BeachCA92663KatieErinWilkinson0.06 - 4.00Lab InterpretationAbnormalVenipunctureDrugs of Abuse, Screen, UrineProvidence Health and Services Oregon and California (TST)Family Medicine3122 MERIDIAN PARK LOOPMATANUSKA-SUSITNAWASILLAAK99654USAValerieKrozel MDUrinePhencyclidine Screen, UrineNegativeHOAG MEMORIAL HOSPITAL NEWPORT BEACH LABORATORY (CLIA 05D0578635)One Hoag DriveNewport BeachCA92663KatieErinWilkinsonNegativeNegativeBenzodiazepines Screen, UrineNegativeHOAG MEMORIAL HOSPITAL NEWPORT BEACH LABORATORY (CLIA 05D0578635)One Hoag DriveNewport BeachCA92663KatieErinWilkinsonNegativeNegativeCocaine Screen, UrineNegativeHOAG MEMORIAL HOSPITAL NEWPORT BEACH LABORATORY (CLIA 05D0578635)One Hoag DriveNewport BeachCA92663KatieErinWilkinsonNegativeNegativeBarbiturates Screen, UrineNegativeHOAG MEMORIAL HOSPITAL NEWPORT BEACH LABORATORY (CLIA 05D0578635)One Hoag DriveNewport BeachCA92663KatieErinWilkinsonNegativeNegativeAmphetamine Screen, UrineNegativeHOAG MEMORIAL HOSPITAL NEWPORT BEACH LABORATORY (CLIA 05D0578635)One Hoag DriveNewport BeachCA92663KatieErinWilkinsonNegativeNegativeCannabinoids Screen, UrineNegativeHOAG MEMORIAL HOSPITAL NEWPORT BEACH LABORATORY (CLIA 05D0578635)One Hoag DriveNewport BeachCA92663KatieErinWilkinsonNegativeNegativeOpiates Screen, UrineNegativeHOAG MEMORIAL HOSPITAL NEWPORT BEACH LABORATORY (CLIA 05D0578635)One Hoag DriveNewport BeachCA92663KatieErinWilkinsonNegativeNegativeSpecific Gravity, UrineHOAG MEMORIAL HOSPITAL NEWPORT BEACH LABORATORY (CLIA 05D0578635)One Hoag DriveNewport BeachCA92663KatieErinWilkinsonCreatinine, Urine, RandomHOAG MEMORIAL HOSPITAL NEWPORT BEACH LABORATORY (CLIA 05D0578635)One Hoag DriveNewport BeachCA92663KatieErinWilkinsonNot EstablishedNot EstablishedFentanyl Screen, UrinePositiveAbnormalHOAG MEMORIAL HOSPITAL NEWPORT BEACH LABORATORY (CLIA 05D0578635)One Hoag DriveNewport BeachCA92663KatieErinWilkinsonNegativeNegativeKatieErinWilkinsonHOAG MEMORIAL HOSPITAL NEWPORT BEACH LABORATORY (CLIA 05D0578635)One Hoag DriveNewport BeachCA92663Lab InterpretationAbnormalCollectionDrugs of Abuse, Screen, UrineProvidence Health and Services Oregon and California (TST)Obstetrics and GynecologyMidwifeObstetrics CNMUrinePhencyclidine Screen, UrineNegativeHOAG MEMORIAL HOSPITAL NEWPORT BEACH LABORATORY (CLIA 05D0578635)One Hoag DriveNewport BeachCA92663KatieErinWilkinsonNegativeNegativeBenzodiazepines Screen, UrineNegativeHOAG MEMORIAL HOSPITAL NEWPORT BEACH LABORATORY (CLIA 05D0578635)One Hoag DriveNewport BeachCA92663KatieErinWilkinsonNegativeNegativeCocaine Screen, UrineNegativeHOAG MEMORIAL HOSPITAL NEWPORT BEACH LABORATORY (CLIA 05D0578635)One Hoag DriveNewport BeachCA92663KatieErinWilkinsonNegativeNegativeBarbiturates Screen, UrineNegativeHOAG MEMORIAL HOSPITAL NEWPORT BEACH LABORATORY (CLIA 05D0578635)One Hoag DriveNewport BeachCA92663KatieErinWilkinsonNegativeNegativeAmphetamine Screen, UrineNegativeHOAG MEMORIAL HOSPITAL NEWPORT BEACH LABORATORY (CLIA 05D0578635)One Hoag DriveNewport BeachCA92663KatieErinWilkinsonNegativeNegativeCannabinoids Screen, UrineNegativeHOAG MEMORIAL HOSPITAL NEWPORT BEACH LABORATORY (CLIA 05D0578635)One Hoag DriveNewport BeachCA92663KatieErinWilkinsonNegativeNegativeOpiates Screen, UrineNegativeHOAG MEMORIAL HOSPITAL NEWPORT BEACH LABORATORY (CLIA 05D0578635)One Hoag DriveNewport BeachCA92663KatieErinWilkinsonNegativeNegativeSpecific Gravity, UrineHOAG MEMORIAL HOSPITAL NEWPORT BEACH LABORATORY (CLIA 05D0578635)One Hoag DriveNewport BeachCA92663KatieErinWilkinsonCreatinine, Urine, RandomHOAG MEMORIAL HOSPITAL NEWPORT BEACH LABORATORY (CLIA 05D0578635)One Hoag DriveNewport BeachCA92663KatieErinWilkinsonNot EstablishedNot EstablishedFentanyl Screen, UrinePositiveAbnormalHOAG MEMORIAL HOSPITAL NEWPORT BEACH LABORATORY (CLIA 05D0578635)One Hoag DriveNewport BeachCA92663KatieErinWilkinsonNegativeNegativeKatieErinWilkinsonHOAG MEMORIAL HOSPITAL NEWPORT BEACH LABORATORY (CLIA 05D0578635)One Hoag DriveNewport BeachCA92663Lab InterpretationAbnormalCollection
Social History
Tobacco UseTypesPacks/DayYears UsedDate
Smoking Tobacco: Never Assessed
Sex Assigned at BirthDate Recorded
Not on file
documented as of this encounter
Encounter Details
DateTypeDepartmentCare TeamDescription
10/11/22EmergencyHOAG MEMORIAL HOSPITAL NEWPORT EMERGENCY CENTER1 HOAG DRNEWPORT BEACH, CA 92663-4162949-764-8372
Emergency Medicine1 HOAG DRORANGENEWPORT BEACHCA92663-4162USAHOAG MEMORIAL HOSPITAL NEWPORT EMERGENCY CENTEREmergency Medicine
\ No newline at end of file diff --git a/containers/ecr-viewer/seed-scripts/baseECR/e2e/0aa7a9c2-87e4-4115-876e-b0253bb8dabf/CDA_RR.html b/containers/ecr-viewer/seed-scripts/baseECR/e2e/0aa7a9c2-87e4-4115-876e-b0253bb8dabf/CDA_RR.html new file mode 100644 index 0000000000..3c93a91238 --- /dev/null +++ b/containers/ecr-viewer/seed-scripts/baseECR/e2e/0aa7a9c2-87e4-4115-876e-b0253bb8dabf/CDA_RR.html @@ -0,0 +1,206 @@ + + + + + + Reportability Response + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
PatientZztesttwelve, Cedarsecr
Patient ID(s)CST7XKZ7G2C4HP2 1.2.840.114350.1.13.202.3.7.3.688884.100 +
+ 401990744 1.2.840.114350.1.13.202.3.7.5.737384.26 +
+
Contact info Primary Home: +
+ 1123 MALTMAN STREET +
+ LOS ANGELES, CA 90026, US +
+
Date of BirthDecember 31, 1990
SexFemale
RaceBlack or African American
EthnicityHispanic or Latino
Preferred LanguageENG
+ + + + + + + + + +
Primary Information Recipient:So, Naomi
Contact info
+ + + + + + +
eICR Identifier: 1.2.840.114350.1.13.202.3.7.8.688883.324
+
+
+ Subject: +

Public Health Reporting Communication: one or more conditions are reportable, or may be reportable, to public health.

+
+
+
+ Summary: +

Your organization electronically submitted an initial case report to determine if reporting to public health is needed for a patient.

+

+ No determination of reportability could be made for any condition for "California Department of Public Health". This may be because it is not on the list of reportable conditions for the relevant Public Health Agency, or the information provided at the time of this report does not meet reporting criteria, or not all data needed to confirm reportability were available. +
+

+

+ "Disease caused by severe acute respiratory syndrome coronavirus 2 (disorder)" is reportable to "Los Angeles County Department of Public Health". The initial case report was sent to "Los Angeles County Department of Public Health". Additional information may be required for this report. +
+

+

+ "Disease caused by severe acute respiratory syndrome coronavirus 2 (disorder)" for "Los Angeles County Department of Public Health" +

+

+ Reporting is required immediately. Reporting to this Public Health Agency is based on "Both patient home address and provider facility address" +
+

+

+ > CDC COVID-19 webpage (Information only) +
+
+
> Los Angeles County Department of Public Health Office of the Chief Medical Informatics Officer IRIS System 241 North Figueroa Street Los Angeles, CA 90012 213-288-7696 (Information only) +
+
+
+

+
+
+
+ + diff --git a/containers/ecr-viewer/seed-scripts/baseECR/e2e/0aa7a9c2-87e4-4115-876e-b0253bb8dabf/CDA_RR.xml b/containers/ecr-viewer/seed-scripts/baseECR/e2e/0aa7a9c2-87e4-4115-876e-b0253bb8dabf/CDA_RR.xml new file mode 100644 index 0000000000..edfc4477e7 --- /dev/null +++ b/containers/ecr-viewer/seed-scripts/baseECR/e2e/0aa7a9c2-87e4-4115-876e-b0253bb8dabf/CDA_RR.xml @@ -0,0 +1 @@ +Reportability Response1123 MALTMAN STREETLOS ANGELELOS ANGELESCA90026USUSCedarsecrZztesttwelveCedars-Sinai8700 Beverly BlvdLos AngelesCA90048-1803APHL | Association of Public Health Laboratories.8515 Georgia Avenue, Suite 700Silver SpringMD20910USNaomiSoCedars-Sinai8700 Beverly BlvdLos AngelesCA90048-1803Office VisitNaomiSoCedars-Sinai8700 Beverly BlvdLos AngelesCA90048-1803Internal MedicineCSMG Internal Medicine8767 Wilshire Blvd2nd FloorLOS ANGELEBEVERLY HILLSCA90211USWILSHIRE 87678767 Wilshire Blvd2nd FloorLOS ANGELEBEVERLY HILLSCA90211USCedars-Sinai
.
Subject:Public Health Reporting Communication: one or more conditions are reportable, or may be reportable, to public health.
Public Health Reporting Communication: one or more conditions are reportable, or may be reportable, to public health.
.Summary:Your organization electronically submitted an initial case report to determine if reporting to public health is needed for a patient.No determination of reportability could be made for any condition for "California Department of Public Health". This may be because it is not on the list of reportable conditions for the relevant Public Health Agency, or the information provided at the time of this report does not meet reporting criteria, or not all data needed to confirm reportability were available.
"Disease caused by severe acute respiratory syndrome coronavirus 2 (disorder)" is reportable to "Los Angeles County Department of Public Health". The initial case report was sent to "Los Angeles County Department of Public Health". Additional information may be required for this report.
"Disease caused by severe acute respiratory syndrome coronavirus 2 (disorder)" for "Los Angeles County Department of Public Health" Reporting is required immediately. Reporting to this Public Health Agency is based on "Both patient home address and provider facility address"
> CDC COVID-19 webpage (Information only)

> Los Angeles County Department of Public Health Office of the Chief Medical Informatics Officer IRIS System 241 North Figueroa Street Los Angeles, CA 90012 213-288-7696 (Information only)

Your organization electronically submitted an initial case report to determine if reporting to public health is needed for a patient. SacramentoCACalifornia Department of Public HealthSacramentoCACalifornia Department of Public HealthLos Angeles County Department of Public HealthLos Angeles County Department of Public HealthCOVID-19 (as a diagnosis or active problem)CDC COVID-19 webpageLos Angeles County Department of Public Health Office of the Chief Medical Informatics Officer IRIS System 241 North Figueroa Street Los Angeles, CA 90012 213-288-7696
\ No newline at end of file diff --git a/containers/ecr-viewer/seed-scripts/baseECR/e2e/0aa7a9c2-87e4-4115-876e-b0253bb8dabf/CDA_eICR.html b/containers/ecr-viewer/seed-scripts/baseECR/e2e/0aa7a9c2-87e4-4115-876e-b0253bb8dabf/CDA_eICR.html new file mode 100644 index 0000000000..1c781cd2b0 --- /dev/null +++ b/containers/ecr-viewer/seed-scripts/baseECR/e2e/0aa7a9c2-87e4-4115-876e-b0253bb8dabf/CDA_eICR.html @@ -0,0 +1,1909 @@ + + + + + + + Initial Public Health Case Report + + + + + + + +
+ +

Initial Public Health Case Report

+
+
+
+
+
Cedarsecr Zztesttwelve
+
+
Patient Identifiers
+
+
CST7XKZ7G2C4HP2 OID: 1.2.840.114350.1.13.202.3.7.3.688884.100
+
+
+
401990744 OID: 1.2.840.114350.1.13.202.3.7.5.737384.26
+
+
+
+
+
+

About

+
+
+
Date of Birth
+
12/31/1990
+
+
+
Sex
+
Female
+
+
+
Race
+
Black or African American
+
+
+
Ethnicity
+
Hispanic or Latino
+
+
+
Preferred Language
+
ENG
+
+
+
+
+

Contact

+
+
+
Primary Home (07/21/2022 to // )
+
+

1123 MALTMAN STREET

+

LOS ANGELES, CA

+

90026, US

+
+
+
+
+
Primary Home (07/18/2022 to 07/20/2022 )
+
+

+

+

US

+
+
+
+
tel: (Primary Home) +1-310-563-2056
+
+
+
tel: (Work Place) +1-310-258-4789
+
+
+
tel: (Mobile Contact) +1-323-586-4789
+
+
+
email: testing@yahoo.com
+
+
+
+
+
+
+
+
+

Author

+
+
+
Time:
+
08/3/2022, 08:54
+
+
+
Chris Tang
+
+
+
TANGCX OID: 1.2.840.114350.1.13.202.3.7.2.697780
+
+
+
+
+

Contact

+
+
+
+
+
+
+
+

Author Organization

+
+
+
Cedars-Sinai
+
+
+
1639172372 NPI (US)
+
+
+
+
+

Contact

+
+
+
Work Place
+
+

8700 Beverly Blvd

+

Los Angeles, CA

+

90048-1803

+
+
+
+
tel: (Work Place) +1-323-866-8600
+
+
+
+
+
+
+

Author

+
+
+
Time:
+
08/3/2022, 08:54
+
+
+
+
+
+
10.2 OID: 1.2.840.114350.1.1
+
+
+
+
+

Contact

+
+
+
+
+
+
+
+

Author Organization

+
+
+
Cedars-Sinai
+
+
+
1639172372 NPI (US)
+
+
+
+
+

Contact

+
+
+
Work Place
+
+

8700 Beverly Blvd

+

Los Angeles, CA

+

90048-1803

+
+
+
+
tel: (Work Place) +1-323-866-8600
+
+
+
+
+
+
+
+
+

Encounter

+
+
+
Identifier
+
49154634716 OID: 1.2.840.114350.1.13.202.3.7.3.698084.8
+
+
+
Type
+
Office Visit
+
+
+
Date
+
+ From: 08/2/2022, 11:00 +
+
+ To: 08/2/2022, 11:20 +
+
+
+
Location
+
CSMG Internal Medicine of WILSHIRE 8767
+
+
+
+
+
+
+
+
+

Agent (Father)

+
+ +
+ + (Father) + + 320 1.2.840.114350.1.13.202.3.7.2.827665 +
+
+
+

Contact

+
+
+
Primary Home
+
+

1123 MALTMAN STREET

+

LOS ANGELES, CA

+

90026, US

+
+
+
+
tel: (Primary Home) +1-310-563-2056
+
+
+
tel: (Work Place) +1-626-478-5963
+
+
+
tel: (Mobile Contact) +1-213-465-7966
+
+
+
email: father@gmail.com
+
+
+
+
+
+
+
+
+
+
+

Miscellaneous Notes

+
+ Not on file + documented in this encounter +
+
+
+

Immunizations

+
+
+ + + + + + + + + + + + + + + + +
NameAdministration DatesNext Due
COVID-19, mRNA, Moderna, Preservative Free + 06/12/2021 + 11/12/2022
+
+ documented as of this encounter +
+
+
+

Administered Medications

+
+
+ + Inactive Administered Medications - up to 3 most recent administrations + + + + + + + + + + + + + + + + + + + + + + + +
Medication OrderMAR ActionAction DateDoseRateSite
+

albuterol (VENTOLIN) 2.5 mg /3 mL (0.083 %) nebulizer solution 2.5 mg

+

2.5 mg, Nebulization, ONCE (IN CLINIC), On Tue 8/2/22 at 1200, For 1 dose, Order MAY be automatically substituted with P&T Approved equivalent per protocol. Dilute before use with normal saline if needed. , Delivery Mode: HHN

+
Given08/02/2022 11:39 AM PDT2.5 mg
+

aspirin tablet 650 mg

+

650 mg, Oral, ONCE (IN CLINIC), On Tue 8/2/22 at 1200, For 1 dose

+
Given08/02/2022 11:40 AM PDT650 mg
+
+ documented in this encounter +
+
+
+

Plan of Treatment

+
+
+ + Scheduled Orders + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypePriorityAssociated DiagnosesOrder Schedule
+ CREATININE, SERUM + LabRoutine +

COVID-19 virus detected

+

Pregnancy test positive

+
Ordered: 8/2/22
+ THYROID-STIMULATING HORMONE (TSH) + LabRoutine +

COVID-19 virus detected

+

Pregnancy test positive

+
Ordered: 8/2/22
+ THYROXINE (T4), FREE + LabRoutine +

COVID-19 virus detected

+

Pregnancy test positive

+
Ordered: 8/2/22
+ GLUCOSE, BLOOD + LabRoutine +

COVID-19 virus detected

+

Pregnancy test positive

+
Ordered: 8/2/22
+ HELICOBACTER PYLORI ANTIBODY, IGA + LabRoutine +

COVID-19 virus detected

+

Pregnancy test positive

+
Ordered: 8/2/22
+
+ documented as of this encounter +
+
+
+

Problems

+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Active ProblemsNoted Date
2019 novel coronavirus disease (COVID-19)8/2/22
Generalized abdominal pain8/2/22
Eclampsia, antepartum8/2/22
Pregnancy related exhaustion and fatigue, antepartum8/2/22
Pregnancy test positive8/2/22
Pain, upper back7/22/22
Mild to moderate pre-eclampsia7/21/22
Depression, recurrent7/21/22
+
+
+ + + + + + + + + + + + + + +
PregnantComments
Yes
+
+ documented as of this encounter (statuses as of 08/03/2022) +
+
+
+

Reason for Visit

+
+
    +
  • +
    + + + + + + + + + + + + + + + +
    ReasonComments
    COVID-19 related
    +
    +
  • +
+
+
+
+

Results

+
+ Not on file + documented in this encounter +
+
+
+

Social History

+
+
+ + + + + + + + + + + + + + + + + + + + +
Tobacco UseTypesPacks/DayYears UsedDate
Smoking Tobacco: Every DayCigarettes330
Smokeless Tobacco: Never
+
+
+ + + + + + +
+ Tobacco Cessation: + Ready to Quit: No; Counseling Given: Yes +
+
+
+
+ + + + + + + + + + + + + + + +
Alcohol UseStandard Drinks/WeekComments
Yes0 (1 standard drink = 0.6 oz pure alcohol)
+
+
+ + + + + + + + + + + + + + + + +
EducationAnswerDate Recorded
What is the highest level of school you have completed or the highest degree you have received?Doctorate07/25/2022
+
+
+ + + + + + + + + + + + + + + +
Sex Assigned at BirthDate Recorded
Female07/21/2022 4:09 PM PDT
+
+
+ + + + + + + + + + + + + + + +
Job Start DateOccupationIndustry
1/1/14Not on fileNot on file
+
+ documented as of this encounter +
+
+
+

Encounter Details

+
+
+ + + + + + + + + + + + + + + + +
DateTypeDepartmentCare TeamDescription
8/2/22Office Visit +

CSMG Internal Medicine

+

8767 Wilshire Blvd

+

2nd Floor

+

BEVERLY HILLS, CA 90211

+

310-385-6031

+
+

So, Naomi

+
COVID-19 virus detected (Primary Dx); +
+ Pregnancy test positive
+
+
+
+
+
+
+
+

Document maintained by

+
Cedars-Sinai
+
+
+

Contact

+
+
+
Work Place
+
+

8700 Beverly Blvd

+

Los Angeles, CA

+

90048-1803

+
+
+
+
tel: (Work Place) +1-323-866-8600
+
+
+
+
+
+

Document Information

+
+ + + + + + + + + + + +
Document IdentifierDocument Created
OID: 1.2.840.114350.1.13.202.3.7.8.688883.32408/3/2022, 08:54
+
+
+
+
+ + diff --git a/containers/ecr-viewer/seed-scripts/baseECR/e2e/0aa7a9c2-87e4-4115-876e-b0253bb8dabf/CDA_eICR.xml b/containers/ecr-viewer/seed-scripts/baseECR/e2e/0aa7a9c2-87e4-4115-876e-b0253bb8dabf/CDA_eICR.xml new file mode 100644 index 0000000000..eeca549217 --- /dev/null +++ b/containers/ecr-viewer/seed-scripts/baseECR/e2e/0aa7a9c2-87e4-4115-876e-b0253bb8dabf/CDA_eICR.xml @@ -0,0 +1 @@ +Initial Public Health Case Report1123 MALTMAN STREETLOS ANGELELOS ANGELESCA90026USUSCedarsecrZztesttwelveCedars-Sinai8700 Beverly BlvdLos AngelesCA90048-1803Cedars-Sinai8700 Beverly BlvdLos AngelesCA90048-1803Office VisitNaomiSoCedars-Sinai8700 Beverly BlvdLos AngelesCA90048-1803Internal MedicineCSMG Internal Medicine8767 Wilshire Blvd2nd FloorLOS ANGELEBEVERLY HILLSCA90211USWILSHIRE 87678767 Wilshire Blvd2nd FloorLOS ANGELEBEVERLY HILLSCA90211USCedars-Sinai
Miscellaneous NotesNot on filedocumented in this encounter
Immunizations
NameAdministration DatesNext Due
COVID-19, mRNA, Moderna, Preservative Free06/12/202111/12/2022
documented as of this encounter
C12345
Administered Medications
Inactive Administered Medications - up to 3 most recent administrations
Medication OrderMAR ActionAction DateDoseRateSite
albuterol (VENTOLIN) 2.5 mg /3 mL (0.083 %) nebulizer solution 2.5 mg2.5 mg, Nebulization, ONCE (IN CLINIC), On Tue 8/2/22 at 1200, For 1 dose, Order MAY be automatically substituted with P&T Approved equivalent per protocol. Dilute before use with normal saline if needed. , Delivery Mode: HHNGiven08/02/2022 11:39 AM PDT2.5 mg
aspirin tablet 650 mg650 mg, Oral, ONCE (IN CLINIC), On Tue 8/2/22 at 1200, For 1 doseGiven08/02/2022 11:40 AM PDT650 mg
documented in this encounter
650 mg, Oral, ONCE (IN CLINIC), On Tue 8/2/22 at 1200, For 1 doseOral2.5 mg, Nebulization, ONCE (IN CLINIC), On Tue 8/2/22 at 1200, For 1 dose<br>Order MAY be automatically substituted with P&amp;T Approved equivalent per protocol.&nbsp;&nbsp;Dilute before use with normal saline if needed.&nbsp;<br>Delivery Mode: HHNNebulization
Plan of Treatment
Scheduled Orders
NameTypePriorityAssociated DiagnosesOrder Schedule
CREATININE, SERUMLabRoutineCOVID-19 virus detectedPregnancy test positiveOrdered: 8/2/22
THYROID-STIMULATING HORMONE (TSH)LabRoutineCOVID-19 virus detectedPregnancy test positiveOrdered: 8/2/22
THYROXINE (T4), FREELabRoutineCOVID-19 virus detectedPregnancy test positiveOrdered: 8/2/22
GLUCOSE, BLOODLabRoutineCOVID-19 virus detectedPregnancy test positiveOrdered: 8/2/22
HELICOBACTER PYLORI ANTIBODY, IGALabRoutineCOVID-19 virus detectedPregnancy test positiveOrdered: 8/2/22
documented as of this encounter
Problems
Active ProblemsNoted Date
2019 novel coronavirus disease (COVID-19)8/2/22
Generalized abdominal pain8/2/22
Eclampsia, antepartum8/2/22
Pregnancy related exhaustion and fatigue, antepartum8/2/22
Pregnancy test positive8/2/22
Pain, upper back7/22/22
Mild to moderate pre-eclampsia7/21/22
Depression, recurrent7/21/22
PregnantComments
Yes
documented as of this encounter (statuses as of 08/03/2022)
Reason for Visit
ReasonComments
COVID-19 related
COVID-19 related
ResultsNot on filedocumented in this encounter
Social History
Tobacco UseTypesPacks/DayYears UsedDate
Smoking Tobacco: Every DayCigarettes330
Smokeless Tobacco: Never
Tobacco Cessation: Ready to Quit: No; Counseling Given: Yes
Alcohol UseStandard Drinks/WeekComments
Yes0 (1 standard drink = 0.6 oz pure alcohol)
EducationAnswerDate Recorded
What is the highest level of school you have completed or the highest degree you have received?Doctorate07/25/2022
Sex Assigned at BirthDate Recorded
Female07/21/2022 4:09 PM PDT
Job Start DateOccupationIndustry
1/1/14Not on fileNot on file
documented as of this encounter
20
Encounter Details
DateTypeDepartmentCare TeamDescription
8/2/22Office VisitCSMG Internal Medicine8767 Wilshire Blvd2nd FloorBEVERLY HILLS, CA 90211310-385-6031So, NaomiCOVID-19 virus detected (Primary Dx);
Pregnancy test positive
NaomiSoInternal Medicine8767 Wilshire Blvd2nd FloorLOS ANGELEBEVERLY HILLSCA90211USCSMG Internal MedicineInternal MedicineCOVID-19 virus detectedCOVID-19 virus detectedPregnancy test positivePregnancy test positive
\ No newline at end of file diff --git a/containers/ecr-viewer/seed-scripts/baseECR/e2e/1c1393a3-2481-45a5-8610-392683aaef4a/CDA_RR.html b/containers/ecr-viewer/seed-scripts/baseECR/e2e/1c1393a3-2481-45a5-8610-392683aaef4a/CDA_RR.html new file mode 100644 index 0000000000..95bae2c910 --- /dev/null +++ b/containers/ecr-viewer/seed-scripts/baseECR/e2e/1c1393a3-2481-45a5-8610-392683aaef4a/CDA_RR.html @@ -0,0 +1,215 @@ + + + + + + Reportability Response + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
PatientCUTLA, CARETEAM
Patient ID(s)0000008807 2.25.208734791866360805618646170698166832449 +
+ 9244 2.25.208734791866360805618646170698166832449 +
+ 8589d444-a267-11ec-81e0-9e7eef92c510 2.25.208734791866360805618646170698166832449 +
+
Contact info Primary Home: +
+ 1 main street +
+ brockton, CA 90210, US +
+
Date of BirthSeptember 12, 1960
SexMale
RaceWhite
Ethnicity
Preferred Language
+ + + + + + + + + +
Primary Information Recipient:MCUTLER,
Contact info
+ + + + + + +
eICR Identifier:1 a3266d94-ce19-11ec-81e1-8465ad080d41
+
+
+ Subject: +

Public Health Reporting Communication: one or more conditions are reportable, or may be reportable, to public health.

+
+
+
+ Summary: +

Your organization electronically submitted an initial case report to determine if reporting to public health is needed for a patient.

+

+ No determination of reportability could be made for any condition for "California Department of Public Health". This may be because it is not on the list of reportable conditions for the relevant Public Health Agency, or the information provided at the time of this report does not meet reporting criteria, or not all data needed to confirm reportability were available. +
+

+

+ "Disease caused by severe acute respiratory syndrome coronavirus 2 (disorder)" is reportable to "Los Angeles County Department of Public Health". The initial case report was sent to "Los Angeles County Department of Public Health". Additional information may be required for this report."Anthrax (disorder)" is reportable to "Los Angeles County Department of Public Health". The initial case report was sent to "Los Angeles County Department of Public Health". Additional information may be required for this report. +
+

+

+ No determination of reportability could be made for any condition for "Massachusetts Department of Health and Human Services". This may be because it is not on the list of reportable conditions for the relevant Public Health Agency, or the information provided at the time of this report does not meet reporting criteria, or not all data needed to confirm reportability were available. +
+

+

+ "Disease caused by severe acute respiratory syndrome coronavirus 2 (disorder)" for "Los Angeles County Department of Public Health" +

+

+ Reporting is required immediately. Reporting to this Public Health Agency is based on "Patient home address" +
+

+

+ > CDC COVID-19 webpage (Information only) +
+
+
> Los Angeles County Department of Public Health Office of the Chief Medical Informatics Officer IRIS System 241 North Figueroa Street Los Angeles, CA 90012 213-288-7696 (Information only) +
+
+
+

+

+ "Anthrax (disorder)" for "Los Angeles County Department of Public Health" +

+
+
+
+ + diff --git a/containers/ecr-viewer/seed-scripts/baseECR/e2e/1c1393a3-2481-45a5-8610-392683aaef4a/CDA_RR.xml b/containers/ecr-viewer/seed-scripts/baseECR/e2e/1c1393a3-2481-45a5-8610-392683aaef4a/CDA_RR.xml new file mode 100644 index 0000000000..a84c3b1d15 --- /dev/null +++ b/containers/ecr-viewer/seed-scripts/baseECR/e2e/1c1393a3-2481-45a5-8610-392683aaef4a/CDA_RR.xml @@ -0,0 +1 @@ +Reportability Response1 main streetbrocktonCA90210USCUTLACARETEAMAPHL | Association of Public Health Laboratories.8515 Georgia Avenue, Suite 700Silver SpringMD20910USMCUTLERCANTON MEDICAL CENTER OF MASSACHUSETTS-North Canton Facilit5001 North Mount Washington Circle DriveP.O. BOX 555566North CantonMA02740-0001USAMCUTLERCANTON MEDICAL CENTER OF MASSACHUSETTS-North Canton Facilit5001 North Mount Washington Circle DriveP.O. BOX 555566North CantonMA02740-0001USA2 COMMERCE DRUNIT #12BOSTONMA11111SherAdamCANTON MEDICAL CENTER OF MASSACHUSETTS-North Canton Facilit5001 North Mount Washington Circle DriveP.O. BOX 555566North CantonMA02740-0001USA20 ELM STREETSUITE 101 SECOND FLOOR NORTHBOSTONMA02154MEDITECHDRCANTON MEDICAL CENTER OF MASSACHUSETTS-North Canton Facilit5001 North Mount Washington Circle DriveP.O. BOX 555566North CantonMA02740-0001USA1 Constitution WayApt 2FoxboroMA05158USAMeditech Facility Author1 Constitution WayApt 2FoxboroMA05158USA
.
Subject:Public Health Reporting Communication: one or more conditions are reportable, or may be reportable, to public health.
Public Health Reporting Communication: one or more conditions are reportable, or may be reportable, to public health.
The content of name **SHALL** be either a conformant Patient Name (PTN.US.FIELDED), or a string (CONF:81-9371)./ClinicalDocument[1]/componentOf[1]/encompassingEncounter[1]/responsibleParty[1]/assignedEntity[1]/assignedPerson[1]/name[1](cda:given and cda:family) or (count(*) = 0 and string-length(normalize-space(string(text()))) != 0)The string **SHALL NOT** contain name parts (CONF:81-9372)./ClinicalDocument[1]/componentOf[1]/encompassingEncounter[1]/responsibleParty[1]/assignedEntity[1]/assignedPerson[1]/name[1](cda:given and cda:family) or (count(*) = 0)Such ids SHALL contain exactly one [1..1] @root (CONF:3284-22)./ClinicalDocument[1]cda:componentOf/cda:encompassingEncounter/cda:responsibleParty/cda:assignedEntity/cda:id[@root]This assignedEntity SHALL contain at least one [1..*] telecom (CONF:3284-24)./ClinicalDocument[1]cda:componentOf/cda:encompassingEncounter/cda:responsibleParty/cda:assignedEntity[count(cda:telecom) > 0]This value SHALL contain exactly one [1..1] @sdtc:valueSet="2.16.840.1.114222.4.11.7508" (CONF:3284-187)./ClinicalDocument[1]/component[1]/structuredBody[1]/component[5]/section[1]/entry[1]/act[1]/entryRelationship[1]/observation[1]cda:value[@xsi:type = 'CD'][@sdtc:valueSet = '2.16.840.1.114222.4.11.7508']This value SHALL contain exactly one [1..1] @sdtc:valueSetVersion (CONF:3284-188)./ClinicalDocument[1]/component[1]/structuredBody[1]/component[5]/section[1]/entry[1]/act[1]/entryRelationship[1]/observation[1]cda:value[@xsi:type = 'CD'][@sdtc:valueSetVersion]This value SHALL contain exactly one [1..1] @sdtc:valueSet="2.16.840.1.114222.4.11.7508" (CONF:3284-187)./ClinicalDocument[1]/component[1]/structuredBody[1]/component[5]/section[1]/entry[2]/act[1]/entryRelationship[1]/observation[1]cda:value[@xsi:type = 'CD'][@sdtc:valueSet = '2.16.840.1.114222.4.11.7508']This value SHALL contain exactly one [1..1] @sdtc:valueSetVersion (CONF:3284-188)./ClinicalDocument[1]/component[1]/structuredBody[1]/component[5]/section[1]/entry[2]/act[1]/entryRelationship[1]/observation[1]cda:value[@xsi:type = 'CD'][@sdtc:valueSetVersion]
.Summary:Your organization electronically submitted an initial case report to determine if reporting to public health is needed for a patient.No determination of reportability could be made for any condition for "California Department of Public Health". This may be because it is not on the list of reportable conditions for the relevant Public Health Agency, or the information provided at the time of this report does not meet reporting criteria, or not all data needed to confirm reportability were available.
"Disease caused by severe acute respiratory syndrome coronavirus 2 (disorder)" is reportable to "Los Angeles County Department of Public Health". The initial case report was sent to "Los Angeles County Department of Public Health". Additional information may be required for this report."Anthrax (disorder)" is reportable to "Los Angeles County Department of Public Health". The initial case report was sent to "Los Angeles County Department of Public Health". Additional information may be required for this report.
No determination of reportability could be made for any condition for "Massachusetts Department of Health and Human Services". This may be because it is not on the list of reportable conditions for the relevant Public Health Agency, or the information provided at the time of this report does not meet reporting criteria, or not all data needed to confirm reportability were available.
"Disease caused by severe acute respiratory syndrome coronavirus 2 (disorder)" for "Los Angeles County Department of Public Health" Reporting is required immediately. Reporting to this Public Health Agency is based on "Patient home address"
> CDC COVID-19 webpage (Information only)

> Los Angeles County Department of Public Health Office of the Chief Medical Informatics Officer IRIS System 241 North Figueroa Street Los Angeles, CA 90012 213-288-7696 (Information only)

"Anthrax (disorder)" for "Los Angeles County Department of Public Health"
Your organization electronically submitted an initial case report to determine if reporting to public health is needed for a patient. SacramentoCACalifornia Department of Public HealthSacramentoCACalifornia Department of Public HealthLos Angeles County Department of Public HealthLos Angeles County Department of Public HealthCOVID-19 (as a diagnosis or active problem)CDC COVID-19 webpageLos Angeles County Department of Public Health Office of the Chief Medical Informatics Officer IRIS System 241 North Figueroa Street Los Angeles, CA 90012 213-288-7696Los Angeles County Department of Public HealthLos Angeles County Department of Public HealthAnthrax (as a diagnosis or active problem)Anthrax vaccine administered305 South StreetJamaica PlainMAMassachusetts Department of Health and Human Services305 South StreetJamaica PlainMAMassachusetts Department of Health and Human Services
\ No newline at end of file diff --git a/containers/ecr-viewer/seed-scripts/baseECR/e2e/1c1393a3-2481-45a5-8610-392683aaef4a/CDA_eICR.html b/containers/ecr-viewer/seed-scripts/baseECR/e2e/1c1393a3-2481-45a5-8610-392683aaef4a/CDA_eICR.html new file mode 100644 index 0000000000..8e0876f232 --- /dev/null +++ b/containers/ecr-viewer/seed-scripts/baseECR/e2e/1c1393a3-2481-45a5-8610-392683aaef4a/CDA_eICR.html @@ -0,0 +1,1824 @@ + + + + + + + Initial Public Health Case Report + + + + + + + +
+ +

Initial Public Health Case Report

+
+
+
+
+
CARETEAM CUTLA
+
+
Patient Identifiers
+
+
0000008807 OID: 2.25.208734791866360805618646170698166832449
+
+
+
9244 OID: 2.25.208734791866360805618646170698166832449
+
+
+
8589d444-a267-11ec-81e0-9e7eef92c510 OID: 2.25.208734791866360805618646170698166832449
+
+
+
+
+
+

About

+
+
+
Date of Birth
+
09/12/1960
+
+
+
Sex
+
Male
+
+
+
Race
+
White, European
+
+
+
Ethnicity
+
,
+
+
+
Preferred Language
+
+
+
+
+
+

Contact

+
+
+
Primary Home (// to // )
+
+

1 main street

+

brockton, CA

+

90210, US

+
+
+
+
tel: (Primary Home) +1(789)785-8594
+
+
+
+
+
+
+
+
+

Author

+
+
+
Time:
+
05/7/2022, 11:23
+
+
+
+
+
+
OID: 1.3.6.1.4.1.24310
+
+
+
+
+

Contact

+
+
+
Work Place
+
+

1 Constitution Way

+

Foxboro, MA

+

05158, USA

+
+
+
+
tel: (Work Place) +1(508)945-6522
+
+
+
+
+
+
+

Author Organization

+
+
+
Meditech Facility Author
+
+
+
OID: 1.3.6.1.4.1.24310
+
+
+
+
+

Contact

+
+
+
Work Place
+
+

1 Constitution Way

+

Foxboro, MA

+

05158, USA

+
+
+
+
tel: (Work Place) +1(508)945-6522
+
+
+
+
+
+
+
+
+

Encounter

+
+
+
Identifier
+
0000016868 OID: 8589d447-a267-11ec-81e0-9e7eef92c510
+
+
+
Type
+
inpatient encounter
+
+
+
Date
+
+ From: 03/12/2022, 19:45 +
+
+
+
Location
+
General internal medicine clinic of Meditech Facility Author
+
+
+
+
+
+
+
+
+

Personal relationship

+
+ AMANDA NOEL +
+ + (REFERRING) + + from 03/12/2022 +
+
+
+
+

Contact

+
+
+
+

Personal relationship

+
+ AMANDA PARLATO +
+ + (FAMILY) + + from 03/12/2022 +
+
+
+
+

Contact

+
+
+
+

Personal relationship

+
+ Rickey Roberts +
+ + (OTHER) + + from 03/12/2022 +
+
+
+
+

Contact

+
+
+
+

Personal relationship

+
+ Stephen Newton +
+ + (CONSULTING) + + from 03/12/2022 +
+
+
+

Contact

+
+
+
+
+
+
+
+
+
+

Care Teams

+
+ Patient Care Team +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Team Status: Active
MemberRoleStatusDates
Adam Sheradmitting physicianActiveStart: March 12th, 2022 +
+
MCUTLERattending physicianActiveStart: March 12th, 2022 +
+
DR MEDITECHprimary care physicianActiveStart: March 12th, 2022 +
+
AMANDA NOELREFERRINGActiveStart: March 12th, 2022 +
+
AMANDA PARLATOFAMILYActiveStart: March 12th, 2022 +
+
Rickey RobertsOTHERActiveStart: March 12th, 2022 +
+
Stephen NewtonCONSULTINGActiveStart: March 12th, 2022 +
+
+
+
+
+
+

Reason for Visit

+
No reason for visit information available
+
+
+

History of Present Illness

+
No history of present illness information available
+
+
+

Social History

+
+ Smoking Status +
+ Unknown if ever smoked +
+ Additional Data +
+
+ + + + + + + + + + + + +
Assigned Birth SexMale
Gender Identityunknown
Sexual OrientationDo not know
+
+
+
+
+

Problems

+
+ Active Problems +
+
+ + + + + + + + + + + + + + +
Medical ProblemOnset DateStatus
AnthraxActive
COVID-19Active
+
+
+
+
+

Immunizations

+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
ImmunizationEvent DateNot Given ReasonDose NumberManufacturerLot NumberVaccine Information Statement (VIS) Detail
Date patient received Moderna COVID-19 vaccine?
Date patient received Anthrax vaccine?
Date patient received Rabies vaccine?
anthraxMarch 15th, 2022 7:20am1PFIZER & OTHER CHARACTERSLOT9911Z
RIGRAPID HEART BEAT
anthraxMarch 24th, 2022 9:34am2JOHNSON AND JOHNSONLOT942X
+
+
+
+
+

Procedures

+
No procedure information available
+
+
+

Relevant Diagnostic Tests and/or Laboratory Data

+
No known relevant diagnostic tests and/or laboratory data.
+
+
+

Vital Signs

+
+
+ + + + + + + + + + + + + + + + + + + + + + + +
Vital ReadingResultReference RangeCollection Date/Time
Height65 [in_i]March 14th, 2022 1:48pm
Height165.1 cmMarch 14th, 2022 1:48pm
Weight150.00 [lb_av]March 14th, 2022 1:48pm
Weight68.039 kgMarch 14th, 2022 1:48pm
BMI (Body Mass Index)25.0 kg/m2March 14th, 2022 1:48pm
+
+
+
+
+

Administered Medications

+
+
+ + + + + + + + + + + + + + +
MedicationDoseUnitsRouteDirectionsQtyDaysStart DateEnd DateInstructions
ZIDO100C4 (Zidovudine ) 100 MG TABLET100MGORALQ6HMarch 12th, 2022 7:49pmMarch 12th, 2022 7:49pm
RIFA150C15 (Rifampin ) 150 MG CAPSULE150MGORALQ6HMarch 24th, 2022 9:34amMarch 24th, 2022 9:34am
+
+
+
+
+

Encounters

+
+
+ + + + + + + + + + + +
EncounterLocation(s)Arrival/Admit DateDischarge/Depart DateProvider(s)
Admitted InpatientDot Facility (No ARM)March 12th, 2022 7:45pmMCUTLER
+
+
+
+ + + + + + + + + + + +
Recent DiagnosisOnset Date
Anthrax
+
+
+
+
+

Assessments

+
+
+ + + + + + + + + + + +
DiagnosisOnset DateResolutionStatus
AnthraxActive
+
+
+
+
+

Plan of Treatment

+
+ Future Tests +
+ Future scheduled test information is unavailable + + +
+ Pending Tests +
+ Pending diagnostic test information is unavailable + + +
+ Future Visits +
+ Future appointment information is unavailable + + +
+ Referrals to Other Providers +
+ Referral information is unavailable + + +
+ Future Procedures +
+ Future procedure information is unavailable + + +
+ Future Medications +
+
+ + + + + + + + + + + +
Medication NameStart DateInstructions
Dapsone (Topical) - RXCUI C1741905 (DAPSONE7.5 %) 7.5 % GEL OINTMENTMarch 24th, 2022 9:38am
+
+
+ Patient Instructions +
+ Patient instructions are unavailable + + +
+
+
+
+
+
+

Document maintained by

+
Dr Brenda Hill
+
+
+

Contact

+
+
+
Work Place
+
+

101 Martine St

+

Fall River, MA

+

05125, USA

+
+
+
+
tel: (Work Place) +1(508)947-5477
+
+
+
+
+
+

Document Information

+
+ + + + + + + + + + + +
Document IdentifierDocument Created
1 OID: a3266d94-ce19-11ec-81e1-8465ad080d4105/7/2022, 11:23
+
+
+
+
+ + diff --git a/containers/ecr-viewer/seed-scripts/baseECR/e2e/1c1393a3-2481-45a5-8610-392683aaef4a/CDA_eICR.xml b/containers/ecr-viewer/seed-scripts/baseECR/e2e/1c1393a3-2481-45a5-8610-392683aaef4a/CDA_eICR.xml new file mode 100644 index 0000000000..b1a3dbf16c --- /dev/null +++ b/containers/ecr-viewer/seed-scripts/baseECR/e2e/1c1393a3-2481-45a5-8610-392683aaef4a/CDA_eICR.xml @@ -0,0 +1 @@ +Initial Public Health Case Report1 main streetbrocktonCA90210USCUTLACARETEAMDr Brenda Hill101 Martine StSuite 3Fall RiverMA05125USAREFERRINGNOELAMANDAFAMILYPARLATOAMANDAOTHERRobertsRickeyCONSULTINGNewtonStephenMCUTLERCANTON MEDICAL CENTER OF MASSACHUSETTS-North Canton Facilit5001 North Mount Washington Circle DriveP.O. BOX 555566North CantonMA02740-0001USA2 COMMERCE DRUNIT #12BOSTONMA11111SherAdamCANTON MEDICAL CENTER OF MASSACHUSETTS-North Canton Facilit5001 North Mount Washington Circle DriveP.O. BOX 555566North CantonMA02740-0001USA20 ELM STREETSUITE 101 SECOND FLOOR NORTHBOSTONMA02154MEDITECHDRCANTON MEDICAL CENTER OF MASSACHUSETTS-North Canton Facilit5001 North Mount Washington Circle DriveP.O. BOX 555566North CantonMA02740-0001USA1 Constitution WayApt 2FoxboroMA05158USAMeditech Facility Author1 Constitution WayApt 2FoxboroMA05158USA
Care TeamsPatient Care Team
Team Status: Active
MemberRoleStatusDates
Adam Sheradmitting physicianActiveStart: March 12th, 2022
MCUTLERattending physicianActiveStart: March 12th, 2022
DR MEDITECHprimary care physicianActiveStart: March 12th, 2022
AMANDA NOELREFERRINGActiveStart: March 12th, 2022
AMANDA PARLATOFAMILYActiveStart: March 12th, 2022
Rickey RobertsOTHERActiveStart: March 12th, 2022
Stephen NewtonCONSULTINGActiveStart: March 12th, 2022
admitting physician2 COMMERCE DRUNIT #12BOSTONMA11111SherAdamattending physicianMCUTLERprimary care physician20 ELM STREETSUITE 101 SECOND FLOOR NORTHBOSTONMA02154MEDITECHDRREFERRINGNOELAMANDAFAMILYPARLATOAMANDAOTHERRobertsRickeyCONSULTINGNewtonStephen
Reason for VisitNo reason for visit information available
History of Present IllnessNo history of present illness information available
Social HistorySmoking Status
Unknown if ever smoked
Additional Data
Assigned Birth SexMale
Gender Identityunknown
Sexual OrientationDo not know
ProblemsActive Problems
Medical ProblemOnset DateStatus
AnthraxActive
COVID-19Active
Immunizations
ImmunizationEvent DateNot Given ReasonDose NumberManufacturerLot NumberVaccine Information Statement (VIS) Detail
Date patient received Moderna COVID-19 vaccine?
Date patient received Anthrax vaccine?
Date patient received Rabies vaccine?
anthraxMarch 15th, 2022 7:20am1PFIZER & OTHER CHARACTERSLOT9911Z
RIGRAPID HEART BEAT
anthraxMarch 24th, 2022 9:34am2JOHNSON AND JOHNSONLOT942X
LOT9911ZPFIZER & OTHER CHARACTERSLOT942XJOHNSON AND JOHNSON
ProceduresNo procedure information available
Relevant Diagnostic Tests and/or Laboratory DataNo known relevant diagnostic tests and/or laboratory data.
Vital Signs
Vital ReadingResultReference RangeCollection Date/Time
Height65 [in_i]March 14th, 2022 1:48pm
Height165.1 cmMarch 14th, 2022 1:48pm
Weight150.00 [lb_av]March 14th, 2022 1:48pm
Weight68.039 kgMarch 14th, 2022 1:48pm
BMI (Body Mass Index)25.0 kg/m2March 14th, 2022 1:48pm
Administered Medications
MedicationDoseUnitsRouteDirectionsQtyDaysStart DateEnd DateInstructions
ZIDO100C4 (Zidovudine ) 100 MG TABLET100MGORALQ6HMarch 12th, 2022 7:49pmMarch 12th, 2022 7:49pm
RIFA150C15 (Rifampin ) 150 MG CAPSULE150MGORALQ6HMarch 24th, 2022 9:34amMarch 24th, 2022 9:34am
MCUTLERMCUTLER
Encounters
EncounterLocation(s)Arrival/Admit DateDischarge/Depart DateProvider(s)
Admitted InpatientDot Facility (No ARM)March 12th, 2022 7:45pmMCUTLER

Recent DiagnosisOnset Date
Anthrax
Dot Facility (No ARM)
Assessments
DiagnosisOnset DateResolutionStatus
AnthraxActive
Plan of TreatmentFuture Tests
Future scheduled test information is unavailable
Pending Tests
Pending diagnostic test information is unavailable
Future Visits
Future appointment information is unavailable
Referrals to Other Providers
Referral information is unavailable
Future Procedures
Future procedure information is unavailable
Future Medications
Medication NameStart DateInstructions
Dapsone (Topical) - RXCUI C1741905 (DAPSONE7.5 %) 7.5 % GEL OINTMENTMarch 24th, 2022 9:38am

Patient Instructions
Patient instructions are unavailable
\ No newline at end of file diff --git a/containers/ecr-viewer/seed-scripts/baseECR/e2e/1dd10047-2207-4eac-a993-0f706c88be5d/CDA_RR.html b/containers/ecr-viewer/seed-scripts/baseECR/e2e/1dd10047-2207-4eac-a993-0f706c88be5d/CDA_RR.html new file mode 100644 index 0000000000..dacb07b3f7 --- /dev/null +++ b/containers/ecr-viewer/seed-scripts/baseECR/e2e/1dd10047-2207-4eac-a993-0f706c88be5d/CDA_RR.html @@ -0,0 +1,189 @@ + + + + + + Reportability Response + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
PatientCASTILLO, ABEL
Patient ID(s)10308625 2.16.840.1.113883.3.3316.100 +
+
Contact info1050 CARPENTER ST +
+ EDWARDS, CA 93523-2800, US +
+
Date of BirthApril 15, 2015
SexMale
RaceBlack or African American
EthnicityHispanic or Latino
Preferred LanguageInformation not available
+ + + + + + + + + +
Primary Information Recipient:Physician, ED Billing
Contact info
+ + + + + + +
eICR Identifier: 1dd10047-2207-4eac-a993-0f706c88be5d
+
+
+ Subject: +

Public Health Reporting Communication: one or more conditions are reportable, or may be reportable, to public health.

+
+
+
+ Summary: +

Your organization electronically submitted an initial case report to determine if reporting to public health is needed for a patient.

+

+ No determination of reportability could be made for any condition for "California Department of Public Health". This may be because it is not on the list of reportable conditions for the relevant Public Health Agency, or the information provided at the time of this report does not meet reporting criteria, or not all data needed to confirm reportability were available. +
+

+

+ "Influenza caused by Influenza A virus subtype H5N1 (disorder)" is reportable to "Los Angeles County Department of Public Health". The initial case report was sent to "Los Angeles County Department of Public Health". Additional information may be required for this report. +
+

+

+ "Influenza caused by Influenza A virus subtype H5N1 (disorder)" for "Los Angeles County Department of Public Health" +

+
+
+
+ + diff --git a/containers/ecr-viewer/seed-scripts/baseECR/e2e/1dd10047-2207-4eac-a993-0f706c88be5d/CDA_RR.xml b/containers/ecr-viewer/seed-scripts/baseECR/e2e/1dd10047-2207-4eac-a993-0f706c88be5d/CDA_RR.xml new file mode 100644 index 0000000000..697807309d --- /dev/null +++ b/containers/ecr-viewer/seed-scripts/baseECR/e2e/1dd10047-2207-4eac-a993-0f706c88be5d/CDA_RR.xml @@ -0,0 +1 @@ +Reportability Response1050 CARPENTER STEDWARDSCA93523-2800USABELCASTILLOAPHL | Association of Public Health Laboratories.8515 Georgia Avenue, Suite 700Silver SpringMD20910USED BillingDischargePhysicianPRM- Palmdale Regional Medical Center38600 Medical Center DrivePalmdaleCA93551USAED BillingDischargePhysicianPRM- Palmdale Regional Medical Center38600 Medical Center DrivePalmdaleCA93551USA38600 Medical Center DrivePalmdaleCA93551USScottAWangPhysicianEd staff38600 Medical Center DrivePalmdaleCA93551USAPRM- Palmdale Regional Medical Center38600 Medical Center DrivePalmdaleCA93551USA
.
Subject:Public Health Reporting Communication: one or more conditions are reportable, or may be reportable, to public health.
Public Health Reporting Communication: one or more conditions are reportable, or may be reportable, to public health.
SHALL contain exactly one [1..1] effectiveTime (CONF:1098-7508) such that it/ClinicalDocument[1]/component[1]/structuredBody[1]/component[4]/section[1]/entry[1]/substanceAdministration[1]cda:effectiveTime[@xsi:type = 'IVL_TS']SHALL contain exactly one [1..1] effectiveTime (CONF:1098-7508) such that it/ClinicalDocument[1]/component[1]/structuredBody[1]/component[4]/section[1]/entry[2]/substanceAdministration[1]cda:effectiveTime[@xsi:type = 'IVL_TS']SHALL contain exactly one [1..1] effectiveTime (CONF:1098-7508) such that it/ClinicalDocument[1]/component[1]/structuredBody[1]/component[4]/section[1]/entry[3]/substanceAdministration[1]cda:effectiveTime[@xsi:type = 'IVL_TS']SHALL contain exactly one [1..1] effectiveTime (CONF:1098-7508) such that it/ClinicalDocument[1]/component[1]/structuredBody[1]/component[4]/section[1]/entry[4]/substanceAdministration[1]cda:effectiveTime[@xsi:type = 'IVL_TS']SHALL contain exactly one [1..1] effectiveTime (CONF:1098-7508) such that it/ClinicalDocument[1]/component[1]/structuredBody[1]/component[4]/section[1]/entry[5]/substanceAdministration[1]cda:effectiveTime[@xsi:type = 'IVL_TS']SHALL contain exactly one [1..1] effectiveTime (CONF:1098-7508) such that it/ClinicalDocument[1]/component[1]/structuredBody[1]/component[4]/section[1]/entry[6]/substanceAdministration[1]cda:effectiveTime[@xsi:type = 'IVL_TS']SHALL contain exactly one [1..1] effectiveTime (CONF:1098-7508) such that it/ClinicalDocument[1]/component[1]/structuredBody[1]/component[4]/section[1]/entry[7]/substanceAdministration[1]cda:effectiveTime[@xsi:type = 'IVL_TS']This value SHALL NOT contain [0..0] @nullFlavor (CONF:3284-297)./ClinicalDocument[1]/component[1]/structuredBody[1]/component[3]/section[1]/entry[12]/organizer[1]/component[1]/observation[1]cda:value[not(@nullFlavor)]
.Summary:Your organization electronically submitted an initial case report to determine if reporting to public health is needed for a patient.No determination of reportability could be made for any condition for "California Department of Public Health". This may be because it is not on the list of reportable conditions for the relevant Public Health Agency, or the information provided at the time of this report does not meet reporting criteria, or not all data needed to confirm reportability were available.
"Influenza caused by Influenza A virus subtype H5N1 (disorder)" is reportable to "Los Angeles County Department of Public Health". The initial case report was sent to "Los Angeles County Department of Public Health". Additional information may be required for this report.
"Influenza caused by Influenza A virus subtype H5N1 (disorder)" for "Los Angeles County Department of Public Health"
Your organization electronically submitted an initial case report to determine if reporting to public health is needed for a patient. SacramentoCACalifornia Department of Public HealthSacramentoCACalifornia Department of Public HealthLos Angeles County Department of Public HealthLos Angeles County Department of Public HealthCoughFever (Temperature > 37.8 °C [100 °F])
\ No newline at end of file diff --git a/containers/ecr-viewer/seed-scripts/baseECR/e2e/1dd10047-2207-4eac-a993-0f706c88be5d/CDA_eICR.html b/containers/ecr-viewer/seed-scripts/baseECR/e2e/1dd10047-2207-4eac-a993-0f706c88be5d/CDA_eICR.html new file mode 100644 index 0000000000..4ad7f54378 --- /dev/null +++ b/containers/ecr-viewer/seed-scripts/baseECR/e2e/1dd10047-2207-4eac-a993-0f706c88be5d/CDA_eICR.html @@ -0,0 +1,1839 @@ + + + + + + + Initial Public Health Case Report + + + + + + + +
+ +

Initial Public Health Case Report

+
+
+
+
+
ABEL CASTILLO
+
+
Patient Identifiers
+
+
10308625 OID: 2.16.840.1.113883.3.3316.100
+
+
+
+
+
+

About

+
+
+
Date of Birth
+
04/15/2015
+
+
+
Sex
+
Male
+
+
+
Race
+
Black or African American
+
+
+
Ethnicity
+
Hispanic or Latino
+
+
+
Preferred Language
+
+ Information not available +
+
+
+
+
+

Contact

+
+
+
+
+

1050 CARPENTER ST

+

EDWARDS, CA

+

93523-2800, US

+
+
+
+
tel: (Primary Home) (818)419-5968
+
+
+
email: MELLY.C.A.16@GMAIL.COM
+
+
+
+
+
+
+
+
+

Author

+
+
+
Time:
+
05/13/2022, 07:25
+
+
+
ED Billing Physician
+
+
+
NPI (US)
+
+
+
+
+

Contact

+
+
+
+
+
+
+
+
+
+

Encounter

+
+
+
Identifier
+
Encounter/65117030/_history/22 OID: 2.16.840.1.113883
+
+
+
Type
+
Emergency
+
+
+
Date
+
+ From: 05/13/2022, 07:25 +
+
+ To: 05/13/2022, 09:57 +
+
+
+
Location
+
Healthcare Provider of PRM- Palmdale Regional Medical Center
+
+
+
+
+
+
+
+
+
+
+
+

PROBLEMS - DIAGNOSES

+
+
+ + + + + + + + + + + +
Problem or DiagnosisProblem Status
+ Unknown + + Active +
+
+
+
+
+

ENCOUNTERS

+
+
+ + + + + + + + + + + +
Encounter ReasonDate of Encounter
+ Emergency + + 20220513072500+0000 +
+
+
+
+
+

RESULTS

+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Lab Test NameLab Test Result ValueLab Test Result Date
+ Ur Mucous + + NONE /LPF + + 2022-05-13T07:47:00.000Z +
+ Ur Squam Epithelial + + 1|http://unitsofmeasure.org|/HPF + + 2022-05-13T07:47:00.000Z +
+ Ur WBC + + 1|http://unitsofmeasure.org|/HPF + + 2022-05-13T07:47:00.000Z +
+ Ur RBC + + 2|http://unitsofmeasure.org|/HPF + + 2022-05-13T07:47:00.000Z +
+ Ur Bacteria + + None Seen /HPF + + 2022-05-13T07:47:00.000Z +
+ Symptomatic as defined by CDC? + + No + + 2022-05-13T07:43:00.000Z +
+ In ICU? + + No + + 2022-05-13T07:43:00.000Z +
+ Group care resident? + + No + + 2022-05-13T07:43:00.000Z +
+ First test? + + UNK + + 2022-05-13T07:43:00.000Z +
+ Employed in healthcare? + + No + + 2022-05-13T07:43:00.000Z +
+ Date of onset? + + UNK + + 2022-05-13T07:43:00.000Z +
+ SARS-CoV-2 Interp: + + Unknown + + 2022-05-13T07:43:00.000Z +
+ SARS-CoV-2 PCR + + Negative + + 2022-05-13T07:43:00.000Z +
+ Flu B PCR + + Not Detected + + 2022-05-13T07:43:00.000Z +
+ Flu A PCR + + Not Detected + + 2022-05-13T07:43:00.000Z +
+ Ur pH + + 6.0 + + 2022-05-13T06:52:00.000Z +
+ Ur Spec Grav + + 1.020 mg/dL + + 2022-05-13T06:52:00.000Z +
+ Ur Urobilinogen + + 0.2 EU/dL + + 2022-05-13T06:52:00.000Z +
+ Ur Blood + + Trace-lysed + + 2022-05-13T06:52:00.000Z +
+ Ur Bili + + Negative + + 2022-05-13T06:52:00.000Z +
+ Ur Leuk Est + + Negative + + 2022-05-13T06:52:00.000Z +
+ Ur Protein + + Negative mg/dL + + 2022-05-13T06:52:00.000Z +
+ Ur Nitrite + + Negative + + 2022-05-13T06:52:00.000Z +
+ Ur Ketones + + Negative mg/dL + + 2022-05-13T06:52:00.000Z +
+ UR Glucose + + Negative mg/dL + + 2022-05-13T06:52:00.000Z +
+
+
+
+
+

Medications Administered

+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Medication NameMedication Start Date
+ acetaminophen (Tylenol Infant's 160 mg/5 mL oral suspension) + + 20220513094400+0000 +
+ ibuprofen (ibuprofen 100 mg/5 mL oral suspension) + + 20220513094400+0000 +
+ azithromycin (azithromycin 200 mg/5 mL oral liquid) + + 20220513094200+0000 +
+ prednisoLONE (Orapred 15 mg/5 mL oral liquid) + + 20220513094300+0000 +
+ acetaminophen (Tylenol) + + 20220513090400+0000 +
+ azithromycin + + 20220513090200+0000 +
+ ibuprofen + + 20220513100000+0000 +
+
+
+
+
+

IMMUNIZATIONS

+
No ImmunizationInformation
+
+
+

SOCIAL HISTORY

+
+
+ + + + + + + + + + + + + + + + + +
Social History ObservationSocial History Observation Result
+ Birth Sex + + M +
+ Travel History + + COVID- 19 Testing Reason-Screening +
+ Travel History + + Pregnancy Status-Not applicable (qualifier value) +
+
+
+
+
+

Plan of Treatment

+
No Plan Of Treatment Information
+
+
+

History of Present Illness

+
+
+ + + + + + + + + + + + + + + + + +
Narrative Text
+ Fever +
+ Cough +
+ Encounter for medical screening examination +
+
+
+
+
+

Reason For Visit

+
+
+ + + + + + + + + + + +
text
+ FEVER +
+
+
+
+
+
+
+
+

Document maintained by

+
PRM- Palmdale Regional Medical Center
+
+
+

Contact

+
+
+
+
+

38600 Medical Center Drive

+

Palmdale, CA

+

93551, USA

+
+
+
+
tel: (Work Place) (661)382-5000
+
+
+
+
+
+

Document Information

+
+ + + + + + + + + + + +
Document IdentifierDocument Created
OID: 1dd10047-2207-4eac-a993-0f706c88be5d05/14/2022, 12:56
+
+
+
+
+ + diff --git a/containers/ecr-viewer/seed-scripts/baseECR/e2e/1dd10047-2207-4eac-a993-0f706c88be5d/CDA_eICR.xml b/containers/ecr-viewer/seed-scripts/baseECR/e2e/1dd10047-2207-4eac-a993-0f706c88be5d/CDA_eICR.xml new file mode 100644 index 0000000000..dfd9197aac --- /dev/null +++ b/containers/ecr-viewer/seed-scripts/baseECR/e2e/1dd10047-2207-4eac-a993-0f706c88be5d/CDA_eICR.xml @@ -0,0 +1 @@ +Initial Public Health Case Report1050 CARPENTER STEDWARDSCA93523-2800USABELCASTILLOPRM- Palmdale Regional Medical Center38600 Medical Center DrivePalmdaleCA93551USAED BillingDischargePhysicianPRM- Palmdale Regional Medical Center38600 Medical Center DrivePalmdaleCA93551USA38600 Medical Center DrivePalmdaleCA93551USScottAWangPhysicianEd staff38600 Medical Center DrivePalmdaleCA93551USAPRM- Palmdale Regional Medical Center38600 Medical Center DrivePalmdaleCA93551USA
PROBLEMS - DIAGNOSES
Problem or DiagnosisProblem Status
UnknownActive
ENCOUNTERS
Encounter ReasonDate of Encounter
Emergency20220513072500+0000
RESULTS
Lab Test NameLab Test Result ValueLab Test Result Date
Ur MucousNONE /LPF2022-05-13T07:47:00.000Z
Ur Squam Epithelial1|http://unitsofmeasure.org|/HPF2022-05-13T07:47:00.000Z
Ur WBC1|http://unitsofmeasure.org|/HPF2022-05-13T07:47:00.000Z
Ur RBC2|http://unitsofmeasure.org|/HPF2022-05-13T07:47:00.000Z
Ur BacteriaNone Seen /HPF2022-05-13T07:47:00.000Z
Symptomatic as defined by CDC?No2022-05-13T07:43:00.000Z
In ICU?No2022-05-13T07:43:00.000Z
Group care resident?No2022-05-13T07:43:00.000Z
First test?UNK2022-05-13T07:43:00.000Z
Employed in healthcare?No2022-05-13T07:43:00.000Z
Date of onset?UNK2022-05-13T07:43:00.000Z
SARS-CoV-2 Interp:Unknown2022-05-13T07:43:00.000Z
SARS-CoV-2 PCRNegative2022-05-13T07:43:00.000Z
Flu B PCRNot Detected2022-05-13T07:43:00.000Z
Flu A PCRNot Detected2022-05-13T07:43:00.000Z
Ur pH6.02022-05-13T06:52:00.000Z
Ur Spec Grav1.020 mg/dL2022-05-13T06:52:00.000Z
Ur Urobilinogen0.2 EU/dL2022-05-13T06:52:00.000Z
Ur BloodTrace-lysed2022-05-13T06:52:00.000Z
Ur BiliNegative2022-05-13T06:52:00.000Z
Ur Leuk EstNegative2022-05-13T06:52:00.000Z
Ur ProteinNegative mg/dL2022-05-13T06:52:00.000Z
Ur NitriteNegative2022-05-13T06:52:00.000Z
Ur KetonesNegative mg/dL2022-05-13T06:52:00.000Z
UR GlucoseNegative mg/dL2022-05-13T06:52:00.000Z
NONE /LPFUNKUNKTrace-lysed
Medications Administered
Medication NameMedication Start Date
acetaminophen (Tylenol Infant's 160 mg/5 mL oral suspension)20220513094400+0000
ibuprofen (ibuprofen 100 mg/5 mL oral suspension)20220513094400+0000
azithromycin (azithromycin 200 mg/5 mL oral liquid)20220513094200+0000
prednisoLONE (Orapred 15 mg/5 mL oral liquid)20220513094300+0000
acetaminophen (Tylenol)20220513090400+0000
azithromycin20220513090200+0000
ibuprofen20220513100000+0000
IMMUNIZATIONSNo ImmunizationInformation
SOCIAL HISTORY
Social History ObservationSocial History Observation Result
Birth SexM
Travel HistoryCOVID- 19 Testing Reason-Screening
Travel HistoryPregnancy Status-Not applicable (qualifier value)
COVID- 19 Testing Reason-ScreeningPregnancy Status-Not applicable (qualifier value)
Plan of TreatmentNo Plan Of Treatment Information
History of Present Illness
Narrative Text
Fever
Cough
Encounter for medical screening examination
Reason For Visit
text
FEVER
\ No newline at end of file diff --git a/containers/ecr-viewer/seed-scripts/baseECR/e2e/2ff3119d-b933-4236-8746-53726e291449/CDA_RR.html b/containers/ecr-viewer/seed-scripts/baseECR/e2e/2ff3119d-b933-4236-8746-53726e291449/CDA_RR.html new file mode 100644 index 0000000000..2d5889f9a4 --- /dev/null +++ b/containers/ecr-viewer/seed-scripts/baseECR/e2e/2ff3119d-b933-4236-8746-53726e291449/CDA_RR.html @@ -0,0 +1,202 @@ + + + + + + Reportability Response + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
PatientMORGAN, BERTRAND
Patient ID(s)10091101 2.16.840.1.113883.3.3316.100 +
+
Contact info20624 GEORGETOWN ST +
+ CALIFORNIA CITY, CA 93505-2924, US +
+
Date of BirthFebruary 10, 1956
SexMale
RaceBlack or African American
EthnicityNot Hispanic or Latino
Preferred LanguageInformation not available
+ + + + + + + + + +
Primary Information Recipient:Physician, ED Billing
Contact info
+ + + + + + +
eICR Identifier: 3f81a47c-251a-4fdd-9318-a54779e25f2b
+
+
+ Subject: +

Public Health Reporting Communication: one or more conditions are reportable, or may be reportable, to public health.

+
+
+
+ Summary: +

Your organization electronically submitted an initial case report to determine if reporting to public health is needed for a patient.

+

+ No determination of reportability could be made for any condition for "California Department of Public Health". This may be because it is not on the list of reportable conditions for the relevant Public Health Agency, or the information provided at the time of this report does not meet reporting criteria, or not all data needed to confirm reportability were available. +
+

+

+ "Disease caused by severe acute respiratory syndrome coronavirus 2 (disorder)" is reportable to "Los Angeles County Department of Public Health". The initial case report was sent to "Los Angeles County Department of Public Health". Additional information may be required for this report. +
+

+

+ "Disease caused by severe acute respiratory syndrome coronavirus 2 (disorder)" for "Los Angeles County Department of Public Health" +

+

+ Reporting is required immediately. Reporting to this Public Health Agency is based on "Provider facility address" +
+

+

+ > CDC COVID-19 webpage (Information only) +
+
+
> Los Angeles County Department of Public Health Office of the Chief Medical Informatics Officer IRIS System 241 North Figueroa Street Los Angeles, CA 90012 213-288-7696 (Information only) +
+
+
+

+
+
+
+ + diff --git a/containers/ecr-viewer/seed-scripts/baseECR/e2e/2ff3119d-b933-4236-8746-53726e291449/CDA_RR.xml b/containers/ecr-viewer/seed-scripts/baseECR/e2e/2ff3119d-b933-4236-8746-53726e291449/CDA_RR.xml new file mode 100644 index 0000000000..13c5cae1d7 --- /dev/null +++ b/containers/ecr-viewer/seed-scripts/baseECR/e2e/2ff3119d-b933-4236-8746-53726e291449/CDA_RR.xml @@ -0,0 +1 @@ +Reportability Response20624 GEORGETOWN STCALIFORNIA CITYCA93505-2924USBERTRANDMORGANAPHL | Association of Public Health Laboratories.8515 Georgia Avenue, Suite 700Silver SpringMD20910USED BillingDischargePhysicianPRM- Palmdale Regional Medical Center38600 Medical Center DrivePalmdaleCA93551USAED BillingDischargePhysicianPRM- Palmdale Regional Medical Center38600 Medical Center DrivePalmdaleCA93551USA38600 MEDICAL CENTER DRPALMDALECA935510000USLeonardHermanPhysicianEd staff38600 Medical Center DrivePalmdaleCA93551USAPRM- Palmdale Regional Medical Center38600 Medical Center DrivePalmdaleCA93551USA
.
Subject:Public Health Reporting Communication: one or more conditions are reportable, or may be reportable, to public health.
Public Health Reporting Communication: one or more conditions are reportable, or may be reportable, to public health.
SHALL contain exactly one [1..1] effectiveTime (CONF:1098-7508) such that it/ClinicalDocument[1]/component[1]/structuredBody[1]/component[4]/section[1]/entry[1]/substanceAdministration[1]cda:effectiveTime[@xsi:type = 'IVL_TS']
.Summary:Your organization electronically submitted an initial case report to determine if reporting to public health is needed for a patient.No determination of reportability could be made for any condition for "California Department of Public Health". This may be because it is not on the list of reportable conditions for the relevant Public Health Agency, or the information provided at the time of this report does not meet reporting criteria, or not all data needed to confirm reportability were available.
"Disease caused by severe acute respiratory syndrome coronavirus 2 (disorder)" is reportable to "Los Angeles County Department of Public Health". The initial case report was sent to "Los Angeles County Department of Public Health". Additional information may be required for this report.
"Disease caused by severe acute respiratory syndrome coronavirus 2 (disorder)" for "Los Angeles County Department of Public Health" Reporting is required immediately. Reporting to this Public Health Agency is based on "Provider facility address"
> CDC COVID-19 webpage (Information only)

> Los Angeles County Department of Public Health Office of the Chief Medical Informatics Officer IRIS System 241 North Figueroa Street Los Angeles, CA 90012 213-288-7696 (Information only)

Your organization electronically submitted an initial case report to determine if reporting to public health is needed for a patient. SacramentoCACalifornia Department of Public HealthSacramentoCACalifornia Department of Public HealthLos Angeles County Department of Public HealthLos Angeles County Department of Public HealthCOVID-19 (as a diagnosis or active problem)CDC COVID-19 webpageLos Angeles County Department of Public Health Office of the Chief Medical Informatics Officer IRIS System 241 North Figueroa Street Los Angeles, CA 90012 213-288-7696
\ No newline at end of file diff --git a/containers/ecr-viewer/seed-scripts/baseECR/e2e/2ff3119d-b933-4236-8746-53726e291449/CDA_eICR.html b/containers/ecr-viewer/seed-scripts/baseECR/e2e/2ff3119d-b933-4236-8746-53726e291449/CDA_eICR.html new file mode 100644 index 0000000000..fe069d5613 --- /dev/null +++ b/containers/ecr-viewer/seed-scripts/baseECR/e2e/2ff3119d-b933-4236-8746-53726e291449/CDA_eICR.html @@ -0,0 +1,1587 @@ + + + + + + + Initial Public Health Case Report + + + + + + + +
+ +

Initial Public Health Case Report

+
+
+
+
+
BERTRAND MORGAN
+
+
Patient Identifiers
+
+
10091101 OID: 2.16.840.1.113883.3.3316.100
+
+
+
+
+
+

About

+
+
+
Date of Birth
+
02/10/1956
+
+
+
Sex
+
Male
+
+
+
Race
+
Black or African American
+
+
+
Ethnicity
+
Not Hispanic or Latino
+
+
+
Preferred Language
+
+ Information not available +
+
+
+
+
+

Contact

+
+
+
+
+

20624 GEORGETOWN ST

+

CALIFORNIA CITY, CA

+

93505-2924, US

+
+
+
+
tel: (Primary Home) (310)430-0637
+
+
+
+
+
+
+
+
+

Author

+
+
+
Time:
+
05/21/2022, 20:16
+
+
+
ED Billing Physician
+
+
+
NPI (US)
+
+
+
+
+

Contact

+
+
+
+
+
+
+
+
+
+

Encounter

+
+
+
Identifier
+
Encounter/65192057/_history/23 OID: 2.16.840.1.113883
+
+
+
Type
+
Emergency
+
+
+
Date
+
+ From: 05/21/2022, 20:16 +
+
+ To: 05/22/2022, 00:37 +
+
+
+
Location
+
Healthcare Provider of PRM- Palmdale Regional Medical Center
+
+
+
+
+
+
+
+
+
+
+
+

PROBLEMS - DIAGNOSES

+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Problem or DiagnosisProblem Status
+ At risk of pressure sore (finding) + + Active +
+ Acute pain + + Active +
+ Sore throat symptom (finding) + + Active +
+ Stomach problem (finding) + + Active +
+ Shoulder pain, right + + Active +
+ At risk for falls + + Active +
+ Hypertension + + Active +
+
+
+
+
+

ENCOUNTERS

+
+
+ + + + + + + + + + + +
Encounter ReasonDate of Encounter
+ Emergency + + 20220521201600+0000 +
+
+
+
+
+

RESULTS

+
No Lab Results Information
+
+
+

Medications Administered

+
+
+ + + + + + + + + + + +
Medication NameMedication Start Date
+ albuterol (Ventolin HFA 90 mcg/inh inhalation aerosol) + + 20220521235300+0000 +
+
+
+
+
+

IMMUNIZATIONS

+
No ImmunizationInformation
+
+
+

SOCIAL HISTORY

+
+
+ + + + + + + + + + + + + + +
Social History ObservationSocial History Observation Result
+ Birth Sex + + M +
+ Travel History + + Pregnancy Status-Not applicable (qualifier value) +
+
+
+
+
+

Plan of Treatment

+
No Plan Of Treatment Information
+
+
+

History of Present Illness

+
+
+ + + + + + + + + + + + + + +
Narrative Text
+ Encounter for medical screening examination +
+ Acute COVID-19 +
+
+
+
+
+

Reason For Visit

+
+
+ + + + + + + + + + + +
text
+ COUGH +
+
+
+
+
+
+
+
+

Document maintained by

+
PRM- Palmdale Regional Medical Center
+
+
+

Contact

+
+
+
+
+

38600 Medical Center Drive

+

Palmdale, CA

+

93551, USA

+
+
+
+
tel: (Work Place) (661)382-5000
+
+
+
+
+
+

Document Information

+
+ + + + + + + + + + + +
Document IdentifierDocument Created
OID: 3f81a47c-251a-4fdd-9318-a54779e25f2b05/23/2022, 19:17
+
+
+
+
+ + diff --git a/containers/ecr-viewer/seed-scripts/baseECR/e2e/2ff3119d-b933-4236-8746-53726e291449/CDA_eICR.xml b/containers/ecr-viewer/seed-scripts/baseECR/e2e/2ff3119d-b933-4236-8746-53726e291449/CDA_eICR.xml new file mode 100644 index 0000000000..f6fbba6dde --- /dev/null +++ b/containers/ecr-viewer/seed-scripts/baseECR/e2e/2ff3119d-b933-4236-8746-53726e291449/CDA_eICR.xml @@ -0,0 +1 @@ +Initial Public Health Case Report20624 GEORGETOWN STCALIFORNIA CITYCA93505-2924USBERTRANDMORGANPRM- Palmdale Regional Medical Center38600 Medical Center DrivePalmdaleCA93551USAED BillingDischargePhysicianPRM- Palmdale Regional Medical Center38600 Medical Center DrivePalmdaleCA93551USA38600 MEDICAL CENTER DRPALMDALECA935510000USLeonardHermanPhysicianEd staff38600 Medical Center DrivePalmdaleCA93551USAPRM- Palmdale Regional Medical Center38600 Medical Center DrivePalmdaleCA93551USA
PROBLEMS - DIAGNOSES
Problem or DiagnosisProblem Status
At risk of pressure sore (finding)Active
Acute painActive
Sore throat symptom (finding)Active
Stomach problem (finding)Active
Shoulder pain, rightActive
At risk for fallsActive
HypertensionActive
ENCOUNTERS
Encounter ReasonDate of Encounter
Emergency20220521201600+0000
RESULTSNo Lab Results Information
Medications Administered
Medication NameMedication Start Date
albuterol (Ventolin HFA 90 mcg/inh inhalation aerosol)20220521235300+0000
IMMUNIZATIONSNo ImmunizationInformation
SOCIAL HISTORY
Social History ObservationSocial History Observation Result
Birth SexM
Travel HistoryPregnancy Status-Not applicable (qualifier value)
Pregnancy Status-Not applicable (qualifier value)
Plan of TreatmentNo Plan Of Treatment Information
History of Present Illness
Narrative Text
Encounter for medical screening examination
Acute COVID-19
Reason For Visit
text
COUGH
\ No newline at end of file diff --git a/containers/ecr-viewer/seed-scripts/create-seed-data.py b/containers/ecr-viewer/seed-scripts/create-seed-data.py index 0e7d20cf2c..058b14b8eb 100644 --- a/containers/ecr-viewer/seed-scripts/create-seed-data.py +++ b/containers/ecr-viewer/seed-scripts/create-seed-data.py @@ -30,7 +30,8 @@ def _process_files(args): :return: A list of fhir bundles """ print("Converting files...") - subfolders = ["LA"] + subfolders_raw = os.getenv("SEED_DATA_DIRECTORIES") + subfolders = subfolders_raw.split(",") # Holds all of the rquests we are going to make requests = [] diff --git a/containers/ecr-viewer/seed-scripts/docker-compose-seed.yaml b/containers/ecr-viewer/seed-scripts/docker-compose-seed.yaml index 568abeedc5..12e87872a1 100644 --- a/containers/ecr-viewer/seed-scripts/docker-compose-seed.yaml +++ b/containers/ecr-viewer/seed-scripts/docker-compose-seed.yaml @@ -76,3 +76,4 @@ services: - ./baseECR:/code/baseECR environment: - CONFIG_NAME=${CONFIG_NAME} + - SEED_DATA_DIRECTORIES=${SEED_DATA_DIRECTORIES:-LA} diff --git a/containers/ecr-viewer/src/app/tests/components/__snapshots__/ActiveProblems.test.tsx.snap b/containers/ecr-viewer/src/app/tests/components/__snapshots__/ActiveProblems.test.tsx.snap index 8873fedd4f..cd4d3f56e5 100644 --- a/containers/ecr-viewer/src/app/tests/components/__snapshots__/ActiveProblems.test.tsx.snap +++ b/containers/ecr-viewer/src/app/tests/components/__snapshots__/ActiveProblems.test.tsx.snap @@ -61,6 +61,7 @@ exports[`Active Problems Table should match snapshot 1`] = ` aria-controls="hidden-comment-3" aria-expanded="false" class="usa-button usa-button--unstyled" + data-test-id="comment-button" data-testid="button" type="button" > diff --git a/containers/ecr-viewer/src/app/tests/components/__snapshots__/LabInfo.test.tsx.snap b/containers/ecr-viewer/src/app/tests/components/__snapshots__/LabInfo.test.tsx.snap index 0ac29fbaa1..daf8f5b30e 100644 --- a/containers/ecr-viewer/src/app/tests/components/__snapshots__/LabInfo.test.tsx.snap +++ b/containers/ecr-viewer/src/app/tests/components/__snapshots__/LabInfo.test.tsx.snap @@ -1087,6 +1087,7 @@ NASHVILLE, TN aria-controls="hidden-comment-4" aria-expanded="false" class="usa-button usa-button--unstyled" + data-test-id="comment-button" data-testid="button" type="button" > diff --git a/containers/ecr-viewer/src/app/view-data/components/EvaluateTable.tsx b/containers/ecr-viewer/src/app/view-data/components/EvaluateTable.tsx index 7eb58f729e..630f92a3c5 100644 --- a/containers/ecr-viewer/src/app/view-data/components/EvaluateTable.tsx +++ b/containers/ecr-viewer/src/app/view-data/components/EvaluateTable.tsx @@ -179,6 +179,7 @@ const BuildRow: React.FC = ({ onClick={() => setHiddenComment(!hiddenComment)} aria-controls={`hidden-comment-${index}`} aria-expanded={!hiddenComment} + data-test-id="comment-button" > {hiddenComment ? "View" : "Hide"} {column.hiddenBaseText}