a few comment fixes
[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 +--------------------------------------------------------------------+
06b69b18 6 | Copyright CiviCRM LLC (c) 2004-2014 |
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
06b69b18 31 * @copyright CiviCRM LLC (c) 2004-2014
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') {
270 $clause = "contribution_civireport.contact_id NOT IN
1c44e08e 271(SELECT distinct contri.contact_id FROM civicrm_contribution contri
9d72cede
EM
272 WHERE contri.is_test = 0 AND " .
273 self::fiscalYearOffset('contri.receive_date') . " = $current_year) AND contribution_civireport.contact_id IN (SELECT distinct contri.contact_id FROM civicrm_contribution contri
274 WHERE " . self::fiscalYearOffset('contri.receive_date') .
275 " = $previous_year AND contri.is_test = 0)";
6a488035 276 }
84178120 277 elseif (CRM_Utils_Array::value('type', $field) & CRM_Utils_Type::T_DATE
9d72cede 278 ) {
6a488035 279 $relative = CRM_Utils_Array::value("{$fieldName}_relative", $this->_params);
9d72cede
EM
280 $from = CRM_Utils_Array::value("{$fieldName}_from", $this->_params);
281 $to = CRM_Utils_Array::value("{$fieldName}_to", $this->_params);
6a488035
TO
282
283 if ($relative || $from || $to) {
284 $clause = $this->dateClause($field['name'], $relative, $from, $to, $field['type']);
285 }
286 }
287 else {
288 $op = CRM_Utils_Array::value("{$fieldName}_op", $this->_params);
289 if ($op) {
290 $clause = $this->whereClause($field,
291 $op,
292 CRM_Utils_Array::value("{$fieldName}_value", $this->_params),
293 CRM_Utils_Array::value("{$fieldName}_min", $this->_params),
294 CRM_Utils_Array::value("{$fieldName}_max", $this->_params)
295 );
9d72cede
EM
296 if (($fieldName == 'contribution_status_id' ||
297 $fieldName == 'financial_type_id') && !empty($clause)
298 ) {
6a488035
TO
299 $this->_statusClause .= " AND " . $clause;
300 }
301 }
302 }
303
304 if (!empty($clause)) {
305 $clauses[] = $clause;
306 }
307 }
308 }
309 }
310
311 $this->_where = 'WHERE ' . implode(' AND ', $clauses);
312
313 if ($this->_aclWhere) {
314 $this->_where .= " AND {$this->_aclWhere} ";
315 }
316 }
317
00be9182 318 public function groupBy() {
ae5ffbb7 319 $this->_groupBy = "GROUP BY {$this->_aliases['civicrm_contribution']}.contact_id, " .
9d72cede
EM
320 self::fiscalYearOffset($this->_aliases['civicrm_contribution'] .
321 '.receive_date') . " WITH ROLLUP";
6a488035
TO
322 $this->assign('chartSupported', TRUE);
323 }
324
74cf4551
EM
325 /**
326 * @param $rows
327 *
328 * @return array
329 */
00be9182 330 public function statistics(&$rows) {
6a488035
TO
331 $statistics = parent::statistics($rows);
332 if (!empty($rows)) {
333 $select = "
1c44e08e 334 SELECT
6a488035
TO
335 SUM({$this->_aliases['civicrm_contribution']}.total_amount ) as amount ";
336
337 $sql = "{$select} {$this->_from} {$this->_where}";
338 $dao = CRM_Core_DAO::executeQuery($sql);
339 if ($dao->fetch()) {
340 $statistics['counts']['amount'] = array(
341 'value' => $dao->amount,
342 'title' => 'Total LifeTime',
343 'type' => CRM_Utils_Type::T_MONEY,
344 );
345 }
346 }
347
348 return $statistics;
349 }
350
00be9182 351 public function postProcess() {
6a488035
TO
352
353 // get ready with post process params
354 $this->beginPostProcess();
355
356 // get the acl clauses built before we assemble the query
357 $this->buildACLClause($this->_aliases['civicrm_contact']);
358 $this->select();
359 $this->from();
360 $this->where();
361 $this->groupBy();
362
363 $rows = $contactIds = array();
a7488080 364 if (empty($this->_params['charts'])) {
6a488035
TO
365 $this->limit();
366 $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}";
367
368 $dao = CRM_Core_DAO::executeQuery($getContacts);
369
370 while ($dao->fetch()) {
371 $contactIds[] = $dao->cid;
372 }
373 $dao->free();
374 $this->setPager();
375 }
376
8cc574cf 377 if (!empty($contactIds) || !empty($this->_params['charts'])) {
a7488080 378 if (!empty($this->_params['charts'])) {
6a488035
TO
379 $sql = "{$this->_select} {$this->_from} {$this->_where} {$this->_groupBy}";
380 }
381 else {
ae5ffbb7 382 $sql = "{$this->_select} {$this->_from} WHERE {$this->_aliases['civicrm_contact']}.id IN (" .
9d72cede
EM
383 implode(',', $contactIds) .
384 ") AND {$this->_aliases['civicrm_contribution']}.is_test = 0 {$this->_statusClause} {$this->_groupBy} ";
6a488035
TO
385 }
386
9d72cede
EM
387 $dao = CRM_Core_DAO::executeQuery($sql);
388 $current_year = $this->_params['yid_value'];
6a488035
TO
389 $previous_year = $current_year - 1;
390
391 while ($dao->fetch()) {
392
393 if (!$dao->civicrm_contribution_contact_id) {
394 continue;
395 }
396
397 $row = array();
398 foreach ($this->_columnHeaders as $key => $value) {
399 if (property_exists($dao, $key)) {
400 $rows[$dao->civicrm_contribution_contact_id][$key] = $dao->$key;
401 }
402 }
403
404 if ($dao->civicrm_contribution_receive_date) {
405 if ($dao->civicrm_contribution_receive_date == $previous_year) {
406 $rows[$dao->civicrm_contribution_contact_id][$dao->civicrm_contribution_receive_date] = $dao->civicrm_contribution_total_amount;
407 }
408 }
409 else {
410 $rows[$dao->civicrm_contribution_contact_id]['civicrm_life_time_total'] = $dao->civicrm_contribution_total_amount;
411 }
412 }
413 $dao->free();
414 }
415
416 $this->formatDisplay($rows, FALSE);
417
418 // assign variables to templates
419 $this->doTemplateAssignment($rows);
420
421 // do print / pdf / instance stuff if needed
422 $this->endPostProcess($rows);
423 }
424
74cf4551
EM
425 /**
426 * @param $rows
427 */
00be9182 428 public function buildChart(&$rows) {
6a488035
TO
429
430 $graphRows = array();
9d72cede
EM
431 $count = 0;
432 $display = array();
6a488035
TO
433
434 $current_year = $this->_params['yid_value'];
435 $previous_year = $current_year - 1;
436 $interval[$previous_year] = $previous_year;
437 $interval['life_time'] = 'Life Time';
438
439 foreach ($rows as $key => $row) {
9d72cede
EM
440 $display['life_time'] = CRM_Utils_Array::value('life_time', $display) +
441 $row['civicrm_life_time_total'];
ae5ffbb7 442 $display[$previous_year] = CRM_Utils_Array::value($previous_year, $display) + $row[$previous_year];
6a488035
TO
443 }
444
9d72cede 445 $config = CRM_Core_Config::Singleton();
6a488035 446 $graphRows['value'] = $display;
9d72cede
EM
447 $chartInfo = array(
448 'legend' => ts('Lybunt Report'),
6a488035
TO
449 'xname' => ts('Year'),
450 'yname' => ts('Amount (%1)', array(1 => $config->defaultCurrency)),
451 );
452 if ($this->_params['charts']) {
453 // build chart.
454 CRM_Utils_OpenFlashChart::reportChart($graphRows, $this->_params['charts'], $interval, $chartInfo);
455 $this->assign('chartType', $this->_params['charts']);
456 }
457 }
458
74cf4551 459 /**
ced9bfed
EM
460 * Alter display of rows.
461 *
462 * Iterate through the rows retrieved via SQL and make changes for display purposes,
463 * such as rendering contacts as links.
464 *
465 * @param array $rows
466 * Rows generated by SQL, with an array for each row.
74cf4551 467 */
00be9182 468 public function alterDisplay(&$rows) {
72a9af52
NG
469 $entryFound = FALSE;
470
6a488035
TO
471 foreach ($rows as $rowNum => $row) {
472 //Convert Display name into link
473 if (array_key_exists('civicrm_contact_sort_name', $row) &&
474 array_key_exists('civicrm_contribution_contact_id', $row)
475 ) {
476 $url = CRM_Report_Utils_Report::getNextUrl('contribute/detail',
9d72cede
EM
477 'reset=1&force=1&id_op=eq&id_value=' .
478 $row['civicrm_contribution_contact_id'],
6a488035
TO
479 $this->_absoluteUrl, $this->_id, $this->_drilldownReport
480 );
481 $rows[$rowNum]['civicrm_contact_sort_name_link'] = $url;
482 $rows[$rowNum]['civicrm_contact_sort_name_hover'] = ts("View Contribution Details for this Contact.");
72a9af52 483 $entryFound = TRUE;
6a488035 484 }
d62fab33
RN
485
486 // convert campaign_id to campaign title
487 if (array_key_exists('civicrm_contribution_campaign_id', $row)) {
488 if ($value = $row['civicrm_contribution_campaign_id']) {
489 $rows[$rowNum]['civicrm_contribution_campaign_id'] = $this->activeCampaigns[$value];
490 $entryFound = TRUE;
491 }
492 }
a27c90f2 493
72a9af52
NG
494 $entryFound = $this->alterDisplayAddressFields($row, $rows, $rowNum, 'contribute/detail', 'List all contribution(s)') ? TRUE : $entryFound;
495
496 // skip looking further in rows, if first row itself doesn't
497 // have the column we need
498 if (!$entryFound) {
499 break;
a27c90f2 500 }
6a488035
TO
501 }
502 }
503
74cf4551 504 /**
4f1f1f2a 505 * Override "This Year" $op options
74cf4551
EM
506 * @param string $type
507 * @param null $fieldName
508 *
509 * @return array
510 */
00be9182 511 public function getOperationPair($type = "string", $fieldName = NULL) {
6a488035 512 if ($fieldName == 'yid') {
9d72cede
EM
513 return array(
514 'calendar' => ts('Is Calendar Year'),
21dfd5f5 515 'fiscal' => ts('Fiscal Year Starting'),
9d72cede 516 );
6a488035
TO
517 }
518 return parent::getOperationPair($type, $fieldName);
519 }
96025800 520
6a488035 521}