Merge pull request #17976 from civicrm/5.28
[civicrm-core.git] / CRM / Case / Form / ActivityToCase.php
1 <?php
2 /*
3 +--------------------------------------------------------------------+
4 | Copyright CiviCRM LLC. All rights reserved. |
5 | |
6 | This work is published under the GNU AGPLv3 license with some |
7 | permitted exceptions and without any warranty. For full license |
8 | and copyright information, see https://civicrm.org/licensing |
9 +--------------------------------------------------------------------+
10 */
11
12 /**
13 *
14 * @package CRM
15 * @copyright CiviCRM LLC https://civicrm.org/licensing
16 */
17
18 /**
19 * This class generates form components for building activity to a case.
20 */
21 class CRM_Case_Form_ActivityToCase extends CRM_Core_Form {
22
23 /**
24 * Build all the data structures needed to build the form.
25 *
26 * @throws \CRM_Core_Exception
27 */
28 public function preProcess() {
29 $this->_activityId = CRM_Utils_Request::retrieve('activityId', 'Positive');
30 if (!$this->_activityId) {
31 throw new CRM_Core_Exception('required activity id is missing.');
32 }
33
34 $this->_currentCaseId = CRM_Utils_Request::retrieve('caseId', 'Positive');
35 $this->assign('currentCaseId', $this->_currentCaseId);
36 $this->assign('buildCaseActivityForm', TRUE);
37
38 switch (CRM_Utils_Request::retrieve('fileOnCaseAction', 'String')) {
39 case 'move':
40 CRM_Utils_System::setTitle(ts('Move to Case'));
41 break;
42
43 case 'copy':
44 CRM_Utils_System::setTitle(ts('Copy to Case'));
45 break;
46
47 }
48 }
49
50 /**
51 * Set default values for the form. For edit/view mode.
52 *
53 * @return array
54 *
55 * @throws \CRM_Core_Exception
56 * @throws \CiviCRM_API3_Exception
57 */
58 public function setDefaultValues() {
59 $defaults = [];
60 $params = ['id' => $this->_activityId];
61
62 CRM_Activity_BAO_Activity::retrieve($params, $defaults);
63 $defaults['file_on_case_activity_subject'] = $defaults['subject'] ?? '';
64 $defaults['file_on_case_target_contact_id'] = $defaults['target_contact'];
65
66 // If this contact has an open case, supply it as a default
67 $cid = CRM_Utils_Request::retrieve('cid', 'Integer');
68 if (!$cid) {
69 $act = civicrm_api3('Activity', 'getsingle', ['id' => $this->_activityId, 'return' => 'target_contact_id']);
70 if (!empty($act['target_contact_id'])) {
71 $cid = $act['target_contact_id'][0];
72 }
73 }
74 if ($cid) {
75 $cases = civicrm_api3('CaseContact', 'get', [
76 'contact_id' => $cid,
77 'case_id' => ['!=' => $this->_currentCaseId],
78 'case_id.status_id' => ['!=' => "Closed"],
79 'case_id.is_deleted' => 0,
80 'case_id.end_date' => ['IS NULL' => 1],
81 'options' => ['limit' => 1],
82 'return' => 'case_id',
83 ]);
84 foreach ($cases['values'] as $record) {
85 $defaults['file_on_case_unclosed_case_id'] = $record['case_id'];
86 break;
87 }
88 }
89 return $defaults;
90 }
91
92 /**
93 * Build the form object.
94 */
95 public function buildQuickForm() {
96 $this->addEntityRef('file_on_case_unclosed_case_id', ts('Select Case'), [
97 'entity' => 'Case',
98 'api' => [
99 'extra' => ['contact_id'],
100 'params' => [
101 'case_id' => ['!=' => $this->_currentCaseId],
102 'case_id.is_deleted' => 0,
103 'case_id.status_id' => ['!=' => "Closed"],
104 'case_id.end_date' => ['IS NULL' => 1],
105 ],
106 ],
107 ], TRUE);
108 $this->addEntityRef('file_on_case_target_contact_id', ts('With Contact(s)'), ['multiple' => TRUE]);
109 $this->add('text', 'file_on_case_activity_subject', ts('Subject'), ['size' => 50]);
110 }
111
112 }