Importing a new patient chart via CCDA doesn't seem to work

Situation
Adding a new patient from a CCDA (XML) file exported from another system. Importing a new patient chart via CCDA doesn’t seem to work. After Misc…->New Doc, the document imports but it doesn’t create a new patient. Nor can I find any way of getting the summary information from the CCDA into the chart.

From example, information such as that below doesn’t get imported.

ALLERGIES, ADVERSE REACTIONS, ALERTS
Substance Reaction Status Effective Date
Codeine active
ASSESSMENT
No Assessment Section Information
ENCOUNTERS
Encounter Diagnosis Location Date
Fatty (change of) liver, not elsewhere classified(K76.0)
Functional dyspepsia(K30)
Iron deficiency anemia, unspecified(D50.9)

OpenEMR Version
I’m using OpenEMR version: 5.0.1

Browser:
I’m using: Chrome 67.0.3396.62 (Official Build) (64-bit)

Operating System
I’m using: MacOS High Sierra 10.13.4 for the client
AWS for the host/server t2.medium Ubuntu 16.04.4 LTS

Hi @Ralf_Lukner ,

See here for how to configure for importing CCDAs:
openemr/README.md at master · openemr/openemr · GitHub

-brady

I’m having a similar problem. I did my best to follow Dr. Miller’s instructions but I still no luck importing a CCDA as a new patient. I have a fresh install of OEMR 5.0.1(3) on an Ubuntu 16.04 server using Firefox on macOS client.
Did Dr. Miller’s post resolve your problem? Thanks!

dh

I successfully completed the following steps for Ubuntu Setup
Because node is not already installed then I did the following:

cd ~
apt-get remove --purge nodejs npm // Ensures clean install and will allow chance to cleanup.
curl -sL https://deb.nodesource.com/setup_9.x | sudo -E bash -
sudo apt-get install -y nodejs.

The above was successful, but I was not able to perform the following action (the next step):

Navigate to: openemr/ccdaservice and run the following to install requires dependencies.

sudo npm install --production

Because the openemr/ccdaservice directory is in the OpenEMR docker container (I assume since I do not know of any other location it might be) Here is what I tried …
ubuntu@ip-10-0-1-107:~$ sudo bash
root@ip-10-0-1-107:~# OE_INSTANCE=$(docker ps | grep _openemr | cut -f 1 -d " ")
root@ip-10-0-1-107:~# docker exec -it $OE_INSTANCE sh
/var/www/localhost/htdocs/openemr # cd ccdaservice/
/var/www/localhost/htdocs/openemr/ccdaservice # npm install --production
sh: npm: not found

What am I doing wrong?