You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The form_clinical_notes table on both web12 and web13 contains duplicate entries for various descriptions.
To Reproduce
Steps to reproduce the behavior:
Log into web12 or web13 OpenEMR database.
Navigate to the SQL Query section.
Execute the following query:
SELECT description, COUNT( * )
FROM form_clinical_notes
GROUP BY description
HAVING COUNT( * ) > 1;
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
The text was updated successfully, but these errors were encountered:
Describe the bug
The form_clinical_notes table on both web12 and web13 contains duplicate entries for various descriptions.
To Reproduce
Steps to reproduce the behavior:
SELECT description, COUNT( * )
FROM form_clinical_notes
GROUP BY description
HAVING COUNT( * ) > 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
The text was updated successfully, but these errors were encountered: