TEMPERATURE LOG
Posted: Wed Oct 21, 2020 10:04 pm
As crazy as this may sound, NYC has started sending inspectors into dental offices (and I presume other businesses) to check on compliance with COVID-19 regulations. One of the regulations requires you to keep a separate temperature log. It isn't enough that you record the temp in the patients' charts. You must be able to produce a log to show the inspector. I heard of one doctor who was fined $1,500 for not having a separate log, even though his office was doing everything right, with PPE and barriers, and social distancing, and temperature recorded in his patient charts.
Have you set up a TEMPERATURE Appointment Field yet? It's very easy and OD has instructions online.
Once you do that you can use a query to print out the log or save it to an excel spreadsheet for quick retrieval if the need arises.
I am still a newbie at writing queries. This took me the better part of the evening to figure out. I am happy to share it.
/*Temperature Log*/
SET @pos=0;
SELECT @pos:=@pos+1 AS '#',DATE(AptDateTime) AS DATE, TIME(AptDateTime) AS TIME, CONCAT(p.LName,', ',p.FName) AS PATIENT, af.FieldValue AS TEMP
FROM appointment a
INNER JOIN apptfield af ON a.AptNum=af.AptNum
INNER JOIN patient p ON a.PatNum=p.PatNum
GROUP BY p.PatNum
ORDER BY DATE(AptDateTime), TIME(AptDateTime)
Have you set up a TEMPERATURE Appointment Field yet? It's very easy and OD has instructions online.
Once you do that you can use a query to print out the log or save it to an excel spreadsheet for quick retrieval if the need arises.
I am still a newbie at writing queries. This took me the better part of the evening to figure out. I am happy to share it.
/*Temperature Log*/
SET @pos=0;
SELECT @pos:=@pos+1 AS '#',DATE(AptDateTime) AS DATE, TIME(AptDateTime) AS TIME, CONCAT(p.LName,', ',p.FName) AS PATIENT, af.FieldValue AS TEMP
FROM appointment a
INNER JOIN apptfield af ON a.AptNum=af.AptNum
INNER JOIN patient p ON a.PatNum=p.PatNum
GROUP BY p.PatNum
ORDER BY DATE(AptDateTime), TIME(AptDateTime)