Merge pull request #14118 from eileenmcnaughton/no_fin_item
[civicrm-core.git] / CRM / Batch / BAO / Batch.php
CommitLineData
6a488035
TO
1<?php
2/*
3 +--------------------------------------------------------------------+
fee14197 4 | CiviCRM version 5 |
6a488035 5 +--------------------------------------------------------------------+
6b83d5bd 6 | Copyright CiviCRM LLC (c) 2004-2019 |
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
6b83d5bd 31 * @copyright CiviCRM LLC (c) 2004-2019
6a488035
TO
32 */
33
34/**
ce064e4f 35 * Batch BAO class.
6a488035
TO
36 */
37class CRM_Batch_BAO_Batch extends CRM_Batch_DAO_Batch {
38
39 /**
eceb18cc 40 * Cache for the current batch object.
62d3ee27 41 * @var object
6a488035 42 */
62d3ee27 43 public static $_batch = NULL;
6a488035
TO
44
45 /**
46 * Not sure this is the best way to do this. Depends on how exportFinancialBatch() below gets called.
47 * Maybe a parameter to that function is better.
62d3ee27 48 * @var string
6a488035 49 */
62d3ee27 50 public static $_exportFormat = NULL;
6a488035
TO
51
52 /**
eceb18cc 53 * Create a new batch.
6a488035 54 *
82d480a5 55 * @param array $params
6a488035 56 *
a6c01b45
CW
57 * @return object
58 * $batch batch object
6a488035 59 */
92e088c9 60 public static function create(&$params) {
debff434
PN
61 $op = 'edit';
62 $batchId = CRM_Utils_Array::value('id', $params);
63 if (!$batchId) {
64 $op = 'create';
6a488035
TO
65 $params['name'] = CRM_Utils_String::titleToVar($params['title']);
66 }
debff434 67 CRM_Utils_Hook::pre($op, 'Batch', $batchId, $params);
6a488035
TO
68 $batch = new CRM_Batch_DAO_Batch();
69 $batch->copyValues($params);
6a488035
TO
70 $batch->save();
71
debff434
PN
72 CRM_Utils_Hook::post($op, 'Batch', $batch->id, $batch);
73
6a488035
TO
74 return $batch;
75 }
76
77 /**
eceb18cc 78 * Retrieve the information about the batch.
6a488035 79 *
82d480a5
TO
80 * @param array $params
81 * (reference ) an assoc array of name/value pairs.
82 * @param array $defaults
83 * (reference ) an assoc array to hold the flattened values.
6a488035 84 *
a6c01b45
CW
85 * @return array
86 * CRM_Batch_BAO_Batch object on success, null otherwise
6a488035 87 */
00be9182 88 public static function retrieve(&$params, &$defaults) {
6a488035
TO
89 $batch = new CRM_Batch_DAO_Batch();
90 $batch->copyValues($params);
91 if ($batch->find(TRUE)) {
92 CRM_Core_DAO::storeValues($batch, $defaults);
93 return $batch;
94 }
95 return NULL;
96 }
97
98 /**
eceb18cc 99 * Get profile id associated with the batch type.
6a488035 100 *
82d480a5
TO
101 * @param int $batchTypeId
102 * Batch type id.
6a488035 103 *
a6c01b45
CW
104 * @return int
105 * $profileId profile id
6a488035 106 */
00be9182 107 public static function getProfileId($batchTypeId) {
6a488035
TO
108 //retrieve the profile specific to batch type
109 switch ($batchTypeId) {
110 case 1:
9fa00ed1 111 case 3:
112 //batch profile used for pledges
6a488035
TO
113 $profileName = "contribution_batch_entry";
114 break;
115
116 case 2:
117 //batch profile used for memberships
118 $profileName = "membership_batch_entry";
04e6444d 119 break;
6a488035
TO
120 }
121
122 // get and return the profile id
123 return CRM_Core_DAO::getFieldValue('CRM_Core_BAO_UFGroup', $profileName, 'id', 'name');
124 }
125
126 /**
eceb18cc 127 * Generate batch name.
6a488035 128 *
72b3a70c
CW
129 * @return string
130 * batch name
6a488035 131 */
00be9182 132 public static function generateBatchName() {
6a488035
TO
133 $sql = "SELECT max(id) FROM civicrm_batch";
134 $batchNo = CRM_Core_DAO::singleValueQuery($sql) + 1;
be2fb01f 135 return ts('Batch %1', [1 => $batchNo]) . ': ' . date('Y-m-d');
6a488035
TO
136 }
137
6a488035 138 /**
eceb18cc 139 * Delete batch entry.
6a488035 140 *
82d480a5
TO
141 * @param int $batchId
142 * Batch id.
6a488035 143 *
72b3a70c 144 * @return bool
6a488035 145 */
00be9182 146 public static function deleteBatch($batchId) {
6a488035 147 // delete entry from batch table
8f30d0b9 148 CRM_Utils_Hook::pre('delete', 'Batch', $batchId, CRM_Core_DAO::$_nullArray);
6a488035
TO
149 $batch = new CRM_Batch_DAO_Batch();
150 $batch->id = $batchId;
151 $batch->delete();
8f30d0b9 152 CRM_Utils_Hook::post('delete', 'Batch', $batch->id, $batch);
691df66d 153 return TRUE;
6a488035
TO
154 }
155
6a488035 156 /**
eceb18cc 157 * wrapper for ajax batch selector.
6a488035 158 *
82d480a5
TO
159 * @param array $params
160 * Associated array for params record id.
6a488035 161 *
a6c01b45
CW
162 * @return array
163 * associated array of batch list
6a488035 164 */
3fab79d8 165 public static function getBatchListSelector(&$params) {
6a488035
TO
166 // format the params
167 $params['offset'] = ($params['page'] - 1) * $params['rp'];
168 $params['rowCount'] = $params['rp'];
169 $params['sort'] = CRM_Utils_Array::value('sortBy', $params);
170
171 // get batches
172 $batches = self::getBatchList($params);
173
174 // get batch totals for open batches
be2fb01f
CW
175 $fetchTotals = [];
176 $batchStatus = CRM_Core_PseudoConstant::get('CRM_Batch_DAO_Batch', 'status_id', ['labelColumn' => 'name']);
177 $batchStatus = [
2d818e4a
PN
178 array_search('Open', $batchStatus),
179 array_search('Reopened', $batchStatus),
be2fb01f 180 ];
6a488035
TO
181 if ($params['context'] == 'financialBatch') {
182 foreach ($batches as $id => $batch) {
2d818e4a 183 if (in_array($batch['status_id'], $batchStatus)) {
6a488035
TO
184 $fetchTotals[] = $id;
185 }
186 }
187 }
188 $totals = self::batchTotals($fetchTotals);
189
190 // add count
191 $params['total'] = self::getBatchCount($params);
192
193 // format params and add links
be2fb01f 194 $batchList = [];
6a488035
TO
195
196 foreach ($batches as $id => $value) {
be2fb01f 197 $batch = [];
6a488035
TO
198 if ($params['context'] == 'financialBatch') {
199 $batch['check'] = $value['check'];
200 }
201 $batch['batch_name'] = $value['title'];
957bbb1d 202 $batch['total'] = '';
6a488035
TO
203 $batch['payment_instrument'] = $value['payment_instrument'];
204 $batch['item_count'] = CRM_Utils_Array::value('item_count', $value);
a46732f8 205 $batch['type'] = CRM_Utils_Array::value('batch_type', $value);
a7488080 206 if (!empty($value['total'])) {
def0f6ae
BS
207 // CRM-21205
208 $batch['total'] = CRM_Utils_Money::format($value['total'], $value['currency']);
6a488035
TO
209 }
210
211 // Compare totals with actuals
212 if (isset($totals[$id])) {
213 $batch['item_count'] = self::displayTotals($totals[$id]['item_count'], $batch['item_count']);
214 $batch['total'] = self::displayTotals(CRM_Utils_Money::format($totals[$id]['total']), $batch['total']);
215 }
216 $batch['status'] = $value['batch_status'];
217 $batch['created_by'] = $value['created_by'];
218 $batch['links'] = $value['action'];
219 $batchList[$id] = $batch;
220 }
221 return $batchList;
222 }
223
224 /**
eceb18cc 225 * Get list of batches.
6a488035 226 *
82d480a5
TO
227 * @param array $params
228 * Associated array for params.
102fe859
EM
229 *
230 * @return array
6a488035 231 */
00be9182 232 public static function getBatchList(&$params) {
857236d0 233 $apiParams = self::whereClause($params);
6a488035
TO
234
235 if (!empty($params['rowCount']) && is_numeric($params['rowCount'])
236 && is_numeric($params['offset']) && $params['rowCount'] > 0
237 ) {
be2fb01f 238 $apiParams['options'] = ['offset' => $params['offset'], 'limit' => $params['rowCount']];
6a488035 239 }
857236d0 240 $apiParams['options']['sort'] = 'id DESC';
6a488035 241 if (!empty($params['sort'])) {
857236d0 242 $apiParams['options']['sort'] = CRM_Utils_Type::escape($params['sort'], 'String');
6a488035
TO
243 }
244
be2fb01f 245 $return = [
857236d0
PN
246 "id",
247 "name",
248 "title",
249 "description",
250 "created_date",
251 "status_id",
252 "modified_id",
253 "modified_date",
254 "type_id",
255 "mode_id",
256 "total",
257 "item_count",
258 "exported_date",
259 "payment_instrument_id",
260 "created_id.sort_name",
261 "created_id",
be2fb01f 262 ];
857236d0
PN
263 $apiParams['return'] = $return;
264 $batches = civicrm_api3('Batch', 'get', $apiParams);
3fab79d8 265 $obj = new CRM_Batch_BAO_Batch();
a7488080 266 if (!empty($params['context'])) {
3fab79d8 267 $links = $obj->links($params['context']);
6a488035
TO
268 }
269 else {
3fab79d8 270 $links = $obj->links();
6a488035
TO
271 }
272
97afa853
AS
273 $batchTypes = CRM_Core_PseudoConstant::get('CRM_Batch_DAO_Batch', 'type_id');
274 $batchStatus = CRM_Core_PseudoConstant::get('CRM_Batch_DAO_Batch', 'status_id');
be2fb01f 275 $batchStatusByName = CRM_Core_PseudoConstant::get('CRM_Batch_DAO_Batch', 'status_id', ['labelColumn' => 'name']);
6a488035
TO
276 $paymentInstrument = CRM_Contribute_PseudoConstant::paymentInstrument();
277
be2fb01f 278 $results = [];
857236d0 279 foreach ($batches['values'] as $values) {
6a488035 280 $newLinks = $links;
6a488035
TO
281 $action = array_sum(array_keys($newLinks));
282
2d818e4a 283 if ($values['status_id'] == array_search('Closed', $batchStatusByName) && $params['context'] != 'financialBatch') {
be2fb01f 284 $newLinks = [];
6a488035
TO
285 }
286 elseif ($params['context'] == 'financialBatch') {
6c552737 287 $values['check'] = "<input type='checkbox' id='check_" .
857236d0 288 $values['id'] .
0b0941e2 289 "' name='check_" .
857236d0 290 $values['id'] .
0b0941e2 291 "' value='1' data-status_id='" .
92fcb95f 292 $values['status_id'] . "' class='select-row'></input>";
6a488035 293
2d818e4a
PN
294 switch ($batchStatusByName[$values['status_id']]) {
295 case 'Open':
ca0e2dda 296 case 'Reopened':
6a488035
TO
297 CRM_Utils_Array::remove($newLinks, 'reopen', 'download');
298 break;
691df66d 299
2d818e4a 300 case 'Closed':
6a488035
TO
301 CRM_Utils_Array::remove($newLinks, 'close', 'edit', 'download');
302 break;
691df66d 303
2d818e4a 304 case 'Exported':
6a488035
TO
305 CRM_Utils_Array::remove($newLinks, 'close', 'edit', 'reopen', 'export');
306 }
ca0e2dda 307 if (!CRM_Batch_BAO_Batch::checkBatchPermission('edit', $values['created_id'])) {
f07fc4c9
PN
308 CRM_Utils_Array::remove($newLinks, 'edit');
309 }
310 if (!CRM_Batch_BAO_Batch::checkBatchPermission('close', $values['created_id'])) {
311 CRM_Utils_Array::remove($newLinks, 'close', 'export');
312 }
313 if (!CRM_Batch_BAO_Batch::checkBatchPermission('reopen', $values['created_id'])) {
314 CRM_Utils_Array::remove($newLinks, 'reopen');
ca0e2dda
PN
315 }
316 if (!CRM_Batch_BAO_Batch::checkBatchPermission('export', $values['created_id'])) {
317 CRM_Utils_Array::remove($newLinks, 'export', 'download');
318 }
319 if (!CRM_Batch_BAO_Batch::checkBatchPermission('delete', $values['created_id'])) {
320 CRM_Utils_Array::remove($newLinks, 'delete');
321 }
6a488035 322 }
a7488080 323 if (!empty($values['type_id'])) {
6a488035
TO
324 $values['batch_type'] = $batchTypes[$values['type_id']];
325 }
326 $values['batch_status'] = $batchStatus[$values['status_id']];
857236d0 327 $values['created_by'] = $values['created_id.sort_name'];
6a488035 328 $values['payment_instrument'] = '';
857236d0
PN
329 if (!empty($values['payment_instrument_id'])) {
330 $values['payment_instrument'] = $paymentInstrument[$values['payment_instrument_id']];
6a488035 331 }
be2fb01f 332 $tokens = ['id' => $values['id'], 'status' => $values['status_id']];
2d818e4a 333 if ($values['status_id'] == array_search('Exported', $batchStatusByName)) {
857236d0 334 $aid = CRM_Core_PseudoConstant::getKey('CRM_Activity_BAO_Activity', 'activity_type_id', 'Export Accounting Batch');
be2fb01f 335 $activityParams = ['source_record_id' => $values['id'], 'activity_type_id' => $aid];
6a488035 336 $exportActivity = CRM_Activity_BAO_Activity::retrieve($activityParams, $val);
0b0941e2 337 $fid = CRM_Core_DAO::getFieldValue('CRM_Core_DAO_EntityFile', $exportActivity->id, 'file_id', 'entity_id');
ff9aeadb 338 $fileHash = CRM_Core_BAO_File::generateFileHash($exportActivity->id, $fid);
be2fb01f 339 $tokens = array_merge(['eid' => $exportActivity->id, 'fid' => $fid, 'fcs' => $fileHash], $tokens);
6a488035
TO
340 }
341 $values['action'] = CRM_Core_Action::formLink(
342 $newLinks,
343 $action,
c51d1602 344 $tokens,
87dab4a4
AH
345 ts('more'),
346 FALSE,
347 'batch.selector.row',
348 'Batch',
857236d0 349 $values['id']
6a488035 350 );
def0f6ae
BS
351 // CRM-21205
352 $values['currency'] = CRM_Core_DAO::singleValueQuery("
353 SELECT GROUP_CONCAT(DISTINCT ft.currency)
354 FROM civicrm_batch batch
355 JOIN civicrm_entity_batch eb
356 ON batch.id = eb.batch_id
357 JOIN civicrm_financial_trxn ft
358 ON eb.entity_id = ft.id
359 WHERE batch.id = %1
360 GROUP BY batch.id
be2fb01f 361 ", [1 => [$values['id'], 'Positive']]);
857236d0 362 $results[$values['id']] = $values;
6a488035
TO
363 }
364
365 return $results;
366 }
367
368 /**
eceb18cc 369 * Get count of batches.
6a488035 370 *
82d480a5
TO
371 * @param array $params
372 * Associated array for params.
102fe859
EM
373 *
374 * @return null|string
6a488035 375 */
b11c92be 376 public static function getBatchCount(&$params) {
857236d0
PN
377 $apiParams = self::whereClause($params);
378 return civicrm_api3('Batch', 'getCount', $apiParams);
6a488035
TO
379 }
380
381 /**
eceb18cc 382 * Format where clause for getting lists of batches.
6a488035 383 *
82d480a5
TO
384 * @param array $params
385 * Associated array for params.
102fe859
EM
386 *
387 * @return string
6a488035 388 */
b11c92be 389 public static function whereClause($params) {
be2fb01f 390 $clauses = [];
6a488035 391 // Exclude data-entry batches
be2fb01f 392 $batchStatus = CRM_Core_PseudoConstant::get('CRM_Batch_DAO_Batch', 'status_id', ['labelColumn' => 'name']);
6a488035 393 if (empty($params['status_id'])) {
be2fb01f 394 $clauses['status_id'] = ['NOT IN' => ["Data Entry"]];
6a488035
TO
395 }
396
be2fb01f 397 $return = [
857236d0
PN
398 "id",
399 "name",
400 "title",
401 "description",
402 "created_date",
403 "status_id",
404 "modified_id",
405 "modified_date",
406 "type_id",
407 "mode_id",
408 "total",
409 "item_count",
410 "exported_date",
411 "payment_instrument_id",
412 "created_id.sort_name",
413 "created_id",
be2fb01f 414 ];
d2738983
PN
415 if (!CRM_Core_Permission::check("view all manual batches")) {
416 if (CRM_Core_Permission::check("view own manual batches")) {
417 $loggedInContactId = CRM_Core_Session::singleton()->get('userID');
418 $params['created_id'] = $loggedInContactId;
419 }
420 else {
421 $params['created_id'] = 0;
422 }
423 }
857236d0
PN
424 foreach ($return as $field) {
425 if (!isset($params[$field])) {
426 continue;
427 }
428 $value = CRM_Utils_Type::escape($params[$field], 'String', FALSE);
be2fb01f
CW
429 if (in_array($field, ['name', 'title', 'description', 'created_id.sort_name'])) {
430 $clauses[$field] = ['LIKE' => "%{$value}%"];
857236d0
PN
431 }
432 elseif ($field == 'status_id' && $value == array_search('Open', $batchStatus)) {
be2fb01f 433 $clauses['status_id'] = ['IN' => ["Open", 'Reopened']];
857236d0
PN
434 }
435 else {
436 $clauses[$field] = $value;
6a488035
TO
437 }
438 }
857236d0 439 return $clauses;
6a488035
TO
440 }
441
442 /**
eceb18cc 443 * Define action links.
6a488035 444 *
102fe859
EM
445 * @param null $context
446 *
a6c01b45
CW
447 * @return array
448 * array of action links
6a488035 449 */
00be9182 450 public function links($context = NULL) {
6a488035 451 if ($context == 'financialBatch') {
be2fb01f
CW
452 $links = [
453 'transaction' => [
353ffa53
TO
454 'name' => ts('Transactions'),
455 'url' => 'civicrm/batchtransaction',
456 'qs' => 'reset=1&bid=%%id%%',
6a488035 457 'title' => ts('View/Add Transactions to Batch'),
be2fb01f
CW
458 ],
459 'edit' => [
353ffa53
TO
460 'name' => ts('Edit'),
461 'url' => 'civicrm/financial/batch',
462 'qs' => 'reset=1&action=update&id=%%id%%&context=1',
6a488035 463 'title' => ts('Edit Batch'),
be2fb01f
CW
464 ],
465 'close' => [
353ffa53 466 'name' => ts('Close'),
6a488035 467 'title' => ts('Close Batch'),
353ffa53 468 'url' => '#',
6a488035 469 'extra' => 'rel="close"',
be2fb01f
CW
470 ],
471 'export' => [
353ffa53 472 'name' => ts('Export'),
6a488035 473 'title' => ts('Export Batch'),
353ffa53 474 'url' => '#',
6a488035 475 'extra' => 'rel="export"',
be2fb01f
CW
476 ],
477 'reopen' => [
353ffa53 478 'name' => ts('Re-open'),
6a488035 479 'title' => ts('Re-open Batch'),
353ffa53 480 'url' => '#',
6a488035 481 'extra' => 'rel="reopen"',
be2fb01f
CW
482 ],
483 'delete' => [
353ffa53 484 'name' => ts('Delete'),
6a488035 485 'title' => ts('Delete Batch'),
353ffa53 486 'url' => '#',
6a488035 487 'extra' => 'rel="delete"',
be2fb01f
CW
488 ],
489 'download' => [
353ffa53
TO
490 'name' => ts('Download'),
491 'url' => 'civicrm/file',
ff9aeadb 492 'qs' => 'reset=1&id=%%fid%%&eid=%%eid%%&fcs=%%fcs%%',
6a488035 493 'title' => ts('Download Batch'),
be2fb01f
CW
494 ],
495 ];
6a488035
TO
496 }
497 else {
be2fb01f
CW
498 $links = [
499 CRM_Core_Action::COPY => [
6a488035
TO
500 'name' => ts('Enter records'),
501 'url' => 'civicrm/batch/entry',
502 'qs' => 'id=%%id%%&reset=1',
503 'title' => ts('Batch Data Entry'),
be2fb01f
CW
504 ],
505 CRM_Core_Action::UPDATE => [
6a488035
TO
506 'name' => ts('Edit'),
507 'url' => 'civicrm/batch',
508 'qs' => 'action=update&id=%%id%%&reset=1',
509 'title' => ts('Edit Batch'),
be2fb01f
CW
510 ],
511 CRM_Core_Action::DELETE => [
6a488035
TO
512 'name' => ts('Delete'),
513 'url' => 'civicrm/batch',
514 'qs' => 'action=delete&id=%%id%%',
515 'title' => ts('Delete Batch'),
be2fb01f
CW
516 ],
517 ];
6a488035
TO
518 }
519 return $links;
520 }
521
522 /**
eceb18cc 523 * Get batch list.
6a488035 524 *
a6c01b45 525 * @return array
72b3a70c 526 * all batches excluding batches with data entry in progress
6a488035 527 */
00be9182 528 public static function getBatches() {
a28ce73f 529 $dataEntryStatusId = CRM_Core_PseudoConstant::getKey('CRM_Batch_BAO_Batch', 'status_id', 'Data Entry');
acb4ca2f 530 $query = "SELECT id, title
6a488035 531 FROM civicrm_batch
acb4ca2f
DG
532 WHERE item_count >= 1
533 AND status_id != {$dataEntryStatusId}
433465bc 534 ORDER BY title";
6a488035 535
be2fb01f 536 $batches = [];
6a488035 537 $dao = CRM_Core_DAO::executeQuery($query);
481a74f4 538 while ($dao->fetch()) {
6a488035
TO
539 $batches[$dao->id] = $dao->title;
540 }
541 return $batches;
542 }
543
6a488035 544 /**
eceb18cc 545 * Calculate sum of all entries in a batch.
6a488035
TO
546 * Used to validate and update item_count and total when closing an accounting batch
547 *
548 * @param array $batchIds
549 * @return array
550 */
00be9182 551 public static function batchTotals($batchIds) {
be2fb01f 552 $totals = array_fill_keys($batchIds, ['item_count' => 0, 'total' => 0]);
6a488035
TO
553 if ($batchIds) {
554 $sql = "SELECT eb.batch_id, COUNT(tx.id) AS item_count, SUM(tx.total_amount) AS total
555 FROM civicrm_entity_batch eb
556 INNER JOIN civicrm_financial_trxn tx ON tx.id = eb.entity_id AND eb.entity_table = 'civicrm_financial_trxn'
557 WHERE eb.batch_id IN (" . implode(',', $batchIds) . ")
558 GROUP BY eb.batch_id";
559 $dao = CRM_Core_DAO::executeQuery($sql);
560 while ($dao->fetch()) {
561 $totals[$dao->batch_id] = (array) $dao;
562 }
6a488035
TO
563 }
564 return $totals;
565 }
566
567 /**
eceb18cc 568 * Format markup for comparing two totals.
6a488035 569 *
72b3a70c
CW
570 * @param $actual
571 * calculated total
572 * @param $expected
573 * user-entered total
6a488035
TO
574 * @return array
575 */
00be9182 576 public static function displayTotals($actual, $expected) {
6a488035
TO
577 $class = 'actual-value';
578 if ($expected && $expected != $actual) {
579 $class .= ' crm-error';
580 }
581 $actualTitle = ts('Current Total');
582 $output = "<span class='$class' title='$actualTitle'>$actual</span>";
583 if ($expected) {
584 $expectedTitle = ts('Expected Total');
585 $output .= " / <span class='expected-value' title='$expectedTitle'>$expected</span>";
586 }
587 return $output;
588 }
589
590 /**
591 * Function for exporting financial accounts, currently we support CSV and IIF format
592 * @see http://wiki.civicrm.org/confluence/display/CRM/CiviAccounts+Specifications+-++Batches#CiviAccountsSpecifications-Batches-%C2%A0Overviewofimplementation
593 *
82d480a5
TO
594 * @param array $batchIds
595 * Associated array of batch ids.
596 * @param string $exportFormat
597 * Export format.
f3d529fc
PN
598 * @param bool $downloadFile
599 * Download export file?.
6a488035 600 */
f3d529fc 601 public static function exportFinancialBatch($batchIds, $exportFormat, $downloadFile) {
6a488035
TO
602 if (empty($batchIds)) {
603 CRM_Core_Error::fatal(ts('No batches were selected.'));
604 return;
605 }
606 if (empty($exportFormat)) {
607 CRM_Core_Error::fatal(ts('No export format selected.'));
608 return;
609 }
610 self::$_exportFormat = $exportFormat;
611
612 // Instantiate appropriate exporter based on user-selected format.
613 $exporterClass = "CRM_Financial_BAO_ExportFormat_" . self::$_exportFormat;
481a74f4 614 if (class_exists($exporterClass)) {
6a488035
TO
615 $exporter = new $exporterClass();
616 }
617 else {
618 CRM_Core_Error::fatal("Could not locate exporter: $exporterClass");
619 }
be2fb01f 620 $export = [];
f3d529fc 621 $exporter->_isDownloadFile = $downloadFile;
9b05de29 622 foreach ($batchIds as $batchId) {
f091b037 623 // export only batches whose status is set to Exported.
be2fb01f 624 $result = civicrm_api3('Batch', 'getcount', [
f091b037
PN
625 'id' => $batchId,
626 'status_id' => "Exported",
be2fb01f 627 ]);
f091b037
PN
628 if (!$result) {
629 continue;
630 }
9b05de29 631 $export[$batchId] = $exporter->generateExportQuery($batchId);
6a488035 632 }
f091b037
PN
633 if ($export) {
634 $exporter->makeExport($export);
635 }
6a488035
TO
636 }
637
e0ef6999
EM
638 /**
639 * @param array $batchIds
640 * @param $status
641 */
be2fb01f 642 public static function closeReOpen($batchIds = [], $status) {
f0ebbc90 643 $batchStatus = CRM_Core_PseudoConstant::get('CRM_Batch_DAO_Batch', 'status_id');
481a74f4
TO
644 $params['status_id'] = CRM_Utils_Array::key($status, $batchStatus);
645 $session = CRM_Core_Session::singleton();
6a488035 646 $params['modified_date'] = date('YmdHis');
481a74f4 647 $params['modified_id'] = $session->get('userID');
6a488035
TO
648 foreach ($batchIds as $key => $value) {
649 $params['id'] = $ids['batchID'] = $value;
650 self::create($params, $ids);
651 }
691df66d 652 $url = CRM_Utils_System::url('civicrm/financial/financialbatches', "reset=1&batchStatus={$params['status_id']}");
6a488035
TO
653 CRM_Utils_System::redirect($url);
654 }
655
656 /**
eceb18cc 657 * Retrieve financial items assigned for a batch.
6a488035
TO
658 *
659 * @param int $entityID
660 * @param array $returnValues
72b3a70c 661 * @param bool $notPresent
100fef9d 662 * @param array $params
102fe859
EM
663 * @param bool $getCount
664 *
72b3a70c 665 * @return CRM_Core_DAO
6a488035 666 */
00be9182 667 public static function getBatchFinancialItems($entityID, $returnValues, $notPresent = NULL, $params = NULL, $getCount = FALSE) {
6a488035
TO
668 if (!$getCount) {
669 if (!empty($params['rowCount']) &&
670 $params['rowCount'] > 0
671 ) {
672 $limit = " LIMIT {$params['offset']}, {$params['rowCount']} ";
673 }
674 }
675 // action is taken depending upon the mode
676 $select = 'civicrm_financial_trxn.id ';
481a74f4 677 if (!empty($returnValues)) {
92fcb95f 678 $select .= " , " . implode(' , ', $returnValues);
6a488035
TO
679 }
680
681 $orderBy = " ORDER BY civicrm_financial_trxn.id";
21d32567
DL
682 if (!empty($params['sort'])) {
683 $orderBy = ' ORDER BY ' . CRM_Utils_Type::escape($params['sort'], 'String');
6a488035
TO
684 }
685
686 $from = "civicrm_financial_trxn
c4b067f6
PN
687INNER JOIN civicrm_entity_financial_trxn ON civicrm_entity_financial_trxn.financial_trxn_id = civicrm_financial_trxn.id
688INNER JOIN civicrm_contribution ON (civicrm_contribution.id = civicrm_entity_financial_trxn.entity_id
689 AND civicrm_entity_financial_trxn.entity_table='civicrm_contribution')
cc55c603
DG
690LEFT JOIN civicrm_entity_batch ON civicrm_entity_batch.entity_table = 'civicrm_financial_trxn'
691AND civicrm_entity_batch.entity_id = civicrm_financial_trxn.id
6a488035
TO
692LEFT JOIN civicrm_financial_type ON civicrm_financial_type.id = civicrm_contribution.financial_type_id
693LEFT JOIN civicrm_contact contact_a ON contact_a.id = civicrm_contribution.contact_id
694LEFT JOIN civicrm_contribution_soft ON civicrm_contribution_soft.contribution_id = civicrm_contribution.id
695";
696
be2fb01f 697 $searchFields = [
6c552737
TO
698 'sort_name',
699 'financial_type_id',
700 'contribution_page_id',
5712c3b9 701 'contribution_payment_instrument_id',
30d46f2f 702 'contribution_trxn_id',
6c552737
TO
703 'contribution_source',
704 'contribution_currency_type',
705 'contribution_pay_later',
706 'contribution_recurring',
707 'contribution_test',
708 'contribution_thankyou_date_is_not_null',
709 'contribution_receipt_date_is_not_null',
710 'contribution_pcp_made_through_id',
711 'contribution_pcp_display_in_roll',
712 'contribution_date_relative',
713 'contribution_amount_low',
714 'contribution_amount_high',
715 'contribution_in_honor_of',
716 'contact_tags',
717 'group',
718 'contribution_date_relative',
719 'contribution_date_high',
720 'contribution_date_low',
721 'contribution_check_number',
722 'contribution_status_id',
eb71b3f2 723 'financial_trxn_card_type_id',
724 'financial_trxn_pan_truncation',
be2fb01f
CW
725 ];
726 $values = [];
6a488035
TO
727 foreach ($searchFields as $field) {
728 if (isset($params[$field])) {
729 $values[$field] = $params[$field];
730 if ($field == 'sort_name') {
731 $from .= " LEFT JOIN civicrm_contact contact_b ON contact_b.id = civicrm_contribution.contact_id
732 LEFT JOIN civicrm_email ON contact_b.id = civicrm_email.contact_id";
733 }
734 if ($field == 'contribution_in_honor_of') {
735 $from .= " LEFT JOIN civicrm_contact contact_b ON contact_b.id = civicrm_contribution.contact_id";
736 }
737 if ($field == 'contact_tags') {
738 $from .= " LEFT JOIN civicrm_entity_tag `civicrm_entity_tag-{$params[$field]}` ON `civicrm_entity_tag-{$params[$field]}`.entity_id = contact_a.id";
739 }
740 if ($field == 'group') {
741 $from .= " LEFT JOIN civicrm_group_contact `civicrm_group_contact-{$params[$field]}` ON contact_a.id = `civicrm_group_contact-{$params[$field]}`.contact_id ";
742 }
743 if ($field == 'contribution_date_relative') {
744 $relativeDate = explode('.', $params[$field]);
745 $date = CRM_Utils_Date::relativeToAbsolute($relativeDate[0], $relativeDate[1]);
746 $values['contribution_date_low'] = $date['from'];
747 $values['contribution_date_high'] = $date['to'];
748 }
6a488035
TO
749 }
750 }
639e74e5 751
977196f2
PN
752 $searchParams = CRM_Contact_BAO_Query::convertFormValues(
753 $values,
754 0,
755 FALSE,
756 NULL,
757 [
758 'financial_type_id',
759 'contribution_soft_credit_type_id',
760 'contribution_status_id',
761 'contribution_page_id',
762 'financial_trxn_card_type_id',
763 'contribution_payment_instrument_id',
764 ]
765 );
639e74e5
PN
766 // @todo the use of defaultReturnProperties means the search will be inefficient
767 // as slow-unneeded properties are included.
768 $query = new CRM_Contact_BAO_Query($searchParams,
769 CRM_Contribute_BAO_Query::defaultReturnProperties(CRM_Contact_BAO_Query::MODE_CONTRIBUTE,
770 FALSE
771 ), NULL, FALSE, FALSE, CRM_Contact_BAO_Query::MODE_CONTRIBUTE
772 );
773
6a488035 774 if (!empty($query->_where[0])) {
0b0941e2 775 $where = implode(' AND ', $query->_where[0]) .
c4b067f6 776 " AND civicrm_entity_batch.batch_id IS NULL ";
30d46f2f 777 $where = str_replace('civicrm_contribution.payment_instrument_id', 'civicrm_financial_trxn.payment_instrument_id', $where);
6a488035
TO
778 }
779 else {
6a488035 780 if (!$notPresent) {
c4b067f6 781 $where = " civicrm_entity_batch.batch_id = {$entityID} ";
6a488035
TO
782 }
783 else {
c4b067f6 784 $where = " civicrm_entity_batch.batch_id IS NULL ";
6a488035
TO
785 }
786 }
787
0b0941e2
DL
788 $sql = "
789SELECT {$select}
790FROM {$from}
791WHERE {$where}
792 {$orderBy}
6a488035
TO
793";
794
795 if (isset($limit)) {
796 $sql .= "{$limit}";
797 }
798
799 $result = CRM_Core_DAO::executeQuery($sql);
800 return $result;
801 }
802
803 /**
eceb18cc 804 * Get batch names.
6a488035
TO
805 * @param string $batchIds
806 *
a6c01b45
CW
807 * @return array
808 * array of batches
6a488035 809 */
00be9182 810 public static function getBatchNames($batchIds) {
6a488035
TO
811 $query = 'SELECT id, title
812 FROM civicrm_batch
86bfa4f6 813 WHERE id IN (' . $batchIds . ')';
6a488035 814
be2fb01f 815 $batches = [];
6a488035 816 $dao = CRM_Core_DAO::executeQuery($query);
481a74f4 817 while ($dao->fetch()) {
6a488035
TO
818 $batches[$dao->id] = $dao->title;
819 }
820 return $batches;
821 }
822
823 /**
eceb18cc 824 * Function get batch statuses.
6a488035
TO
825 *
826 * @param string $batchIds
827 *
a6c01b45
CW
828 * @return array
829 * array of batches
6a488035 830 */
00be9182 831 public static function getBatchStatuses($batchIds) {
6a488035
TO
832 $query = 'SELECT id, status_id
833 FROM civicrm_batch
92fcb95f 834 WHERE id IN (' . $batchIds . ')';
6a488035 835
be2fb01f 836 $batches = [];
6a488035 837 $dao = CRM_Core_DAO::executeQuery($query);
481a74f4 838 while ($dao->fetch()) {
6a488035
TO
839 $batches[$dao->id] = $dao->status_id;
840 }
841 return $batches;
842 }
96025800 843
ca0e2dda
PN
844 /**
845 * Function to check permission for batch.
846 *
847 * @param string $action
848 * @param int $batchCreatedId
849 * batch created by contact id
850 *
851 * @return bool
852 */
853 public static function checkBatchPermission($action, $batchCreatedId = NULL) {
ca0e2dda
PN
854 if (CRM_Core_Permission::check("{$action} all manual batches")) {
855 return TRUE;
856 }
857 if (CRM_Core_Permission::check("{$action} own manual batches")) {
858 $loggedInContactId = CRM_Core_Session::singleton()->get('userID');
859 if ($batchCreatedId == $loggedInContactId) {
860 return TRUE;
861 }
862 elseif (CRM_Utils_System::isNull($batchCreatedId)) {
863 return TRUE;
864 }
865 }
866 return FALSE;
867 }
868
6a488035 869}