Added Support for Fully Integrated Telehealth Modules; see Lifemesh Telehealth Module for the first integrated third party Telehealth Module! (by Sherwin Gaddis)
Patient Portal improvements (by Jerry Padgett)
Security fixes (fixes by Brady Miller)
PHP8 bug fixes (fixes by Jerry Padgett and Stephen Waite)
Patient finder fix (fix by Stephen Waite)
Billing fixes (fixes by Stephen Waite)
EDI history fixes (fixes by Stephen Waite)
Fee sheet fix (fix by Stephen Waite)
Billing daysheet fix (fix by Stephen Waite)
Collection report fix (fix by Stephen Waite)
Demographics fixes (fixes by Stephen Waite)
Vitals form fix (fix by Jerry Padgett)
Unique installation ID fix (fix by Brady Miller)
Code types fix (fix by Stephen Waite)
Pnote fix (fix by Jerry Padgett)
Added setting to turn on/off input of onset/hospitalization date for each visit (by Rod Roark)
For all those that use the portal feature, we’ve done a major change in navigation. Mainly we’ve moved the side bar navigation to the top of the views. This should give a better responsive experience on tablets and phones. Furthermore, Documents navigation has also improved.
I plan many more new improvements in our next patch.
In the patch instructions there is a list of files you can check to see if you have modified files:
This is the 3rd patch and also includes changes from prior patches. Please read through the list of modified files to ensure you haven’t customized any of these, since this will copy over this.
If you have modified any of the OpenEMR core files you will have to compare your changes with the modified files and apply your changes on top of that. To avoid having to do this in the future you should try bundling your changes into a module. If you need to modify a core file you should put up an issue on github asking to have a OpenEMR event added to the system that you can connect to instead of having to modify core files.
I just installed 3 instance of the OpenEMR (dev,test,stage) and am testing with the patch 3. Feels good and great at first look.
@juggernautsei Only had a disappintment with Lifemesh. I went to the website to get trial license but there was none. I couldnt find a demo of the system either. I would not want to subscribe to something i dont know about. Appreciate your help and advise.
Hello, @murugappan We offered a free trial during the pilot period, which ended in August. But we have heard you and understand that it will be helpful for you to experience firsthand how Lifemesh Telehealth works, in your hands. That’s why we’ve created a coupon that will credit your initial order $99.00.
Please use coupon code LIFEMESH99.
This coupon code may be used by any practice looking to evaluate Lifemesh Telehealth.
Hello Stephen,
I see that you worked on the Messaging section of the EMR. I am not sure if I am doing something wrong, but I cannot sort the columns based on type, date, sender, etc. The (?) help popup mentions the ability to sort, but there are no arrows to sort those columns. Is there something I need to enable?
I really need to be able to see “URGENT” messages at the top of the column as it only defaults to “Date”.
Additionally, the listing always reverts to the top of the listing after viewing a message, even though I may be 2-3 pages into the list.
Nevermind. I fixed it.
Here is the corrected messages.php
Specifically lines 562, 568, 571 required the following after the href=…
<img src="…/…/…/public/images/sortdown.gif" border=0
There was no link to the gif for the sortup and sortdown arrow, therefore, nothing to click upon to change the sort order.
How do I get this included in the next patch or main tar.gz?
Mark
Thank you… also: there is another bug in messages.php.
When clicking on the document linked to a message, it will not display/pull the document to view due to a problem in line: 505 (of the current messages.php on GitHub)
where : attr(addslashes($pname)) . “’,” . attr(addslashes($prow[‘pid’])) . “,” . attr(addslashes($prow[ pubpid’])
will work when changed to:
attr(addslashes($pname)) . “’,” . attr(addslashes($prow[‘pid’])) . “,” . attr(addslashes($prow[ pid’])
This is the “gotoReport” call from “onclick”
When I inspected the live webpage in the browser, the “pubpid” was not populated(mostly, but not all the time), and if blank, the link does not work. My kludge of repeating the 'pid" in both fields resolves the issue.