forked from openemr/openemr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMedicationPatientIssueService.php
87 lines (73 loc) · 3.23 KB
/
MedicationPatientIssueService.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
<?php
/**
* MedicationPatientIssueService.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\Services\Search\TokenSearchField;
class MedicationPatientIssueService extends BaseService
{
const TABLE_NAME = "lists_medication";
const LIST_OPTION_MEDICATION_REQUEST_INTENT = "medication-request-intent";
const LIST_OPTION_MEDICATION_USAGE_CATEGORY = "medication-usage-category";
public function __construct()
{
parent::__construct(self::TABLE_NAME);
}
public function createIssue($record)
{
if (!empty($record['id'])) {
throw new \InvalidArgumentException("Cannot insert record with existing id");
}
if (empty($record['list_id'])) {
throw new \InvalidArgumentException("issue list_id is required to create this record");
}
$whiteListDict = $this->filterData($record);
$this->populateListOptionValues($whiteListDict);
$insert = $this->buildInsertColumns($whiteListDict);
$sql = "INSERT INTO " . self::TABLE_NAME . " SET " . $insert['set'];
QueryUtils::sqlStatementThrowException($sql, $insert['bind']);
}
public function updateIssue($record)
{
if (empty($record['id'])) {
throw new \InvalidArgumentException("Cannot update record without id");
}
if (empty($record['list_id'])) {
throw new \InvalidArgumentException("issue list_id is required to update this record");
}
$whiteListDict = $this->filterData($record);
$this->populateListOptionValues($whiteListDict);
$update = $this->buildUpdateColumns($whiteListDict);
$sql = "UPDATE " . self::TABLE_NAME . " SET " . $update['set'] . " WHERE id = ? AND list_id = ?";
$update['bind'][] = $record['id'];
$update['bind'][] = $record['list_id'];
QueryUtils::sqlStatementThrowException($sql, $update['bind']);
}
private function populateListOptionValues(&$dataRecord)
{
$listService = new ListService();
// we save off the title information because administrators can change list option values and we need a historical record.
if (!empty($dataRecord['request_intent'])) {
$option = $listService->getListOption(self::LIST_OPTION_MEDICATION_REQUEST_INTENT, $dataRecord['request_intent']);
$dataRecord['request_intent_title'] = $option['title'] ?? null;
}
if (!empty($dataRecord['usage_category'])) {
$option = $listService->getListOption(self::LIST_OPTION_MEDICATION_USAGE_CATEGORY, $dataRecord['usage_category']);
$dataRecord['usage_category_title'] = $option['title'] ?? null;
}
}
public function getRecordByIssueListId($list_id)
{
$records = $this->search(['list_id' => new TokenSearchField('list_id', [$list_id])]);
if (!empty($records->getData())) {
return array_pop($records->getData());
}
return null;
}
}