Merge pull request #15800 from eileenmcnaughton/anet_valid
[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 public function preProcess() {
27 $this->_activityId = CRM_Utils_Request::retrieve('activityId', 'Positive');
28 if (!$this->_activityId) {
29 CRM_Core_Error::fatal('required activity id is missing.');
30 }
31
32 $this->_currentCaseId = CRM_Utils_Request::retrieve('caseId', 'Positive');
33 $this->assign('currentCaseId', $this->_currentCaseId);
34 $this->assign('buildCaseActivityForm', TRUE);
35
36 switch (CRM_Utils_Request::retrieve('fileOnCaseAction', 'String')) {
37 case 'move':
38 CRM_Utils_System::setTitle(ts('Move to Case'));
39 break;
40
41 case 'copy':
42 CRM_Utils_System::setTitle(ts('Copy to Case'));
43 break;
44
45 }
46 }
47
48 /**
49 * Set default values for the form. For edit/view mode
50 * the default values are retrieved from the database
51 *
52 *
53 * @return array
54 */
55 public function setDefaultValues() {
56 $defaults = [];
57 $params = ['id' => $this->_activityId];
58
59 CRM_Activity_BAO_Activity::retrieve($params, $defaults);
60 $defaults['file_on_case_activity_subject'] = $defaults['subject'];
61 $defaults['file_on_case_target_contact_id'] = $defaults['target_contact'];
62
63 // If this contact has an open case, supply it as a default
64 $cid = CRM_Utils_Request::retrieve('cid', 'Integer');
65 if (!$cid) {
66 $act = civicrm_api3('Activity', 'getsingle', ['id' => $this->_activityId, 'return' => 'target_contact_id']);
67 if (!empty($act['target_contact_id'])) {
68 $cid = $act['target_contact_id'][0];
69 }
70 }
71 if ($cid) {
72 $cases = civicrm_api3('CaseContact', 'get', [
73 'contact_id' => $cid,
74 'case_id' => ['!=' => $this->_currentCaseId],
75 'case_id.status_id' => ['!=' => "Closed"],
76 'case_id.is_deleted' => 0,
77 'case_id.end_date' => ['IS NULL' => 1],
78 'options' => ['limit' => 1],
79 'return' => 'case_id',
80 ]);
81 foreach ($cases['values'] as $record) {
82 $defaults['file_on_case_unclosed_case_id'] = $record['case_id'];
83 break;
84 }
85 }
86 return $defaults;
87 }
88
89 /**
90 * Build the form object.
91 */
92 public function buildQuickForm() {
93 $this->addEntityRef('file_on_case_unclosed_case_id', ts('Select Case'), [
94 'entity' => 'Case',
95 'api' => [
96 'extra' => ['contact_id'],
97 'params' => [
98 'case_id' => ['!=' => $this->_currentCaseId],
99 'case_id.is_deleted' => 0,
100 'case_id.status_id' => ['!=' => "Closed"],
101 'case_id.end_date' => ['IS NULL' => 1],
102 ],
103 ],
104 ], TRUE);
105 $this->addEntityRef('file_on_case_target_contact_id', ts('With Contact(s)'), ['multiple' => TRUE]);
106 $this->add('text', 'file_on_case_activity_subject', ts('Subject'), ['size' => 50]);
107 }
108
109 }