forked from openemr/openemr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ClinicalNotesService.php
375 lines (338 loc) · 14.4 KB
/
ClinicalNotesService.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
<?php
/**
* ClinicalNotesService.php
* @package openemr
* @link http://www.open-emr.org
* @author Stephen Nielson <[email protected]>
* @copyright Copyright (c) 2021 Stephen Nielson <[email protected]>
* @license https://github.com/openemr/openemr/blob/master/LICENSE GNU General Public License 3
*/
namespace OpenEMR\Services;
use OpenEMR\Common\Database\QueryUtils;
use OpenEMR\Common\Uuid\UuidRegistry;
use OpenEMR\Services\Search\FhirSearchWhereClauseBuilder;
use OpenEMR\Services\Search\ISearchField;
use OpenEMR\Services\Search\SearchFieldException;
use OpenEMR\Services\Search\TokenSearchField;
use OpenEMR\Services\Search\TokenSearchValue;
use OpenEMR\Validators\ProcessingResult;
class ClinicalNotesService extends BaseService
{
const TABLE_NAME = "form_clinical_notes";
const ACTIVITY_ACTIVE = 1;
const ACTIVITY_INACTIVE = 0;
public function __construct()
{
parent::__construct(self::TABLE_NAME);
UuidRegistry::createMissingUuidsForTables(['form_clinical_notes']);
}
/**
* Returns a list of records matching the search criteria.
* Search criteria is conveyed by array where key = field/column name, value is an ISearchField
* If an empty array of search criteria is provided, all records are returned.
*
* The search will grab the intersection of all possible values if $isAndCondition is true, otherwise it returns
* the union (logical OR) of the search.
*
* More complicated searches with various sub unions / intersections can be accomplished through a CompositeSearchField
* that allows you to combine multiple search clauses on a single search field.
*
* @param ISearchField[] $search Hashmap of string => ISearchField where the key is the field name of the search field
* @param bool $isAndCondition Whether to join each search field with a logical OR or a logical AND.
* @return ProcessingResult The results of the search.
*/
public function search($search, $isAndCondition = true)
{
// because we can have two clinical note table options (one from contrib etc), we will return an empty search
// result for now if the table does not conform to our CORE clinical_notes
$fields = $this->getFields();
$processingResult = new ProcessingResult();
if (array_search('code', $fields) === false) {
// there is no data right now for the other form so we leave it be.
return $processingResult;
}
// we leave status to be current, if we ever support entered-in-error, or superseded we can do that here.
try {
$sql = "
SELECT
notes.id
,notes.uuid AS uuid
,notes.activity
,notes.date
,notes.code
,notes.codetext
,notes.description
,notes.external_id
,notes.clinical_notes_type
,notes.note_related_to
,notes.clinical_notes_category
,lo_category.category_code
,lo_category.category_title
,patients.pid
,patients.puuid
,encounters.eid
,encounters.euuid
,encounters.encounter_date
,users.username
,users.user_uuid
,users.npi
,users.physician_type
FROM
(
select
id
,uuid
,activity
,`date`
,`code`
,codetext
,`description`
,external_id
,clinical_notes_type
,note_related_to
,clinical_notes_category
,form_id
,user
FROM
form_clinical_notes
) notes
JOIN (
SELECT
id AS form_id,
encounter
,pid AS form_pid
FROM
forms
) forms ON forms.form_id = notes.form_id
LEFT JOIN (
select
encounter AS eid
,uuid AS euuid
,`date` AS encounter_date
FROM
form_encounter
) encounters ON encounters.eid = forms.encounter
LEFT JOIN
(
SELECT
uuid AS puuid
,pid
FROM patient_data
) patients ON forms.form_pid = patients.pid
LEFT JOIN
(
SELECT
uuid AS user_uuid
,username
,id AS uid
,npi
,physician_type
FROM
users
) users ON notes.`user` = users.username
LEFT JOIN
(
SELECT
notes AS category_code
,title AS category_title
,option_id
FROM
list_options
WHERE
list_id = 'Clinical_Note_Category'
) lo_category ON notes.clinical_notes_category = lo_category.option_id
";
$whereClause = FhirSearchWhereClauseBuilder::build($search, $isAndCondition);
$sql .= $whereClause->getFragment();
$sqlBindArray = $whereClause->getBoundValues();
$statementResults = QueryUtils::sqlStatementThrowException($sql, $sqlBindArray);
while ($row = sqlFetchArray($statementResults)) {
$resultRecord = $this->createResultRecordFromDatabaseResult($row);
$processingResult->addData($resultRecord);
}
} catch (SearchFieldException $exception) {
$processingResult->setValidationMessages([$exception->getField() => $exception->getMessage()]);
}
return $processingResult;
}
protected function createResultRecordFromDatabaseResult($row)
{
// TODO: @adunsulag this is just for testing until we can figure out the right uuid schematic
if (!empty($row['code'])) {
$row['code'] = $this->addCoding($row['code']);
}
return parent::createResultRecordFromDatabaseResult($row);
}
public function getUuidFields(): array
{
return ['uuid', 'puuid', 'euuid', 'user_uuid'];
}
/**
* Sets the activity status flag for the given form_clinical_notes record to either be active(1) or inactive(0).
* @param $clinicalNoteId The unique record id for the form_clinical_notes table
* @param $pid The unique patient pid from the patient_data table
* @param $encounter The unique encounter id from the form_encounters table
* @param $activity The activity status: active(1) or inactive(0).
*/
public function setActivityForClinicalRecord($clinicalNoteId, $pid, $encounter, $activity)
{
$sql = "UPDATE `form_clinical_notes` SET activity = ? WHERE id=? AND pid = ? AND encounter = ?";
$bindings = array($activity, $clinicalNoteId, $pid, $encounter);
QueryUtils::sqlStatementThrowException($sql, $bindings);
}
/**
* Given a form id remove all of the clinical note records connected to that form.
* @param $formId The unique id from the forms table
* @param $pid The unique patient pid from the patient_data table
* @param $encounter The unique encounter id from the form_encounters table
*/
public function clearClinicalRecordsForForm($formId, $pid, $encounter)
{
QueryUtils::sqlStatementThrowException(
"DELETE FROM `form_clinical_notes` WHERE form_id=? AND pid = ? AND encounter = ?",
array($formId, $pid, $encounter)
);
}
public function getClinicalRecordNoteById($id)
{
$sql = "select * from `form_clinical_notes` WHERE id = ? ";
$records = QueryUtils::fetchRecords($sql, [$id]);
if (!empty($records)) {
return $records[0];
}
return null;
}
public function createClinicalNotesParentForm($pid, $encounter, $userauthorized)
{
$largestId = QueryUtils::fetchSingleValue("SELECT COALESCE(MAX(form_id), 0) as largestId FROM `form_clinical_notes`", 'largestId');
if ($largestId > 0) {
$form_id = $largestId + 1;
} else {
$form_id = 1;
}
addForm($encounter, "Clinical Notes Form", $form_id, "clinical_notes", $pid, $userauthorized);
return $form_id;
}
public function saveArray(array $record)
{
$form_id = $record['form_id'] ?? null;
$id = $record['id'] ?? null;
$pid = $record['pid'] ?? null;
$encounter = $record['encounter'] ?? null;
$userauthorized = $record['authorized'] ?? null;
$existingRecord = [];
if (empty($form_id) || empty($pid) || empty($encounter) || empty($record) || $userauthorized === null) {
throw new \InvalidArgumentException("Record, form_id, pid, authorized and encounter must be populated");
}
unset($record['id']);
// we grab the existing record so we can populate the uuid if necessary
if (isset($id)) {
$existingRecord = $this->getClinicalRecordNoteById($id);
}
if (empty($form_id)) {
$largestId = QueryUtils::fetchSingleValue("SELECT COALESCE(MAX(form_id), 0) as largestId FROM `form_clinical_notes`", 'largestId');
if ($largestId > 0) {
$record['form_id'] = $largestId + 1;
} else {
$record['form_id'] = 1;
}
addForm($encounter, "Clinical Notes Form", $record['form_id'], "clinical_notes", $pid, $userauthorized);
}
if (empty($existingRecord['uuid'])) {
$record['uuid'] = (new UuidRegistry(['table_name' => 'form_clinical_notes']))->createUuid();
}
$keys = array_keys($record);
$setValues = array_map(function ($val) {
return $val . " = ? ";
}, $keys);
if (!empty($id)) {
$sql = "UPDATE " . self::TABLE_NAME . " SET " . implode(", ", $setValues) . " WHERE id = ? ";
$bindValues = array_values($record);
$bindValues[] = $id;
QueryUtils::sqlStatementThrowException($sql, $bindValues);
} else {
$sql = "INSERT INTO " . self::TABLE_NAME . " SET " . implode(", ", $setValues);
$bindValues = array_values($record);
$recordId = QueryUtils::sqlInsert($sql, $bindValues);
$record['id'] = $recordId;
}
// if we want the id&uuid back we need to return the record here
return $record;
}
public function getClinicalNoteIdsForPatientForm(int $formid, $pid, $encounter)
{
if (empty($formid) || empty($pid) || empty($encounter)) {
throw new \InvalidArgumentException("formid, pid, and encounter must all be populated");
}
$sql = "SELECT id FROM `form_clinical_notes` WHERE `form_id`=? AND `pid` = ? AND `encounter` = ?";
return QueryUtils::fetchTableColumn($sql, 'id', array($formid, $pid, $encounter));
}
/**
* Retrieve all of the clinical notes for a given patient
* @param $pid
* @return ProcessingResult
*/
public function getClinicalNotesForPatient($pid): ProcessingResult
{
$search['pid'] = new TokenSearchField('pid', new TokenSearchValue($pid));
return $this->search($search);
}
public function getClinicalNotesForPatientForm(int $formid, $pid, $encounter)
{
if (empty($formid) || empty($pid)) {
throw new \InvalidArgumentException("formid, and pid must all be populated");
}
$sql = "SELECT fcn.*, lo_category.title AS category_title, lo_category.notes AS category_code
FROM `form_clinical_notes` fcn
LEFT JOIN list_options lo_category ON lo_category.list_id = 'Clinical_Note_Category' AND lo_category.option_id = fcn.clinical_notes_category
LEFT JOIN list_options lo_type ON lo_type.list_id = 'Clinical_Note_Type' AND lo_type.option_id = fcn.clinical_notes_type
WHERE fcn.`form_id`=? AND fcn.`pid` = ? AND fcn.`encounter` = ?";
return QueryUtils::fetchRecords($sql, array($formid, $pid, $encounter));
}
public function deleteClinicalNoteRecordForPatient($recordId, $pid, $encounter)
{
$sql = "DELETE FROM `form_clinical_notes` WHERE id = ? AND pid= ? AND encounter = ?";
QueryUtils::sqlStatementThrowException($sql, [$recordId, $pid, $encounter]);
}
/**
* Given a code (with or without LOINC prefix) determine if its a valid clinical note code that this service can
* respond to.
* @param $code string
* @return bool true if the code is valid, false otherwise
*/
public function isValidClinicalNoteCode($code)
{
// make it a LOINC code
if (strpos($code, ":") === false) {
$code = "LOINC:" . $code;
}
$listService = new ListService();
$options = $listService->getOptionsByListName('Clinical_Note_Type', ['notes' => $code]);
return !empty($options);
}
public function getClinicalNoteTypes($includeInactive = false)
{
$listService = new ListService();
$search = ($includeInactive) ? [] : ['activity' => '1'];
$options = $listService->getOptionsByListName('Clinical_Note_Type', $search);
return $this->getListAsSelectList($options);
}
public function getClinicalNoteCategories($includeInactive = false)
{
$listService = new ListService();
$search = ($includeInactive) ? [] : ['activity' => '1'];
$options = $listService->getOptionsByListName('Clinical_Note_Category', $search);
return $this->getListAsSelectList($options);
}
private function getListAsSelectList($optionsList)
{
if (empty($optionsList)) {
return [];
}
$selectList = [];
foreach ($optionsList as $option) {
$selectList[] = ['value' => $option['option_id'], 'code' => $option['notes'], 'title' => $option['title'], 'xlTitle' => xl_list_label($option['title'])];
}
return $selectList;
}
}