Added Patient Problem List to Summary Section

tekknogenius wrote on Sunday, March 20, 2005:

I added a patient Problem List to the patient Summary Page. It located in the lower left pane. Two files changed (stats.php, stats_full.php), one added (problems.php) in the interface/patient_file/summary directory.

sunsetsystems wrote on Monday, April 18, 2005:

I have a client who wants encounters associated with problems.  This makes a lot of sense to me; why have a list of problems where you cannot see which encounters were related to them, or vice versa?

OpenEMR stores the problems, medications and allergies in the "lists" table.  It seems reasonable to also associate encounters with medications and allergies.

So what I’m thinking is to create a new table that cross-references the form_encounter table (or possibly the forms table) with the lists table.  In this way each problem/medication/allergy could be linked with any number of encounters, and each encounter with any number of problems (or medications or allergies).

This new table (let’s call it encounter_problems) might have the following attributes:

* problem_id: id from the lists table
* encounter_id: id from the form_encounters table
* status: one of "first occurrence", "new occurrence of old problem", or "end of problem".

Then, we can implement a new document (HTML page, which might be a pop-up window) that lets you see all problems associated with an encounter, or all encounters associated with a problem, or enter a new problem, or perform other related actions.

Comments?

– Rod <rod at sunsetsystems dot com>

andres_paglayan wrote on Monday, April 18, 2005:

I am working in ‘permanent forms’
these are meant to remain and being shown from the summary.
Including things such as vaccinations, problem list and sort of quick panel where the physician can see when was the last (and previous) pap, lab, etc,
We can work on some standard subroutine which when added to the regular form save process can store some information in the permanent forms.

sunsetsystems wrote on Tuesday, April 19, 2005:

Why don’t you send me some details and we’ll talk about it some more.  It will be best if we do not trip over each other.   :slight_smile:

– Rod <rod at sunsetsystems dot com>

tekknogenius wrote on Tuesday, April 19, 2005:

The problems list was orginally meant to list a patients ongoing problems (high blood pressue, diabetic, arthritis…) in order to get a quick at a glance general health of the patient. That’s why it is on the summary page.

Your ideas are good though. I guess hearing from other practioners would be helpful to make sure the new functionality is useful. Though it sounds good to me.