3 * This file contains functions for handling notes attached to patient files.
5 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU General Public License
7 * as published by the Free Software Foundation; either version 2
8 * of the License, or (at your option) any later version.
10 * 2013-02-08 EMR Direct: changes to allow notes added by background-services with pid=0
15 * Retrieve a note, given its ID
17 * @param string $id the ID of the note to retrieve.
18 * @param string $cols A list of columns to retrieve. defaults to '*' for all.
20 function getPnoteById($id, $cols = "*")
22 return sqlQuery("SELECT $cols FROM pnotes WHERE id=? " .
23 ' AND deleted != 1 '. // exclude ALL deleted notes
24 'order by date DESC limit 0,1', array($id));
28 * Get the patient notes for the given user.
30 * This function is used to retrieve notes assigned to the given user, or
31 * optionally notes assigned to any user.
33 * @param string $activity 0 for deleted notes, 1 (the default) for active
34 * notes, or 'All' for all.
35 * @param string $show_all whether to display only the selected user's
36 * messages, or all users' messages.
37 * @param string $user The user whom's notes you want to retrieve.
38 * @param bool $count Whether to return a count, or just return 0.
39 * @param string $sortby A field to sort results by. (options are users.lname,patient_data.lname,pnotes.title,pnotes.date,pnotes.message_status) (will default to users.lname)
40 * @param string $sortorder whether to sort ascending or descending.
41 * @param string $begin what row to start retrieving results from.
42 * @param string $listnumber number of rows to return.
43 * @return int The number of rows retrieved, or 0 if $count was true.
45 function getPnotesByUser($activity = "1", $show_all = "no", $user = '', $count = false, $sortby = '', $sortorder = '', $begin = '', $listnumber = '')
48 // Set the activity part of query
50 $activity_query = " pnotes.message_status != 'Done' AND pnotes.activity = 1 AND ";
51 } else if ($activity=='0') {
52 $activity_query = " (pnotes.message_status = 'Done' OR pnotes.activity = 0) AND ";
53 } else { //$activity=='all'
54 $activity_query = " ";
57 // Set whether to show chosen user or all users
58 if ($show_all == 'yes') {
65 // 2013-02-08 EMR Direct: minor changes to query so notes with pid=0 don't disappear
66 $sql = "SELECT pnotes.id, pnotes.user, pnotes.pid, pnotes.title, pnotes.date, pnotes.message_status,
67 IF(pnotes.pid = 0 OR pnotes.user != pnotes.pid,users.fname,patient_data.fname) as users_fname,
68 IF(pnotes.pid = 0 OR pnotes.user != pnotes.pid,users.lname,patient_data.lname) as users_lname,
69 patient_data.fname as patient_data_fname, patient_data.lname as patient_data_lname
70 FROM ((pnotes LEFT JOIN users ON pnotes.user = users.username)
71 LEFT JOIN patient_data ON pnotes.pid = patient_data.pid) WHERE $activity_query
72 pnotes.deleted != '1' AND pnotes.assigned_to LIKE ?";
73 if (!empty($sortby) || !empty($sortorder) || !empty($begin) || !empty($listnumber)) {
74 $sql .= " order by ".escape_sql_column_name($sortby, array('users','patient_data','pnotes'), true).
75 " ".escape_sort_order($sortorder).
76 " limit ".escape_limit($begin).", ".escape_limit($listnumber);
79 $result = sqlStatement($sql, array($usrvar));
83 if (sqlNumRows($result) != 0) {
84 $total = sqlNumRows($result);
95 function getPnotesByDate(
108 $sqlParameterArray = array();
110 $sql = "SELECT $cols FROM pnotes AS p, gprelations AS r " .
111 "WHERE p.date LIKE ? AND r.type1 = 1 AND " .
112 "r.id1 = ? AND r.type2 = 6 AND p.id = r.id2 AND p.pid != p.user";
113 array_push($sqlParameterArray, '%'.$date.'%', $docid);
114 } else if ($orderid) {
115 $sql = "SELECT $cols FROM pnotes AS p, gprelations AS r " .
116 "WHERE p.date LIKE ? AND r.type1 = 2 AND " .
117 "r.id1 = ? AND r.type2 = 6 AND p.id = r.id2 AND p.pid != p.user";
118 array_push($sqlParameterArray, '%'.$date.'%', $orderid);
120 $sql = "SELECT $cols FROM pnotes AS p " .
121 "WHERE date LIKE ? AND pid LIKE ? AND p.pid != p.user";
122 array_push($sqlParameterArray, '%'.$date.'%', $pid);
125 $sql .= " AND deleted != 1"; // exclude ALL deleted notes
126 if ($activity != "all") {
127 if ($activity == '0') {
128 // only return inactive
129 $sql .= " AND (activity = '0' OR message_status = 'Done') ";
130 } else { // $activity == '1'
131 // only return active
132 $sql .= " AND activity = '1' AND message_status != 'Done' ";
137 $sql .= " AND assigned_to LIKE ?";
138 array_push($sqlParameterArray, $username);
142 $sql .= " AND message_status IN ('".str_replace(",", "','", add_escape_custom($status))."')";
145 $sql .= " ORDER BY date DESC";
146 if ($limit != "all") {
147 $sql .= " LIMIT ".escape_limit($start).", ".escape_limit($limit);
150 $res = sqlStatement($sql, $sqlParameterArray);
153 for ($iter = 0; $row = sqlFetchArray($res); $iter++) {
160 // activity can only be 0, 1, or 'all'
161 function getSentPnotesByDate(
174 $sqlParameterArray = array();
176 $sql = "SELECT $cols FROM pnotes AS p, gprelations AS r " .
177 "WHERE p.date LIKE ? AND r.type1 = 1 AND " .
178 "r.id1 = ? AND r.type2 = 6 AND p.id = r.id2 AND p.pid = p.user";
179 array_push($sqlParameterArray, '%'.$date.'%', $docid);
180 } else if ($orderid) {
181 $sql = "SELECT $cols FROM pnotes AS p, gprelations AS r " .
182 "WHERE p.date LIKE ? AND r.type1 = 2 AND " .
183 "r.id1 = ? AND r.type2 = 6 AND p.id = r.id2 AND p.pid = p.user";
184 array_push($sqlParameterArray, '%'.$date.'%', $orderid);
186 $sql = "SELECT $cols FROM pnotes AS p " .
187 "WHERE date LIKE ? AND pid LIKE ? AND p.pid = p.user";
188 array_push($sqlParameterArray, '%'.$date.'%', $pid);
191 $sql .= " AND deleted != 1"; // exclude ALL deleted notes
192 if ($activity != "all") {
193 if ($activity == '0') {
194 // only return inactive
195 $sql .= " AND (activity = '0' OR message_status = 'Done') ";
196 } else { // $activity == '1'
197 // only return active
198 $sql .= " AND activity = '1' AND message_status != 'Done' ";
203 $sql .= " AND assigned_to LIKE ?";
204 array_push($sqlParameterArray, $username);
208 $sql .= " AND message_status IN ('".str_replace(",", "','", add_escape_custom($status))."')";
211 $sql .= " ORDER BY date DESC";
212 if ($limit != "all") {
213 $sql .= " LIMIT ".escape_limit($start).", ".escape_limit($limit);
216 $res = sqlStatement($sql, $sqlParameterArray);
219 for ($iter = 0; $row = sqlFetchArray($res); $iter++) {
226 function getPatientNotes($pid = '', $limit = '', $offset = 0, $search = '')
229 $limit = "LIMIT ".escape_limit($offset).", ".escape_limit($limit);
241 CONCAT(pd.fname, ' ', pd.lname)
247 LEFT JOIN patient_data AS pd
249 WHERE assigned_to = '-patient-'
256 $res = sqlStatement($sql, array($pid));
257 for ($iter = 0; $row = sqlFetchArray($res); $iter++) {
264 function getPatientNotifications($pid = '', $limit = '', $offset = 0, $search = '')
267 $limit = "LIMIT ".escape_limit($offset).", ".escape_limit($limit);
273 date_created AS `date`,
274 'Patient Reminders' AS `user`,
276 CONCAT(lo.title, ':', lo2.title) AS body,
277 '' as message_status,
278 'Notification' as `type`
280 patient_reminders AS pr
281 LEFT JOIN list_options AS lo
282 ON lo.option_id = pr.category
283 AND lo.list_id = 'rule_action_category' AND lo.activity = 1
284 LEFT JOIN list_options AS lo2
285 ON lo2.option_id = pr.item
286 AND lo2.list_id = 'rule_action' AND lo2.activity = 1
289 AND date_created > DATE_SUB(NOW(), INTERVAL 1 MONTH)
294 $res = sqlStatement($sql, array($pid));
295 for ($iter = 0; $row = sqlFetchArray($res); $iter++) {
302 function getPatientSentNotes($pid = '', $limit = '', $offset = 0, $search = '')
305 $limit = "LIMIT ".escape_limit($offset).", ".escape_limit($limit);
317 CONCAT(pd.lname, ' ', pd.fname)
324 LEFT JOIN patient_data AS pd
329 AND p.message_status != 'Done'
334 $res = sqlStatement($sql, array($pid,$pid));
335 for ($iter = 0; $row = sqlFetchArray($res); $iter++) {
342 // activity can be 0, 1, or 'all'
343 function getPnotesByPid($pid, $activity = "1", $cols = "*", $limit = 10, $start = 0)
345 if ($activity == '1') {
346 // return only active
347 $res = sqlStatement("SELECT $cols FROM pnotes WHERE pid LIKE ? " .
348 "AND activity = '1' ".
349 " AND message_status != 'Done' ".
350 " AND deleted != 1 ".
351 " ORDER BY date DESC LIMIT ".escape_limit($start).",".escape_limit($limit), array($pid));
352 } else if ($activity == '0') {
353 // return only inactive
354 $res = sqlStatement("SELECT $cols FROM pnotes WHERE pid LIKE ? " .
355 "AND (activity = '0' ".
356 " OR message_status = 'Done') ".
357 " AND deleted != 1 ".
358 " ORDER BY date DESC LIMIT ".escape_limit($start).",".escape_limit($limit), array($pid));
359 } else { // $activity == "all"
360 // return both active and inactive
361 $res = sqlStatement("SELECT $cols FROM pnotes WHERE pid LIKE ? " .
362 " AND deleted != 1 ".
363 " ORDER BY date DESC LIMIT ".escape_limit($start).",".escape_limit($limit), array($pid));
366 for ($iter = 0; $row = sqlFetchArray($res); $iter++) {
373 /** Add a note to a patient's medical record.
375 * @param int $pid the ID of the patient whos medical record this note is going to be attached to.
376 * @param string $newtext the note contents.
377 * @param int $authorized
378 * @param int $activity
379 * @param string $title
380 * @param string $assigned_to
381 * @param string $datetime
382 * @param string $message_status
383 * @param string $background_user if set then the pnote is created by a background-service rather than a user
384 * @return int the ID of the added note.
391 $title = 'Unassigned',
394 $message_status = 'New',
395 $background_user = ""
398 if (empty($datetime)) {
399 $datetime = date('Y-m-d H:i:s');
402 // make inactive if set as Done
403 if ($message_status == 'Done') {
407 $user = ($background_user!="" ? $background_user : $_SESSION['authUser']);
408 $body = date('Y-m-d H:i') . ' (' . $user;
410 $body .= " to $assigned_to";
413 $body = $body . ') ' . $newtext;
416 'INSERT INTO pnotes (date, body, pid, user, groupname, ' .
417 'authorized, activity, title, assigned_to, message_status) VALUES ' .
418 '(?, ?, ?, ?, ?, ?, ?, ?, ?, ?)',
419 array($datetime, $body, $pid, $user, $_SESSION['authProvider'], $authorized, $activity, $title, $assigned_to, $message_status)
423 function addMailboxPnote(
428 $title = 'Unassigned',
431 $message_status = "New"
434 if (empty($datetime)) {
435 $datetime = date('Y-m-d H:i:s');
438 // make inactive if set as Done
439 if ($message_status == "Done") {
443 $body = date('Y-m-d H:i') . ' (' . $pid;
445 $body .= " to $assigned_to";
448 $body = $body . ') ' . $newtext;
451 "INSERT INTO pnotes (date, body, pid, user, groupname, " .
452 "authorized, activity, title, assigned_to, message_status) VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?)",
453 array($datetime, $body, $pid, $pid, 'Default', $authorized, $activity, $title, $assigned_to, $message_status)
457 function updatePnote($id, $newtext, $title, $assigned_to, $message_status = "")
459 $row = getPnoteById($id);
461 die("updatePnote() did not find id '".text($id)."'");
464 $activity = $assigned_to ? '1' : '0';
466 // make inactive if set as Done
467 if ($message_status == "Done") {
471 $body = $row['body'] . "\n" . date('Y-m-d H:i') .
472 ' (' . $_SESSION['authUser'];
474 $body .= " to $assigned_to";
477 $body = $body . ') ' . $newtext;
479 if ($message_status) {
481 "UPDATE pnotes SET " .
482 "body = ?, activity = ?, title= ?, " .
483 "assigned_to = ?, message_status = ? WHERE id = ?",
484 array($body, $activity, $title, $assigned_to, $message_status, $id)
488 "UPDATE pnotes SET " .
489 "body = ?, activity = ?, title= ?, " .
490 "assigned_to = ? WHERE id = ?",
491 array($body, $activity, $title, $assigned_to, $id)
496 function updatePnoteMessageStatus($id, $message_status)
498 if ($message_status == "Done") {
499 sqlStatement("update pnotes set message_status = ?, activity = '0' where id = ?", array($message_status, $id));
501 sqlStatement("update pnotes set message_status = ?, activity = '1' where id = ?", array($message_status, $id));
506 * Set the patient id in an existing message where pid=0
507 * @param $id the id of the existing note
508 * @param $patient_id the patient id to associate with the note
509 * @author EMR Direct <http://www.emrdirect.com/>
511 function updatePnotePatient($id, $patient_id)
513 $row = getPnoteById($id);
515 die("updatePnotePatient() did not find id '".text($id)."'");
518 $activity = $assigned_to ? '1' : '0';
521 if ($pid != 0 || (int)$patient_id < 1) {
522 die("updatePnotePatient invalid operation");
525 $pid = (int) $patient_id;
526 $newtext = "\n" . date('Y-m-d H:i') . " (patient set by " . $_SESSION['authUser'] .")";
527 $body = $row['body'] . $newtext;
529 sqlStatement("UPDATE pnotes SET pid = ?, body = ? WHERE id = ?", array($pid, $body, $id));
532 function authorizePnote($id, $authorized = "1")
534 sqlQuery("UPDATE pnotes SET authorized = ? WHERE id = ?", array ($authorized,$id));
537 function disappearPnote($id)
539 sqlStatement("UPDATE pnotes SET activity = '0', message_status = 'Done' WHERE id=?", array($id));
543 function reappearPnote($id)
545 sqlStatement("UPDATE pnotes SET activity = '1', message_status = IF(message_status='Done','New',message_status) WHERE id=?", array($id));
549 function deletePnote($id)
551 sqlStatement("UPDATE pnotes SET deleted = '1' WHERE id=?", array($id));