Undelete a deleted note?

For users or potential users.
Post Reply
sam-I-am
Posts: 85
Joined: Thu Aug 16, 2012 7:58 pm

Undelete a deleted note?

Post by sam-I-am » Thu Feb 11, 2016 7:19 am

I had a progress note accidentally deleted. The note is still available, if I click on the audit trail. My question is...is there any way to undelete this deleted note.

Sam Barr

User avatar
jsalmon
Posts: 1555
Joined: Tue Nov 30, 2010 12:33 pm
Contact:

Re: Undelete a deleted note?

Post by jsalmon » Thu Feb 11, 2016 10:19 am

There is not currently a way to do such a thing. It would be a feature request to be able to choose a historical note to be used as the current note.
http://www.opendental.com/manual/featurerequests.html

As a workaround, you might take a screenshot of Open Dental or some equivalent so that you can retype the deleted note.
http://www.opendental.com/manual/printscreentool.html
The best thing about a boolean is even if you are wrong, you are only off by a bit.

Jason Salmon
Open Dental Software
http://www.opendental.com

User avatar
cmcgehee
Posts: 711
Joined: Tue Aug 25, 2015 5:06 pm
Location: Salem, Oregon

Re: Undelete a deleted note?

Post by cmcgehee » Tue Feb 16, 2016 11:48 am

An alternate workaround is to use a query to get the note from the database. Then you would be able to copy the deleted note and paste it into the procedure notes. A query like this should work:

/*All proc notes for a patient on a given day.*/
/*Query code written/modified: 02/16/2016*/
SET @PatNum=5;
SET @ProcDate='2016-02-16';
SELECT pn.Note,pl.ProcDate,pl.PatNum,pc.ProcCode
FROM procedurelog pl
INNER JOIN procnote pn ON pn.ProcNum=pl.ProcNum
INNER JOIN procedurecode pc ON pc.CodeNum=pl.CodeNum
WHERE pl.PatNum=@PatNum
AND pl.ProcDate=@ProcDate
ORDER BY pl.ProcNum
Chris McGehee
Open Dental Software
http://www.opendental.com

Post Reply