Merge pull request #5710 from pratikshad/16304
[civicrm-core.git] / CRM / Report / Form / Contribute / Lybunt.php
CommitLineData
6a488035 1<?php
6a488035
TO
2/*
3 +--------------------------------------------------------------------+
39de6fd5 4 | CiviCRM version 4.6 |
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_Contribute_Lybunt extends CRM_Report_Form {
36
37
38 protected $_charts = array(
39 '' => 'Tabular',
40 'barChart' => 'Bar Chart',
41 'pieChart' => 'Pie Chart',
42 );
43
44 public $_drilldownReport = array('contribute/detail' => 'Link to Detail Report');
45
46 protected $lifeTime_from = NULL;
430ae6dd
TO
47 protected $lifeTime_where = NULL;
48
74cf4551 49 /**
74cf4551
EM
50 */
51 /**
74cf4551 52 */
00be9182 53 public function __construct() {
9d72cede 54 $yearsInPast = 10;
6a488035 55 $yearsInFuture = 1;
9d72cede
EM
56 $date = CRM_Core_SelectValues::date('custom', NULL, $yearsInPast, $yearsInFuture);
57 $count = $date['maxYear'];
6a488035
TO
58 while ($date['minYear'] <= $count) {
59 $optionYear[$date['minYear']] = $date['minYear'];
60 $date['minYear']++;
61 }
62
d62fab33
RN
63 // Check if CiviCampaign is a) enabled and b) has active campaigns
64 $config = CRM_Core_Config::singleton();
65 $campaignEnabled = in_array("CiviCampaign", $config->enableComponents);
66 if ($campaignEnabled) {
67 $getCampaigns = CRM_Campaign_BAO_Campaign::getPermissionedCampaigns(NULL, NULL, TRUE, FALSE, TRUE);
68 $this->activeCampaigns = $getCampaigns['campaigns'];
69 asort($this->activeCampaigns);
f813f78e 70 }
d62fab33 71
6a488035 72 $this->_columns = array(
a130e045
DG
73 'civicrm_contact' => array(
74 'dao' => 'CRM_Contact_DAO_Contact',
75 'grouping' => 'contact-field',
76 'fields' => array(
77 'sort_name' => array(
78 'title' => ts('Donor Name'),
79 'default' => TRUE,
80 'required' => TRUE,
6a488035 81 ),
a130e045
DG
82 'first_name' => array(
83 'title' => ts('First Name'),
84 ),
85 'last_name' => array(
86 'title' => ts('Last Name'),
87 ),
88 'contact_type' => array(
89 'title' => ts('Contact Type'),
90 ),
91 'contact_sub_type' => array(
92 'title' => ts('Contact Subtype'),
6a488035
TO
93 ),
94 ),
a130e045
DG
95 'filters' => array(
96 'sort_name' => array(
97 'title' => ts('Donor Name'),
98 'operator' => 'like',
6a488035
TO
99 ),
100 ),
a130e045
DG
101 ),
102 'civicrm_email' => array(
103 'dao' => 'CRM_Core_DAO_Email',
104 'grouping' => 'contact-field',
105 'fields' => array(
106 'email' => array(
107 'title' => ts('Email'),
108 'default' => TRUE,
6a488035
TO
109 ),
110 ),
a130e045
DG
111 ),
112 'civicrm_phone' => array(
113 'dao' => 'CRM_Core_DAO_Phone',
114 'grouping' => 'contact-field',
115 'fields' => array(
116 'phone' => array(
117 'title' => ts('Phone'),
118 'default' => TRUE,
119 ),
120 ),
121 ),
ae5ffbb7
TO
122 );
123 $this->_columns += $this->addAddressFields();
124 $this->_columns += array(
a130e045
DG
125 'civicrm_contribution' => array(
126 'dao' => 'CRM_Contribute_DAO_Contribution',
127 'fields' => array(
128 'contact_id' => array(
129 'title' => ts('contactId'),
130 'no_display' => TRUE,
131 'required' => TRUE,
132 'no_repeat' => TRUE,
133 ),
134 'total_amount' => array(
135 'title' => ts('Total Amount'),
136 'no_display' => TRUE,
137 'required' => TRUE,
138 'no_repeat' => TRUE,
6a488035 139 ),
a130e045
DG
140 'receive_date' => array(
141 'title' => ts('Year'),
142 'no_display' => TRUE,
143 'required' => TRUE,
144 'no_repeat' => TRUE,
6a488035
TO
145 ),
146 ),
a130e045
DG
147 'filters' => array(
148 'yid' => array(
149 'name' => 'receive_date',
150 'title' => ts('This Year'),
151 'operatorType' => CRM_Report_Form::OP_SELECT,
152 'options' => $optionYear,
153 'default' => date('Y'),
154 ),
155 'financial_type_id' => array(
156 'title' => ts('Financial Type'),
157 'operatorType' => CRM_Report_Form::OP_MULTISELECT,
158 'options' => CRM_Contribute_PseudoConstant::financialType(),
159 ),
160 'contribution_status_id' => array(
161 'title' => ts('Contribution Status'),
162 'operatorType' => CRM_Report_Form::OP_MULTISELECT,
163 'options' => CRM_Contribute_PseudoConstant::contributionStatus(),
164 'default' => array('1'),
165 ),
166 ),
167 ),
168 );
6a488035 169
d62fab33
RN
170 // If we have a campaign, build out the relevant elements
171 if ($campaignEnabled && !empty($this->activeCampaigns)) {
172 $this->_columns['civicrm_contribution']['fields']['campaign_id'] = array(
173 'title' => ts('Campaign'),
174 'default' => 'false',
175 );
9d72cede
EM
176 $this->_columns['civicrm_contribution']['filters']['campaign_id'] = array(
177 'title' => ts('Campaign'),
d62fab33
RN
178 'operatorType' => CRM_Report_Form::OP_MULTISELECT,
179 'options' => $this->activeCampaigns,
180 );
181 }
182
16e2e80c 183 $this->_groupFilter = TRUE;
6a488035
TO
184 $this->_tagFilter = TRUE;
185 parent::__construct();
186 }
187
00be9182 188 public function preProcess() {
6a488035
TO
189 parent::preProcess();
190 }
191
00be9182 192 public function select() {
6a488035
TO
193
194 $this->_columnHeaders = $select = array();
195 $current_year = $this->_params['yid_value'];
196 $previous_year = $current_year - 1;
197
6a488035
TO
198 foreach ($this->_columns as $tableName => $table) {
199
200 if (array_key_exists('fields', $table)) {
201 foreach ($table['fields'] as $fieldName => $field) {
202
9d72cede
EM
203 if (!empty($field['required']) ||
204 !empty($this->_params['fields'][$fieldName])
205 ) {
6a488035
TO
206 if ($fieldName == 'total_amount') {
207 $select[] = "SUM({$field['dbAlias']}) as {$tableName}_{$fieldName}";
208
209 $this->_columnHeaders["{$previous_year}"]['type'] = $field['type'];
210 $this->_columnHeaders["{$previous_year}"]['title'] = $previous_year;
211
212 $this->_columnHeaders["civicrm_life_time_total"]['type'] = $field['type'];
213 $this->_columnHeaders["civicrm_life_time_total"]['title'] = 'LifeTime';;
214 }
215 elseif ($fieldName == 'receive_date') {
9d72cede
EM
216 $select[] = self::fiscalYearOffset($field['dbAlias']) .
217 " as {$tableName}_{$fieldName} ";
6a488035
TO
218 }
219 else {
220 $select[] = "{$field['dbAlias']} as {$tableName}_{$fieldName} ";
221 $this->_columnHeaders["{$tableName}_{$fieldName}"]['type'] = CRM_Utils_Array::value('type', $field);
222 $this->_columnHeaders["{$tableName}_{$fieldName}"]['title'] = CRM_Utils_Array::value('title', $field);
223 }
224
a7488080 225 if (!empty($field['no_display'])) {
6a488035
TO
226 $this->_columnHeaders["{$tableName}_{$fieldName}"]['no_display'] = TRUE;
227 }
228 }
229 }
230 }
231 }
232
233 $this->_select = "SELECT " . implode(', ', $select) . " ";
234 }
235
00be9182 236 public function from() {
6a488035
TO
237
238 $this->_from = "
239 FROM civicrm_contribution {$this->_aliases['civicrm_contribution']}
1c44e08e 240 INNER JOIN civicrm_contact {$this->_aliases['civicrm_contact']}
6a488035 241 ON {$this->_aliases['civicrm_contact']}.id = {$this->_aliases['civicrm_contribution']}.contact_id
a27c90f2
NG
242 {$this->_aclFrom}";
243
244 if ($this->isTableSelected('civicrm_email')) {
245 $this->_from .= "
1c44e08e 246 LEFT JOIN civicrm_email {$this->_aliases['civicrm_email']}
a27c90f2
NG
247 ON {$this->_aliases['civicrm_contact']}.id = {$this->_aliases['civicrm_email']}.contact_id
248 AND {$this->_aliases['civicrm_email']}.is_primary = 1";
249 }
250 if ($this->isTableSelected('civicrm_phone')) {
251 $this->_from .= "
1c44e08e 252 LEFT JOIN civicrm_phone {$this->_aliases['civicrm_phone']}
6a488035 253 ON {$this->_aliases['civicrm_contact']}.id = {$this->_aliases['civicrm_phone']}.contact_id AND
a27c90f2
NG
254 {$this->_aliases['civicrm_phone']}.is_primary = 1";
255 }
72a9af52 256 $this->addAddressFromClause();
6a488035
TO
257 }
258
00be9182 259 public function where() {
6a488035 260 $this->_statusClause = "";
9d72cede
EM
261 $clauses = array($this->_aliases['civicrm_contribution'] . '.is_test = 0');
262 $current_year = $this->_params['yid_value'];
263 $previous_year = $current_year - 1;
6a488035
TO
264
265 foreach ($this->_columns as $tableName => $table) {
266 if (array_key_exists('filters', $table)) {
267 foreach ($table['filters'] as $fieldName => $field) {
268 $clause = NULL;
269 if ($fieldName == 'yid') {
96c28299 270 $clause = self::fiscalYearOffset('contribution_civireport.receive_date') . " = $previous_year";
6a488035 271 }
84178120 272 elseif (CRM_Utils_Array::value('type', $field) & CRM_Utils_Type::T_DATE
9d72cede 273 ) {
6a488035 274 $relative = CRM_Utils_Array::value("{$fieldName}_relative", $this->_params);
9d72cede
EM
275 $from = CRM_Utils_Array::value("{$fieldName}_from", $this->_params);
276 $to = CRM_Utils_Array::value("{$fieldName}_to", $this->_params);
6a488035
TO
277
278 if ($relative || $from || $to) {
279 $clause = $this->dateClause($field['name'], $relative, $from, $to, $field['type']);
280 }
281 }
282 else {
283 $op = CRM_Utils_Array::value("{$fieldName}_op", $this->_params);
284 if ($op) {
285 $clause = $this->whereClause($field,
286 $op,
287 CRM_Utils_Array::value("{$fieldName}_value", $this->_params),
288 CRM_Utils_Array::value("{$fieldName}_min", $this->_params),
289 CRM_Utils_Array::value("{$fieldName}_max", $this->_params)
290 );
9d72cede
EM
291 if (($fieldName == 'contribution_status_id' ||
292 $fieldName == 'financial_type_id') && !empty($clause)
293 ) {
6a488035
TO
294 $this->_statusClause .= " AND " . $clause;
295 }
296 }
297 }
298
299 if (!empty($clause)) {
300 $clauses[] = $clause;
301 }
302 }
303 }
304 }
305
306 $this->_where = 'WHERE ' . implode(' AND ', $clauses);
307
308 if ($this->_aclWhere) {
309 $this->_where .= " AND {$this->_aclWhere} ";
310 }
311 }
312
00be9182 313 public function groupBy() {
ae5ffbb7 314 $this->_groupBy = "GROUP BY {$this->_aliases['civicrm_contribution']}.contact_id, " .
9d72cede
EM
315 self::fiscalYearOffset($this->_aliases['civicrm_contribution'] .
316 '.receive_date') . " WITH ROLLUP";
6a488035
TO
317 $this->assign('chartSupported', TRUE);
318 }
319
74cf4551
EM
320 /**
321 * @param $rows
322 *
323 * @return array
324 */
00be9182 325 public function statistics(&$rows) {
6a488035
TO
326 $statistics = parent::statistics($rows);
327 if (!empty($rows)) {
328 $select = "
1c44e08e 329 SELECT
6a488035
TO
330 SUM({$this->_aliases['civicrm_contribution']}.total_amount ) as amount ";
331
332 $sql = "{$select} {$this->_from} {$this->_where}";
333 $dao = CRM_Core_DAO::executeQuery($sql);
334 if ($dao->fetch()) {
335 $statistics['counts']['amount'] = array(
336 'value' => $dao->amount,
337 'title' => 'Total LifeTime',
338 'type' => CRM_Utils_Type::T_MONEY,
339 );
340 }
341 }
342
343 return $statistics;
344 }
345
00be9182 346 public function postProcess() {
6a488035
TO
347
348 // get ready with post process params
349 $this->beginPostProcess();
350
351 // get the acl clauses built before we assemble the query
352 $this->buildACLClause($this->_aliases['civicrm_contact']);
353 $this->select();
354 $this->from();
355 $this->where();
356 $this->groupBy();
357
358 $rows = $contactIds = array();
a7488080 359 if (empty($this->_params['charts'])) {
6a488035
TO
360 $this->limit();
361 $getContacts = "SELECT SQL_CALC_FOUND_ROWS {$this->_aliases['civicrm_contact']}.id as cid {$this->_from} {$this->_where} GROUP BY {$this->_aliases['civicrm_contact']}.id {$this->_limit}";
362
363 $dao = CRM_Core_DAO::executeQuery($getContacts);
364
365 while ($dao->fetch()) {
366 $contactIds[] = $dao->cid;
367 }
368 $dao->free();
369 $this->setPager();
370 }
371
8cc574cf 372 if (!empty($contactIds) || !empty($this->_params['charts'])) {
a7488080 373 if (!empty($this->_params['charts'])) {
6a488035
TO
374 $sql = "{$this->_select} {$this->_from} {$this->_where} {$this->_groupBy}";
375 }
376 else {
ae5ffbb7 377 $sql = "{$this->_select} {$this->_from} WHERE {$this->_aliases['civicrm_contact']}.id IN (" .
9d72cede
EM
378 implode(',', $contactIds) .
379 ") AND {$this->_aliases['civicrm_contribution']}.is_test = 0 {$this->_statusClause} {$this->_groupBy} ";
6a488035
TO
380 }
381
9d72cede
EM
382 $dao = CRM_Core_DAO::executeQuery($sql);
383 $current_year = $this->_params['yid_value'];
6a488035
TO
384 $previous_year = $current_year - 1;
385
386 while ($dao->fetch()) {
387
388 if (!$dao->civicrm_contribution_contact_id) {
389 continue;
390 }
391
392 $row = array();
393 foreach ($this->_columnHeaders as $key => $value) {
394 if (property_exists($dao, $key)) {
395 $rows[$dao->civicrm_contribution_contact_id][$key] = $dao->$key;
396 }
397 }
398
399 if ($dao->civicrm_contribution_receive_date) {
400 if ($dao->civicrm_contribution_receive_date == $previous_year) {
401 $rows[$dao->civicrm_contribution_contact_id][$dao->civicrm_contribution_receive_date] = $dao->civicrm_contribution_total_amount;
402 }
403 }
404 else {
405 $rows[$dao->civicrm_contribution_contact_id]['civicrm_life_time_total'] = $dao->civicrm_contribution_total_amount;
406 }
407 }
408 $dao->free();
409 }
410
411 $this->formatDisplay($rows, FALSE);
412
413 // assign variables to templates
414 $this->doTemplateAssignment($rows);
415
416 // do print / pdf / instance stuff if needed
417 $this->endPostProcess($rows);
418 }
419
74cf4551
EM
420 /**
421 * @param $rows
422 */
00be9182 423 public function buildChart(&$rows) {
6a488035
TO
424
425 $graphRows = array();
9d72cede
EM
426 $count = 0;
427 $display = array();
6a488035
TO
428
429 $current_year = $this->_params['yid_value'];
430 $previous_year = $current_year - 1;
431 $interval[$previous_year] = $previous_year;
432 $interval['life_time'] = 'Life Time';
433
434 foreach ($rows as $key => $row) {
9d72cede
EM
435 $display['life_time'] = CRM_Utils_Array::value('life_time', $display) +
436 $row['civicrm_life_time_total'];
ae5ffbb7 437 $display[$previous_year] = CRM_Utils_Array::value($previous_year, $display) + $row[$previous_year];
6a488035
TO
438 }
439
9d72cede 440 $config = CRM_Core_Config::Singleton();
6a488035 441 $graphRows['value'] = $display;
9d72cede
EM
442 $chartInfo = array(
443 'legend' => ts('Lybunt Report'),
6a488035
TO
444 'xname' => ts('Year'),
445 'yname' => ts('Amount (%1)', array(1 => $config->defaultCurrency)),
446 );
447 if ($this->_params['charts']) {
448 // build chart.
449 CRM_Utils_OpenFlashChart::reportChart($graphRows, $this->_params['charts'], $interval, $chartInfo);
450 $this->assign('chartType', $this->_params['charts']);
451 }
452 }
453
74cf4551 454 /**
ced9bfed
EM
455 * Alter display of rows.
456 *
457 * Iterate through the rows retrieved via SQL and make changes for display purposes,
458 * such as rendering contacts as links.
459 *
460 * @param array $rows
461 * Rows generated by SQL, with an array for each row.
74cf4551 462 */
00be9182 463 public function alterDisplay(&$rows) {
72a9af52
NG
464 $entryFound = FALSE;
465
6a488035
TO
466 foreach ($rows as $rowNum => $row) {
467 //Convert Display name into link
468 if (array_key_exists('civicrm_contact_sort_name', $row) &&
469 array_key_exists('civicrm_contribution_contact_id', $row)
470 ) {
471 $url = CRM_Report_Utils_Report::getNextUrl('contribute/detail',
9d72cede
EM
472 'reset=1&force=1&id_op=eq&id_value=' .
473 $row['civicrm_contribution_contact_id'],
6a488035
TO
474 $this->_absoluteUrl, $this->_id, $this->_drilldownReport
475 );
476 $rows[$rowNum]['civicrm_contact_sort_name_link'] = $url;
477 $rows[$rowNum]['civicrm_contact_sort_name_hover'] = ts("View Contribution Details for this Contact.");
72a9af52 478 $entryFound = TRUE;
6a488035 479 }
d62fab33
RN
480
481 // convert campaign_id to campaign title
482 if (array_key_exists('civicrm_contribution_campaign_id', $row)) {
483 if ($value = $row['civicrm_contribution_campaign_id']) {
484 $rows[$rowNum]['civicrm_contribution_campaign_id'] = $this->activeCampaigns[$value];
485 $entryFound = TRUE;
486 }
487 }
a27c90f2 488
72a9af52
NG
489 $entryFound = $this->alterDisplayAddressFields($row, $rows, $rowNum, 'contribute/detail', 'List all contribution(s)') ? TRUE : $entryFound;
490
491 // skip looking further in rows, if first row itself doesn't
492 // have the column we need
493 if (!$entryFound) {
494 break;
a27c90f2 495 }
6a488035
TO
496 }
497 }
498
74cf4551 499 /**
4f1f1f2a 500 * Override "This Year" $op options
74cf4551
EM
501 * @param string $type
502 * @param null $fieldName
503 *
504 * @return array
505 */
00be9182 506 public function getOperationPair($type = "string", $fieldName = NULL) {
6a488035 507 if ($fieldName == 'yid') {
9d72cede
EM
508 return array(
509 'calendar' => ts('Is Calendar Year'),
21dfd5f5 510 'fiscal' => ts('Fiscal Year Starting'),
9d72cede 511 );
6a488035
TO
512 }
513 return parent::getOperationPair($type, $fieldName);
514 }
96025800 515
6a488035 516}