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