Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Duplicate Clinical Notes in form_clinical_notes Table on 11k patients Instances #28

Open
KeerthikaSunchu opened this issue Oct 2, 2024 · 0 comments
Assignees

Comments

@KeerthikaSunchu
Copy link
Collaborator

KeerthikaSunchu commented Oct 2, 2024

Describe the bug

The form_clinical_notes table on both web12 and web13 contains duplicate entries for various descriptions.

To Reproduce

image

image

Steps to reproduce the behavior:

  1. Log into web12 or web13 OpenEMR database.
  2. Navigate to the SQL Query section.
  3. Execute the following query:
    SELECT description, COUNT( * )
    FROM form_clinical_notes
    GROUP BY description
    HAVING COUNT( * ) > 1;
  4. Observe multiple records showing the same description with counts greater than 1.

Expected behavior

Each clinical note's description should be unique, or the duplicates should be justified by different patient IDs or encounters. There should be no unintended duplication of note descriptions for the same patient encounter.

Client configuration

  • OpenEMR version: 7.0.2
# for free to join this conversation on GitHub. Already have an account? # to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants