CRM-17646 - Ensure user-facing case type options go through hook_fieldOptions
[civicrm-core.git] / CRM / Report / Form / Case / Summary.php
CommitLineData
6a488035 1<?php
6a488035
TO
2/*
3 +--------------------------------------------------------------------+
7e9e8871 4 | CiviCRM version 4.7 |
6a488035 5 +--------------------------------------------------------------------+
e7112fa7 6 | Copyright CiviCRM LLC (c) 2004-2015 |
6a488035
TO
7 +--------------------------------------------------------------------+
8 | This file is a part of CiviCRM. |
9 | |
10 | CiviCRM is free software; you can copy, modify, and distribute it |
11 | under the terms of the GNU Affero General Public License |
12 | Version 3, 19 November 2007 and the CiviCRM Licensing Exception. |
13 | |
14 | CiviCRM is distributed in the hope that it will be useful, but |
15 | WITHOUT ANY WARRANTY; without even the implied warranty of |
16 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. |
17 | See the GNU Affero General Public License for more details. |
18 | |
19 | You should have received a copy of the GNU Affero General Public |
20 | License and the CiviCRM Licensing Exception along |
21 | with this program; if not, contact CiviCRM LLC |
22 | at info[AT]civicrm[DOT]org. If you have questions about the |
23 | GNU Affero General Public License or the licensing of CiviCRM, |
24 | see the CiviCRM license FAQ at http://civicrm.org/licensing |
25 +--------------------------------------------------------------------+
d25dd0ee 26 */
6a488035
TO
27
28/**
29 *
30 * @package CRM
e7112fa7 31 * @copyright CiviCRM LLC (c) 2004-2015
6a488035
TO
32 * $Id$
33 *
34 */
35class CRM_Report_Form_Case_Summary extends CRM_Report_Form {
36
37 protected $_summary = NULL;
38 protected $_relField = FALSE;
01bf13dc 39 protected $_exposeContactID = FALSE;
74cf4551 40
dd3aa6f0 41 protected $_customGroupExtends = array('Case');
b326c682 42
74cf4551 43 /**
74cf4551
EM
44 */
45 /**
74cf4551 46 */
00be9182 47 public function __construct() {
9d72cede 48 $this->case_types = CRM_Case_PseudoConstant::caseType();
01bf13dc 49 $this->case_statuses = CRM_Core_OptionGroup::values('case_status');
9d72cede 50 $rels = CRM_Core_PseudoConstant::relationshipType();
6a488035
TO
51 foreach ($rels as $relid => $v) {
52 $this->rel_types[$relid] = $v['label_b_a'];
53 }
54
9d72cede
EM
55 $this->deleted_labels = array(
56 '' => ts('- select -'),
57 0 => ts('No'),
21dfd5f5 58 1 => ts('Yes'),
9d72cede 59 );
6a488035
TO
60
61 $this->_columns = array(
9d72cede 62 'civicrm_c2' => array(
6a488035 63 'dao' => 'CRM_Contact_DAO_Contact',
9d72cede
EM
64 'fields' => array(
65 'client_name' => array(
6a488035
TO
66 'name' => 'sort_name',
67 'title' => ts('Client'),
68 'required' => TRUE,
69 ),
9d72cede 70 'id' => array(
6a488035
TO
71 'no_display' => TRUE,
72 'required' => TRUE,
73 ),
74 ),
75 ),
9d72cede 76 'civicrm_case' => array(
6a488035 77 'dao' => 'CRM_Case_DAO_Case',
9d72cede
EM
78 'fields' => array(
79 'id' => array(
80 'title' => ts('Case ID'),
6a488035
TO
81 'required' => TRUE,
82 ),
83 'subject' => array(
9d72cede
EM
84 'title' => ts('Case Subject'),
85 'default' => TRUE,
6a488035
TO
86 ),
87 'status_id' => array(
9d72cede
EM
88 'title' => ts('Status'),
89 'default' => TRUE,
6a488035
TO
90 ),
91 'case_type_id' => array(
9d72cede
EM
92 'title' => ts('Case Type'),
93 'default' => TRUE,
6a488035
TO
94 ),
95 'start_date' => array(
9d72cede
EM
96 'title' => ts('Start Date'),
97 'default' => TRUE,
0fa0ffd2 98 'type' => CRM_Utils_Type::T_DATE,
6a488035
TO
99 ),
100 'end_date' => array(
9d72cede
EM
101 'title' => ts('End Date'),
102 'default' => TRUE,
0fa0ffd2 103 'type' => CRM_Utils_Type::T_DATE,
6a488035
TO
104 ),
105 'duration' => array(
9d72cede
EM
106 'title' => ts('Duration (Days)'),
107 'default' => FALSE,
6a488035
TO
108 ),
109 'is_deleted' => array(
9d72cede
EM
110 'title' => ts('Deleted?'),
111 'default' => FALSE,
112 'type' => CRM_Utils_Type::T_INT,
6a488035
TO
113 ),
114 ),
9d72cede
EM
115 'filters' => array(
116 'start_date' => array(
117 'title' => ts('Start Date'),
6a488035
TO
118 'operatorType' => CRM_Report_Form::OP_DATE,
119 'type' => CRM_Utils_Type::T_DATE,
120 ),
9d72cede
EM
121 'end_date' => array(
122 'title' => ts('End Date'),
6a488035
TO
123 'operatorType' => CRM_Report_Form::OP_DATE,
124 'type' => CRM_Utils_Type::T_DATE,
125 ),
9d72cede
EM
126 'case_type_id' => array(
127 'title' => ts('Case Type'),
6a488035 128 'operatorType' => CRM_Report_Form::OP_MULTISELECT,
7a5c0c6c 129 'options' => CRM_Case_BAO_Case::buildOptions('case_type_id', 'search'),
6a488035 130 ),
9d72cede
EM
131 'status_id' => array(
132 'title' => ts('Status'),
6a488035 133 'operatorType' => CRM_Report_Form::OP_MULTISELECT,
7a5c0c6c 134 'options' => CRM_Case_BAO_Case::buildOptions('status_id', 'search'),
6a488035 135 ),
9d72cede
EM
136 'is_deleted' => array(
137 'title' => ts('Deleted?'),
6a488035
TO
138 'type' => CRM_Report_Form::OP_INT,
139 'operatorType' => CRM_Report_Form::OP_SELECT,
140 'options' => $this->deleted_labels,
141 'default' => 0,
142 ),
143 ),
144 ),
9d72cede 145 'civicrm_contact' => array(
6a488035 146 'dao' => 'CRM_Contact_DAO_Contact',
9d72cede
EM
147 'fields' => array(
148 'sort_name' => array(
149 'title' => ts('Staff Member'),
6a488035
TO
150 'default' => TRUE,
151 ),
152 ),
9d72cede
EM
153 'filters' => array(
154 'sort_name' => array(
155 'title' => ts('Staff Member'),
6a488035
TO
156 ),
157 ),
158 ),
9d72cede 159 'civicrm_relationship' => array(
6a488035 160 'dao' => 'CRM_Contact_DAO_Relationship',
9d72cede
EM
161 'filters' => array(
162 'relationship_type_id' => array(
163 'title' => ts('Staff Relationship'),
6a488035
TO
164 'operatorType' => CRM_Report_Form::OP_MULTISELECT,
165 'options' => $this->rel_types,
166 ),
167 ),
168 ),
9d72cede 169 'civicrm_relationship_type' => array(
6a488035 170 'dao' => 'CRM_Contact_DAO_RelationshipType',
9d72cede
EM
171 'fields' => array(
172 'label_b_a' => array(
173 'title' => ts('Relationship'),
174 'default' => TRUE,
6a488035
TO
175 ),
176 ),
177 ),
9d72cede 178 'civicrm_case_contact' => array(
6a488035
TO
179 'dao' => 'CRM_Case_DAO_CaseContact',
180 ),
181 );
182
183 parent::__construct();
184 }
185
00be9182 186 public function preProcess() {
6a488035
TO
187 parent::preProcess();
188 }
189
00be9182 190 public function select() {
6a488035
TO
191 $select = array();
192 $this->_columnHeaders = array();
193 foreach ($this->_columns as $tableName => $table) {
194 if (array_key_exists('fields', $table)) {
195 foreach ($table['fields'] as $fieldName => $field) {
9d72cede
EM
196 if (!empty($field['required']) ||
197 !empty($this->_params['fields'][$fieldName])
198 ) {
6a488035
TO
199
200 if ($tableName == 'civicrm_relationship_type') {
201 $this->_relField = TRUE;
202 }
203
204 if ($fieldName == 'duration') {
205 $select[] = "IF({$table['fields']['end_date']['dbAlias']} Is Null, '', DATEDIFF({$table['fields']['end_date']['dbAlias']}, {$table['fields']['start_date']['dbAlias']})) as {$tableName}_{$fieldName}";
206 }
207 else {
208 $select[] = "{$field['dbAlias']} as {$tableName}_{$fieldName}";
209 }
210 $this->_columnHeaders["{$tableName}_{$fieldName}"]['type'] = CRM_Utils_Array::value('type', $field);
211 $this->_columnHeaders["{$tableName}_{$fieldName}"]['title'] = $field['title'];
212 }
213 }
214 }
215 }
216
217 $this->_select = "SELECT " . implode(', ', $select) . " ";
218 }
219
74cf4551
EM
220 /**
221 * @param $fields
222 * @param $files
223 * @param $self
224 *
225 * @return array
226 */
00be9182 227 public static function formRule($fields, $files, $self) {
6a488035 228 $errors = $grouping = array();
9d72cede
EM
229 if (empty($fields['relationship_type_id_value']) &&
230 (array_key_exists('sort_name', $fields['fields']) ||
231 array_key_exists('label_b_a', $fields['fields']))
232 ) {
6a488035
TO
233 $errors['fields'] = ts('Either filter on at least one relationship type, or de-select Staff Member and Relationship from the list of fields.');
234 }
9d72cede
EM
235 if ((!empty($fields['relationship_type_id_value']) ||
236 !empty($fields['sort_name_value'])) &&
237 (!array_key_exists('sort_name', $fields['fields']) ||
238 !array_key_exists('label_b_a', $fields['fields']))
239 ) {
6a488035
TO
240 $errors['fields'] = ts('To filter on Staff Member or Relationship, please also select Staff Member and Relationship from the list of fields.');
241 }
242 return $errors;
243 }
244
00be9182 245 public function from() {
6a488035 246
9d72cede
EM
247 $cc = $this->_aliases['civicrm_case'];
248 $c = $this->_aliases['civicrm_contact'];
249 $c2 = $this->_aliases['civicrm_c2'];
250 $cr = $this->_aliases['civicrm_relationship'];
6a488035
TO
251 $crt = $this->_aliases['civicrm_relationship_type'];
252 $ccc = $this->_aliases['civicrm_case_contact'];
253
254 if ($this->_relField) {
255 $this->_from = "
2f4c2f5d 256 FROM civicrm_contact $c
6a488035
TO
257inner join civicrm_relationship $cr on {$c}.id = ${cr}.contact_id_b
258inner join civicrm_case $cc on ${cc}.id = ${cr}.case_id
259inner join civicrm_relationship_type $crt on ${crt}.id=${cr}.relationship_type_id
260inner join civicrm_case_contact $ccc on ${ccc}.case_id = ${cc}.id
261inner join civicrm_contact $c2 on ${c2}.id=${ccc}.contact_id
262";
263 }
264 else {
265 $this->_from = "
b0e74adc 266 FROM civicrm_contact $c, civicrm_case $cc
6a488035
TO
267inner join civicrm_case_contact $ccc on ${ccc}.case_id = ${cc}.id
268inner join civicrm_contact $c2 on ${c2}.id=${ccc}.contact_id
269";
270 }
271 }
272
00be9182 273 public function where() {
6a488035
TO
274 $clauses = array();
275 $this->_having = '';
276 foreach ($this->_columns as $tableName => $table) {
277 if (array_key_exists('filters', $table)) {
278 foreach ($table['filters'] as $fieldName => $field) {
279 $clause = NULL;
84178120 280 if (CRM_Utils_Array::value("operatorType", $field) & CRM_Report_Form::OP_DATE
9d72cede 281 ) {
6a488035 282 $relative = CRM_Utils_Array::value("{$fieldName}_relative", $this->_params);
9d72cede
EM
283 $from = CRM_Utils_Array::value("{$fieldName}_from", $this->_params);
284 $to = CRM_Utils_Array::value("{$fieldName}_to", $this->_params);
6a488035
TO
285
286 $clause = $this->dateClause($field['dbAlias'], $relative, $from, $to,
287 CRM_Utils_Array::value('type', $field)
288 );
289 }
290 else {
291
292 $op = CRM_Utils_Array::value("{$fieldName}_op", $this->_params);
293 if ($fieldName == 'case_type_id') {
294 $value = CRM_Utils_Array::value("{$fieldName}_value", $this->_params);
295 if (!empty($value)) {
75314e67 296 $operator = '';
297 if ($op == 'notin') {
298 $operator = 'NOT';
299 }
6e987e3a 300
301 $regexp = "[[:cntrl:]]*" . implode('[[:>:]]*|[[:<:]]*', $value) . "[[:cntrl:]]*";
302 $clause = "{$field['dbAlias']} {$operator} REGEXP '{$regexp}'";
6a488035
TO
303 }
304 $op = NULL;
305 }
306
307 if ($op) {
308 $clause = $this->whereClause($field,
309 $op,
310 CRM_Utils_Array::value("{$fieldName}_value", $this->_params),
311 CRM_Utils_Array::value("{$fieldName}_min", $this->_params),
312 CRM_Utils_Array::value("{$fieldName}_max", $this->_params)
313 );
314 }
315 }
316
317 if (!empty($clause)) {
318 $clauses[] = $clause;
319 }
320 }
321 }
322 }
323
324 if (empty($clauses)) {
325 $this->_where = "WHERE ( 1 ) ";
326 }
327 else {
328 $this->_where = "WHERE " . implode(' AND ', $clauses);
329 }
330 }
331
00be9182 332 public function groupBy() {
7144b45d 333 $this->_groupBy = "GROUP BY {$this->_aliases['civicrm_c2']}.id";
6a488035
TO
334 }
335
00be9182 336 public function postProcess() {
6a488035
TO
337
338 $this->beginPostProcess();
339
340 $sql = $this->buildQuery(TRUE);
341
342 $rows = $graphRows = array();
343 $this->buildRows($sql, $rows);
344
345 $this->formatDisplay($rows);
346 $this->doTemplateAssignment($rows);
347 $this->endPostProcess($rows);
348 }
349
74cf4551 350 /**
4b62bc4f
EM
351 * Alter display of rows.
352 *
353 * Iterate through the rows retrieved via SQL and make changes for display purposes,
354 * such as rendering contacts as links.
355 *
356 * @param array $rows
357 * Rows generated by SQL, with an array for each row.
74cf4551 358 */
00be9182 359 public function alterDisplay(&$rows) {
6a488035
TO
360 $entryFound = FALSE;
361 foreach ($rows as $rowNum => $row) {
362 if (array_key_exists('civicrm_case_status_id', $row)) {
363 if ($value = $row['civicrm_case_status_id']) {
364 $rows[$rowNum]['civicrm_case_status_id'] = $this->case_statuses[$value];
365 $entryFound = TRUE;
366 }
367 }
368
9d72cede
EM
369 if (array_key_exists('civicrm_case_case_type_id', $row) &&
370 !empty($rows[$rowNum]['civicrm_case_case_type_id'])
371 ) {
372 $value = $row['civicrm_case_case_type_id'];
6a488035 373 $typeIds = explode(CRM_Core_DAO::VALUE_SEPARATOR, $value);
9d72cede 374 $value = array();
6a488035
TO
375 foreach ($typeIds as $typeId) {
376 if ($typeId) {
377 $value[$typeId] = $this->case_types[$typeId];
378 }
379 }
380 $rows[$rowNum]['civicrm_case_case_type_id'] = implode(', ', $value);
381 $entryFound = TRUE;
382 }
383
384 // convert Case ID and Subject to links to Manage Case
9d72cede
EM
385 if (array_key_exists('civicrm_case_id', $row) &&
386 !empty($rows[$rowNum]['civicrm_c2_id'])
387 ) {
6a488035 388 $url = CRM_Utils_System::url("civicrm/contact/view/case",
9d72cede
EM
389 'reset=1&action=view&cid=' . $row['civicrm_c2_id'] . '&id=' .
390 $row['civicrm_case_id'],
6a488035
TO
391 $this->_absoluteUrl
392 );
393 $rows[$rowNum]['civicrm_case_id_link'] = $url;
394 $rows[$rowNum]['civicrm_case_id_hover'] = ts("Manage Case");
395 $entryFound = TRUE;
396 }
9d72cede
EM
397 if (array_key_exists('civicrm_case_subject', $row) &&
398 !empty($rows[$rowNum]['civicrm_c2_id'])
399 ) {
6a488035 400 $url = CRM_Utils_System::url("civicrm/contact/view/case",
9d72cede
EM
401 'reset=1&action=view&cid=' . $row['civicrm_c2_id'] . '&id=' .
402 $row['civicrm_case_id'],
6a488035
TO
403 $this->_absoluteUrl
404 );
405 $rows[$rowNum]['civicrm_case_subject_link'] = $url;
406 $rows[$rowNum]['civicrm_case_subject_hover'] = ts("Manage Case");
407 $entryFound = TRUE;
408 }
409
410 if (array_key_exists('civicrm_case_is_deleted', $row)) {
411 $value = $row['civicrm_case_is_deleted'];
412 $rows[$rowNum]['civicrm_case_is_deleted'] = $this->deleted_labels[$value];
413 $entryFound = TRUE;
414 }
415
416 if (!$entryFound) {
417 break;
418 }
419 }
420 }
96025800 421
6a488035 422}