Merge pull request #14677 from civicrm/5.15
[civicrm-core.git] / CRM / Contribute / BAO / Contribution.php
1 <?php
2 /*
3 +--------------------------------------------------------------------+
4 | CiviCRM version 5 |
5 +--------------------------------------------------------------------+
6 | Copyright CiviCRM LLC (c) 2004-2019 |
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
31 * @copyright CiviCRM LLC (c) 2004-2019
32 */
33 class CRM_Contribute_BAO_Contribution extends CRM_Contribute_DAO_Contribution {
34
35 /**
36 * Static field for all the contribution information that we can potentially import
37 *
38 * @var array
39 */
40 public static $_importableFields = NULL;
41
42 /**
43 * Static field for all the contribution information that we can potentially export
44 *
45 * @var array
46 */
47 public static $_exportableFields = NULL;
48
49 /**
50 * Static field to hold financial trxn id's.
51 *
52 * @var array
53 */
54 public static $_trxnIDs = NULL;
55
56 /**
57 * Field for all the objects related to this contribution
58 *
59 * @var \CRM_Member_BAO_Membership|\CRM_Event_BAO_Participant[]
60 */
61 public $_relatedObjects = [];
62
63 /**
64 * Field for the component - either 'event' (participant) or 'contribute'
65 * (any item related to a contribution page e.g. membership, pledge, contribution)
66 * This is used for composing messages because they have dependency on the
67 * contribution_page or event page - although over time we may eliminate that
68 *
69 * @var "contribution"\"event"
70 */
71 public $_component = NULL;
72
73 /**
74 * Possibly obsolete variable.
75 *
76 * If you use it please explain why it is set in the create function here.
77 *
78 * @var string
79 */
80 public $trxn_result_code;
81
82 /**
83 * Class constructor.
84 */
85 public function __construct() {
86 parent::__construct();
87 }
88
89 /**
90 * Takes an associative array and creates a contribution object.
91 *
92 * the function extract all the params it needs to initialize the create a
93 * contribution object. the params array could contain additional unused name/value
94 * pairs
95 *
96 * @param array $params
97 * (reference ) an assoc array of name/value pairs.
98 * @param array $ids
99 * The array that holds all the db ids.
100 *
101 * @return \CRM_Contribute_BAO_Contribution
102 * @throws \CRM_Core_Exception
103 * @throws \CiviCRM_API3_Exception
104 */
105 public static function add(&$params, $ids = []) {
106 if (empty($params)) {
107 return NULL;
108 }
109 //per http://wiki.civicrm.org/confluence/display/CRM/Database+layer we are moving away from $ids array
110 $contributionID = CRM_Utils_Array::value('contribution', $ids, CRM_Utils_Array::value('id', $params));
111 $duplicates = [];
112 if (self::checkDuplicate($params, $duplicates, $contributionID)) {
113 $message = ts("Duplicate error - existing contribution record(s) have a matching Transaction ID or Invoice ID. Contribution record ID(s) are: " . implode(', ', $duplicates));
114 throw new CRM_Core_Exception($message);
115 }
116
117 // first clean up all the money fields
118 $moneyFields = [
119 'total_amount',
120 'net_amount',
121 'fee_amount',
122 'non_deductible_amount',
123 ];
124
125 //if priceset is used, no need to cleanup money
126 if (!empty($params['skipCleanMoney'])) {
127 $moneyFields = [];
128 }
129 else {
130 // @todo put a deprecated here - this should be done in the form layer.
131 $params['skipCleanMoney'] = FALSE;
132 Civi::log()->warning('Deprecated code path. Money should always be clean before it hits the BAO.', array('civi.tag' => 'deprecated'));
133 }
134
135 foreach ($moneyFields as $field) {
136 if (isset($params[$field])) {
137 $params[$field] = CRM_Utils_Rule::cleanMoney($params[$field]);
138 }
139 }
140
141 //set defaults in create mode
142 if (!$contributionID) {
143 CRM_Core_DAO::setCreateDefaults($params, self::getDefaults());
144
145 if (empty($params['invoice_number'])) {
146 $nextContributionID = CRM_Core_DAO::singleValueQuery("SELECT COALESCE(MAX(id) + 1, 1) FROM civicrm_contribution");
147 $params['invoice_number'] = self::getInvoiceNumber($nextContributionID);
148 }
149 }
150
151 $contributionStatus = CRM_Contribute_PseudoConstant::contributionStatus(NULL, 'name');
152 //if contribution is created with cancelled or refunded status, add credit note id
153 if (!empty($params['contribution_status_id'])) {
154 // @todo - should we include Chargeback? If so use self::isContributionStatusNegative($params['contribution_status_id'])
155 if (($params['contribution_status_id'] == array_search('Refunded', $contributionStatus)
156 || $params['contribution_status_id'] == array_search('Cancelled', $contributionStatus))
157 ) {
158 if (empty($params['creditnote_id']) || $params['creditnote_id'] == "null") {
159 $params['creditnote_id'] = self::createCreditNoteId();
160 }
161 }
162 }
163 else {
164 // Since the fee amount is expecting this (later on) ensure it is always set.
165 // It would only not be set for an update where it is unchanged.
166 $params['contribution_status_id'] = civicrm_api3('Contribution', 'getvalue', [
167 'id' => $contributionID,
168 'return' => 'contribution_status_id',
169 ]);
170 }
171
172 if (!$contributionID
173 && CRM_Utils_Array::value('membership_id', $params)
174 && Civi::settings()->get('deferred_revenue_enabled')
175 ) {
176 $memberStartDate = CRM_Core_DAO::getFieldValue('CRM_Member_DAO_Membership', $params['membership_id'], 'start_date');
177 if ($memberStartDate) {
178 $params['revenue_recognition_date'] = date('Ymd', strtotime($memberStartDate));
179 }
180 }
181 self::calculateMissingAmountParams($params, $contributionID);
182
183 if (!empty($params['payment_instrument_id'])) {
184 $paymentInstruments = CRM_Contribute_PseudoConstant::paymentInstrument('name');
185 if ($params['payment_instrument_id'] != array_search('Check', $paymentInstruments)) {
186 $params['check_number'] = 'null';
187 }
188 }
189
190 $setPrevContribution = TRUE;
191 // CRM-13964 partial payment
192 if (!empty($params['partial_payment_total']) && !empty($params['partial_amount_to_pay'])) {
193 $partialAmtTotal = $params['partial_payment_total'];
194 $partialAmtPay = $params['partial_amount_to_pay'];
195 $params['total_amount'] = $partialAmtTotal;
196 if ($partialAmtPay < $partialAmtTotal) {
197 $params['contribution_status_id'] = CRM_Core_PseudoConstant::getKey('CRM_Contribute_BAO_Contribution', 'contribution_status_id', 'Partially paid');
198 $params['is_pay_later'] = 0;
199 $setPrevContribution = FALSE;
200 }
201 }
202 if ($contributionID && $setPrevContribution) {
203 $params['prevContribution'] = self::getOriginalContribution($contributionID);
204 }
205
206 if ($contributionID && !empty($params['revenue_recognition_date']) && !empty($params['prevContribution'])
207 && !($contributionStatus[$params['prevContribution']->contribution_status_id] == 'Pending')
208 && !self::allowUpdateRevenueRecognitionDate($contributionID)
209 ) {
210 unset($params['revenue_recognition_date']);
211 }
212
213 if (!isset($params['tax_amount']) && $setPrevContribution && (isset($params['total_amount']) ||
214 isset($params['financial_type_id']))) {
215 $params = CRM_Contribute_BAO_Contribution::checkTaxAmount($params);
216 }
217
218 if ($contributionID) {
219 CRM_Utils_Hook::pre('edit', 'Contribution', $contributionID, $params);
220 }
221 else {
222 CRM_Utils_Hook::pre('create', 'Contribution', NULL, $params);
223 }
224 $contribution = new CRM_Contribute_BAO_Contribution();
225 $contribution->copyValues($params);
226
227 $contribution->id = $contributionID;
228
229 if (empty($contribution->id)) {
230 // (only) on 'create', make sure that a valid currency is set (CRM-16845)
231 if (!CRM_Utils_Rule::currencyCode($contribution->currency)) {
232 $contribution->currency = CRM_Core_Config::singleton()->defaultCurrency;
233 }
234 }
235
236 $result = $contribution->save();
237
238 // Add financial_trxn details as part of fix for CRM-4724
239 $contribution->trxn_result_code = CRM_Utils_Array::value('trxn_result_code', $params);
240 $contribution->payment_processor = CRM_Utils_Array::value('payment_processor', $params);
241
242 //add Account details
243 $params['contribution'] = $contribution;
244 self::recordFinancialAccounts($params);
245
246 if (self::isUpdateToRecurringContribution($params)) {
247 CRM_Contribute_BAO_ContributionRecur::updateOnNewPayment(
248 (!empty($params['contribution_recur_id']) ? $params['contribution_recur_id'] : $params['prevContribution']->contribution_recur_id),
249 $contributionStatus[$params['contribution_status_id']],
250 CRM_Utils_Array::value('receive_date', $params)
251 );
252 }
253
254 CRM_Contact_BAO_GroupContactCache::opportunisticCacheFlush();
255
256 if ($contributionID) {
257 CRM_Utils_Hook::post('edit', 'Contribution', $contribution->id, $contribution);
258 }
259 else {
260 CRM_Utils_Hook::post('create', 'Contribution', $contribution->id, $contribution);
261 }
262
263 return $result;
264 }
265
266 /**
267 * Is this contribution updating an existing recurring contribution.
268 *
269 * We need to upd the status of the linked recurring contribution if we have a new payment against it, or the initial
270 * pending payment is being confirmed (or failing).
271 *
272 * @param array $params
273 *
274 * @return bool
275 */
276 public static function isUpdateToRecurringContribution($params) {
277 if (!empty($params['contribution_recur_id']) && empty($params['id'])) {
278 return TRUE;
279 }
280 if (empty($params['prevContribution']) || empty($params['contribution_status_id'])) {
281 return FALSE;
282 }
283 if (empty($params['contribution_recur_id']) && empty($params['prevContribution']->contribution_recur_id)) {
284 return FALSE;
285 }
286 $contributionStatus = CRM_Contribute_PseudoConstant::contributionStatus(NULL, 'name');
287 if ($params['prevContribution']->contribution_status_id == array_search('Pending', $contributionStatus)) {
288 return TRUE;
289 }
290 return FALSE;
291 }
292
293 /**
294 * Get defaults for new entity.
295 *
296 * @return array
297 */
298 public static function getDefaults() {
299 return [
300 'payment_instrument_id' => key(CRM_Core_OptionGroup::values('payment_instrument',
301 FALSE, FALSE, FALSE, 'AND is_default = 1')
302 ),
303 'contribution_status_id' => CRM_Core_PseudoConstant::getKey('CRM_Contribute_BAO_Contribution', 'contribution_status_id', 'Completed'),
304 'receive_date' => date('Y-m-d H:i:s'),
305 ];
306 }
307
308 /**
309 * Fetch the object and store the values in the values array.
310 *
311 * @param array $params
312 * Input parameters to find object.
313 * @param array $values
314 * Output values of the object.
315 * @param array $ids
316 * The array that holds all the db ids.
317 *
318 * @return CRM_Contribute_BAO_Contribution|null
319 * The found object or null
320 */
321 public static function getValues($params, &$values = [], &$ids = []) {
322 if (empty($params)) {
323 return NULL;
324 }
325 $contribution = new CRM_Contribute_BAO_Contribution();
326
327 $contribution->copyValues($params);
328
329 if ($contribution->find(TRUE)) {
330 $ids['contribution'] = $contribution->id;
331
332 CRM_Core_DAO::storeValues($contribution, $values);
333
334 return $contribution;
335 }
336 // return by reference
337 $null = NULL;
338 return $null;
339 }
340
341 /**
342 * Get the values and resolve the most common mappings.
343 *
344 * Since contribution status is resolved in almost every function that calls getValues it makes
345 * sense to have an extra function to resolve it rather than repeat the code.
346 *
347 * Think carefully before adding more mappings to be resolved as there could be performance implications
348 * if this function starts to be called from more iterative functions.
349 *
350 * @param array $params
351 * Input parameters to find object.
352 *
353 * @return array
354 * Array of the found contribution.
355 * @throws CRM_Core_Exception
356 */
357 public static function getValuesWithMappings($params) {
358 $values = $ids = [];
359 $contribution = self::getValues($params, $values, $ids);
360 if (is_null($contribution)) {
361 throw new CRM_Core_Exception('No contribution found');
362 }
363 $values['contribution_status'] = CRM_Core_PseudoConstant::getName('CRM_Contribute_BAO_Contribution', 'contribution_status_id', $values['contribution_status_id']);
364 return $values;
365 }
366
367 /**
368 * Calculate net_amount & fee_amount if they are not set.
369 *
370 * Net amount should be total - fee.
371 * This should only be called for new contributions.
372 *
373 * @param array $params
374 * Params for a new contribution before they are saved.
375 * @param int|null $contributionID
376 * Contribution ID if we are dealing with an update.
377 *
378 * @throws \CiviCRM_API3_Exception
379 */
380 public static function calculateMissingAmountParams(&$params, $contributionID) {
381 if (!$contributionID && !isset($params['fee_amount'])) {
382 if (isset($params['total_amount']) && isset($params['net_amount'])) {
383 $params['fee_amount'] = $params['total_amount'] - $params['net_amount'];
384 }
385 else {
386 $params['fee_amount'] = 0;
387 }
388 }
389 if (!isset($params['net_amount'])) {
390 if (!$contributionID) {
391 $params['net_amount'] = $params['total_amount'] - $params['fee_amount'];
392 }
393 else {
394 if (isset($params['fee_amount']) || isset($params['total_amount'])) {
395 // We have an existing contribution and fee_amount or total_amount has been passed in but not net_amount.
396 // net_amount may need adjusting.
397 $contribution = civicrm_api3('Contribution', 'getsingle', [
398 'id' => $contributionID,
399 'return' => ['total_amount', 'net_amount', 'fee_amount'],
400 ]);
401 $totalAmount = (isset($params['total_amount']) ? (float) $params['total_amount'] : (float) CRM_Utils_Array::value('total_amount', $contribution));
402 $feeAmount = (isset($params['fee_amount']) ? (float) $params['fee_amount'] : (float) CRM_Utils_Array::value('fee_amount', $contribution));
403 $params['net_amount'] = $totalAmount - $feeAmount;
404 }
405 }
406 }
407 }
408
409 /**
410 * @param $params
411 * @param $billingLocationTypeID
412 *
413 * @return array
414 */
415 protected static function getBillingAddressParams($params, $billingLocationTypeID) {
416 $hasBillingField = FALSE;
417 $billingFields = [
418 'street_address',
419 'city',
420 'state_province_id',
421 'postal_code',
422 'country_id',
423 ];
424
425 //build address array
426 $addressParams = [];
427 $addressParams['location_type_id'] = $billingLocationTypeID;
428 $addressParams['is_billing'] = 1;
429
430 $billingFirstName = CRM_Utils_Array::value('billing_first_name', $params);
431 $billingMiddleName = CRM_Utils_Array::value('billing_middle_name', $params);
432 $billingLastName = CRM_Utils_Array::value('billing_last_name', $params);
433 $addressParams['address_name'] = "{$billingFirstName}" . CRM_Core_DAO::VALUE_SEPARATOR . "{$billingMiddleName}" . CRM_Core_DAO::VALUE_SEPARATOR . "{$billingLastName}";
434
435 foreach ($billingFields as $value) {
436 $addressParams[$value] = CRM_Utils_Array::value("billing_{$value}-{$billingLocationTypeID}", $params);
437 if (!empty($addressParams[$value])) {
438 $hasBillingField = TRUE;
439 }
440 }
441 return [$hasBillingField, $addressParams];
442 }
443
444 /**
445 * Get address params ready to be passed to the payment processor.
446 *
447 * We need address params in a couple of formats. For the payment processor we wan state_province_id-5.
448 * To create an address we need state_province_id.
449 *
450 * @param array $params
451 * @param int $billingLocationTypeID
452 *
453 * @return array
454 */
455 public static function getPaymentProcessorReadyAddressParams($params, $billingLocationTypeID) {
456 list($hasBillingField, $addressParams) = self::getBillingAddressParams($params, $billingLocationTypeID);
457 foreach ($addressParams as $name => $field) {
458 if (substr($name, 0, 8) == 'billing_') {
459 $addressParams[substr($name, 9)] = $addressParams[$field];
460 }
461 }
462 return [$hasBillingField, $addressParams];
463 }
464
465 /**
466 * Get the number of terms for this contribution for a given membership type
467 * based on querying the line item table and relevant price field values
468 * Note that any one contribution should only be able to have one line item relating to a particular membership
469 * type
470 *
471 * @param int $membershipTypeID
472 *
473 * @param int $contributionID
474 *
475 * @return int
476 */
477 public function getNumTermsByContributionAndMembershipType($membershipTypeID, $contributionID) {
478 $numTerms = CRM_Core_DAO::singleValueQuery("
479 SELECT membership_num_terms FROM civicrm_line_item li
480 LEFT JOIN civicrm_price_field_value v ON li.price_field_value_id = v.id
481 WHERE contribution_id = %1 AND membership_type_id = %2",
482 [1 => [$contributionID, 'Integer'], 2 => [$membershipTypeID, 'Integer']]
483 );
484 // default of 1 is precautionary
485 return empty($numTerms) ? 1 : $numTerms;
486 }
487
488 /**
489 * Takes an associative array and creates a contribution object.
490 *
491 * @param array $params
492 * (reference ) an assoc array of name/value pairs.
493 * @param array $ids
494 * The array that holds all the db ids.
495 *
496 * @return CRM_Contribute_BAO_Contribution
497 */
498 public static function create(&$params, $ids = []) {
499 $contributionID = CRM_Utils_Array::value('contribution', $ids, CRM_Utils_Array::value('id', $params));
500 $action = $contributionID ? 'edit' : 'create';
501
502 $dateFields = [
503 'receive_date',
504 'cancel_date',
505 'receipt_date',
506 'thankyou_date',
507 'revenue_recognition_date',
508 ];
509 foreach ($dateFields as $df) {
510 if (isset($params[$df])) {
511 $params[$df] = CRM_Utils_Date::isoToMysql($params[$df]);
512 }
513 }
514
515 $transaction = new CRM_Core_Transaction();
516
517 try {
518 $contribution = self::add($params, $ids);
519 }
520 catch (CRM_Core_Exception $e) {
521 $transaction->rollback();
522 throw $e;
523 }
524
525 $params['contribution_id'] = $contribution->id;
526
527 if (!empty($params['custom']) &&
528 is_array($params['custom'])
529 ) {
530 CRM_Core_BAO_CustomValueTable::store($params['custom'], 'civicrm_contribution', $contribution->id, $action);
531 }
532
533 $session = CRM_Core_Session::singleton();
534
535 if (!empty($params['note'])) {
536 $noteParams = [
537 'entity_table' => 'civicrm_contribution',
538 'note' => $params['note'],
539 'entity_id' => $contribution->id,
540 'contact_id' => $session->get('userID'),
541 'modified_date' => date('Ymd'),
542 ];
543 if (!$noteParams['contact_id']) {
544 $noteParams['contact_id'] = $params['contact_id'];
545 }
546 CRM_Core_BAO_Note::add($noteParams);
547 }
548
549 // make entry in batch entity batch table
550 if (!empty($params['batch_id'])) {
551 // in some update cases we need to get extra fields - ie an update that doesn't pass in all these params
552 $titleFields = [
553 'contact_id',
554 'total_amount',
555 'currency',
556 'financial_type_id',
557 ];
558 $retrieveRequired = 0;
559 foreach ($titleFields as $titleField) {
560 if (!isset($contribution->$titleField)) {
561 $retrieveRequired = 1;
562 break;
563 }
564 }
565 if ($retrieveRequired == 1) {
566 $contribution->find(TRUE);
567 }
568 }
569
570 CRM_Contribute_BAO_ContributionSoft::processSoftContribution($params, $contribution);
571
572 $transaction->commit();
573
574 $activity = civicrm_api3('Activity', 'get', [
575 'source_record_id' => $contribution->id,
576 'options' => ['limit' => 1],
577 'sequential' => 1,
578 'activity_type_id' => 'Contribution',
579 'return' => ['id', 'campaign'],
580 ]);
581
582 //CRM-18406: Update activity when edit contribution.
583 if ($activity['count']) {
584 // CRM-13237 : if activity record found, update it with campaign id of contribution
585 // @todo compare campaign ids first.
586 CRM_Core_DAO::setFieldValue('CRM_Activity_BAO_Activity', $activity['id'], 'campaign_id', $contribution->campaign_id);
587 $contribution->activity_id = $activity['id'];
588 }
589
590 if (empty($contribution->contact_id)) {
591 $contribution->find(TRUE);
592 }
593 CRM_Activity_BAO_Activity::addActivity($contribution, 'Contribution');
594
595 // do not add to recent items for import, CRM-4399
596 if (empty($params['skipRecentView'])) {
597 $url = CRM_Utils_System::url('civicrm/contact/view/contribution',
598 "action=view&reset=1&id={$contribution->id}&cid={$contribution->contact_id}&context=home"
599 );
600 // in some update cases we need to get extra fields - ie an update that doesn't pass in all these params
601 $titleFields = [
602 'contact_id',
603 'total_amount',
604 'currency',
605 'financial_type_id',
606 ];
607 $retrieveRequired = 0;
608 foreach ($titleFields as $titleField) {
609 if (!isset($contribution->$titleField)) {
610 $retrieveRequired = 1;
611 break;
612 }
613 }
614 if ($retrieveRequired == 1) {
615 $contribution->find(TRUE);
616 }
617 $financialType = CRM_Contribute_PseudoConstant::financialType($contribution->financial_type_id);
618 $title = CRM_Contact_BAO_Contact::displayName($contribution->contact_id) . ' - (' . CRM_Utils_Money::format($contribution->total_amount, $contribution->currency) . ' ' . ' - ' . $financialType . ')';
619
620 $recentOther = [];
621 if (CRM_Core_Permission::checkActionPermission('CiviContribute', CRM_Core_Action::UPDATE)) {
622 $recentOther['editUrl'] = CRM_Utils_System::url('civicrm/contact/view/contribution',
623 "action=update&reset=1&id={$contribution->id}&cid={$contribution->contact_id}&context=home"
624 );
625 }
626
627 if (CRM_Core_Permission::checkActionPermission('CiviContribute', CRM_Core_Action::DELETE)) {
628 $recentOther['deleteUrl'] = CRM_Utils_System::url('civicrm/contact/view/contribution',
629 "action=delete&reset=1&id={$contribution->id}&cid={$contribution->contact_id}&context=home"
630 );
631 }
632
633 // add the recently created Contribution
634 CRM_Utils_Recent::add($title,
635 $url,
636 $contribution->id,
637 'Contribution',
638 $contribution->contact_id,
639 NULL,
640 $recentOther
641 );
642 }
643
644 return $contribution;
645 }
646
647 /**
648 * Get the values for pseudoconstants for name->value and reverse.
649 *
650 * @param array $defaults
651 * (reference) the default values, some of which need to be resolved.
652 * @param bool $reverse
653 * True if we want to resolve the values in the reverse direction (value -> name).
654 */
655 public static function resolveDefaults(&$defaults, $reverse = FALSE) {
656 self::lookupValue($defaults, 'financial_type', CRM_Contribute_PseudoConstant::financialType(), $reverse);
657 self::lookupValue($defaults, 'payment_instrument', CRM_Contribute_PseudoConstant::paymentInstrument(), $reverse);
658 self::lookupValue($defaults, 'contribution_status', CRM_Contribute_PseudoConstant::contributionStatus(), $reverse);
659 self::lookupValue($defaults, 'pcp', CRM_Contribute_PseudoConstant::pcPage(), $reverse);
660 }
661
662 /**
663 * Convert associative array names to values and vice-versa.
664 *
665 * This function is used by both the web form layer and the api. Note that
666 * the api needs the name => value conversion, also the view layer typically
667 * requires value => name conversion
668 *
669 * @param array $defaults
670 * @param string $property
671 * @param array $lookup
672 * @param bool $reverse
673 *
674 * @return bool
675 */
676 public static function lookupValue(&$defaults, $property, &$lookup, $reverse) {
677 $id = $property . '_id';
678
679 $src = $reverse ? $property : $id;
680 $dst = $reverse ? $id : $property;
681
682 if (!array_key_exists($src, $defaults)) {
683 return FALSE;
684 }
685
686 $look = $reverse ? array_flip($lookup) : $lookup;
687
688 if (is_array($look)) {
689 if (!array_key_exists($defaults[$src], $look)) {
690 return FALSE;
691 }
692 }
693 $defaults[$dst] = $look[$defaults[$src]];
694 return TRUE;
695 }
696
697 /**
698 * Retrieve DB object based on input parameters.
699 *
700 * It also stores all the retrieved values in the default array.
701 *
702 * @param array $params
703 * (reference ) an assoc array of name/value pairs.
704 * @param array $defaults
705 * (reference ) an assoc array to hold the name / value pairs.
706 * in a hierarchical manner
707 * @param array $ids
708 * (reference) the array that holds all the db ids.
709 *
710 * @return CRM_Contribute_BAO_Contribution
711 */
712 public static function retrieve(&$params, &$defaults = [], &$ids = []) {
713 $contribution = CRM_Contribute_BAO_Contribution::getValues($params, $defaults, $ids);
714 return $contribution;
715 }
716
717 /**
718 * Combine all the importable fields from the lower levels object.
719 *
720 * The ordering is important, since currently we do not have a weight
721 * scheme. Adding weight is super important and should be done in the
722 * next week or so, before this can be called complete.
723 *
724 * @param string $contactType
725 * @param bool $status
726 *
727 * @return array
728 * array of importable Fields
729 */
730 public static function &importableFields($contactType = 'Individual', $status = TRUE) {
731 if (!self::$_importableFields) {
732 if (!self::$_importableFields) {
733 self::$_importableFields = [];
734 }
735
736 if (!$status) {
737 $fields = ['' => ['title' => ts('- do not import -')]];
738 }
739 else {
740 $fields = ['' => ['title' => ts('- Contribution Fields -')]];
741 }
742
743 $note = CRM_Core_DAO_Note::import();
744 $tmpFields = CRM_Contribute_DAO_Contribution::import();
745 unset($tmpFields['option_value']);
746 $optionFields = CRM_Core_OptionValue::getFields($mode = 'contribute');
747 $contactFields = CRM_Contact_BAO_Contact::importableFields($contactType, NULL);
748
749 // Using new Dedupe rule.
750 $ruleParams = [
751 'contact_type' => $contactType,
752 'used' => 'Unsupervised',
753 ];
754 $fieldsArray = CRM_Dedupe_BAO_Rule::dedupeRuleFields($ruleParams);
755 $tmpContactField = [];
756 if (is_array($fieldsArray)) {
757 foreach ($fieldsArray as $value) {
758 //skip if there is no dupe rule
759 if ($value == 'none') {
760 continue;
761 }
762 $customFieldId = CRM_Core_DAO::getFieldValue('CRM_Core_DAO_CustomField',
763 $value,
764 'id',
765 'column_name'
766 );
767 $value = $customFieldId ? 'custom_' . $customFieldId : $value;
768 $tmpContactField[trim($value)] = $contactFields[trim($value)];
769 if (!$status) {
770 $title = $tmpContactField[trim($value)]['title'] . ' ' . ts('(match to contact)');
771 }
772 else {
773 $title = $tmpContactField[trim($value)]['title'];
774 }
775 $tmpContactField[trim($value)]['title'] = $title;
776 }
777 }
778
779 $tmpContactField['external_identifier'] = $contactFields['external_identifier'];
780 $tmpContactField['external_identifier']['title'] = $contactFields['external_identifier']['title'] . ' ' . ts('(match to contact)');
781 $tmpFields['contribution_contact_id']['title'] = $tmpFields['contribution_contact_id']['title'] . ' ' . ts('(match to contact)');
782 $fields = array_merge($fields, $tmpContactField);
783 $fields = array_merge($fields, $tmpFields);
784 $fields = array_merge($fields, $note);
785 $fields = array_merge($fields, $optionFields);
786 $fields = array_merge($fields, CRM_Financial_DAO_FinancialType::export());
787 $fields = array_merge($fields, CRM_Core_BAO_CustomField::getFieldsForImport('Contribution'));
788 self::$_importableFields = $fields;
789 }
790 return self::$_importableFields;
791 }
792
793 /**
794 * Combine all the exportable fields from the lower level objects.
795 *
796 * @param bool $checkPermission
797 *
798 * @return array
799 * array of exportable Fields
800 */
801 public static function &exportableFields($checkPermission = TRUE) {
802 if (!self::$_exportableFields) {
803 if (!self::$_exportableFields) {
804 self::$_exportableFields = [];
805 }
806
807 $fields = CRM_Contribute_DAO_Contribution::export();
808 if (CRM_Contribute_BAO_Query::isSiteHasProducts()) {
809 $fields = array_merge(
810 $fields,
811 CRM_Contribute_DAO_Product::export(),
812 CRM_Contribute_DAO_ContributionProduct::export(),
813 // CRM-16713 - contribution search by Premiums on 'Find Contribution' form.
814 [
815 'contribution_product_id' => [
816 'title' => ts('Premium'),
817 'name' => 'contribution_product_id',
818 'where' => 'civicrm_product.id',
819 'data_type' => CRM_Utils_Type::T_INT,
820 ],
821 ]
822 );
823 }
824
825 $financialAccount = CRM_Financial_DAO_FinancialAccount::export();
826
827 $contributionPage = [
828 'contribution_page' => [
829 'title' => ts('Contribution Page'),
830 'name' => 'contribution_page',
831 'where' => 'civicrm_contribution_page.title',
832 'data_type' => CRM_Utils_Type::T_STRING,
833 ],
834 ];
835
836 $contributionNote = [
837 'contribution_note' => [
838 'title' => ts('Contribution Note'),
839 'name' => 'contribution_note',
840 'data_type' => CRM_Utils_Type::T_TEXT,
841 ],
842 ];
843
844 $extraFields = [
845 'contribution_batch' => [
846 'title' => ts('Batch Name'),
847 ],
848 ];
849
850 // CRM-17787
851 $campaignTitle = [
852 'contribution_campaign_title' => [
853 'title' => ts('Campaign Title'),
854 'name' => 'campaign_title',
855 'where' => 'civicrm_campaign.title',
856 'data_type' => CRM_Utils_Type::T_STRING,
857 ],
858 ];
859 $softCreditFields = [
860 'contribution_soft_credit_name' => [
861 'name' => 'contribution_soft_credit_name',
862 'title' => ts('Soft Credit For'),
863 'where' => 'civicrm_contact_d.display_name',
864 'data_type' => CRM_Utils_Type::T_STRING,
865 ],
866 'contribution_soft_credit_amount' => [
867 'name' => 'contribution_soft_credit_amount',
868 'title' => ts('Soft Credit Amount'),
869 'where' => 'civicrm_contribution_soft.amount',
870 'data_type' => CRM_Utils_Type::T_MONEY,
871 ],
872 'contribution_soft_credit_type' => [
873 'name' => 'contribution_soft_credit_type',
874 'title' => ts('Soft Credit Type'),
875 'where' => 'contribution_softcredit_type.label',
876 'data_type' => CRM_Utils_Type::T_STRING,
877 ],
878 'contribution_soft_credit_contribution_id' => [
879 'name' => 'contribution_soft_credit_contribution_id',
880 'title' => ts('Soft Credit For Contribution ID'),
881 'where' => 'civicrm_contribution_soft.contribution_id',
882 'data_type' => CRM_Utils_Type::T_INT,
883 ],
884 'contribution_soft_credit_contact_id' => [
885 'name' => 'contribution_soft_credit_contact_id',
886 'title' => ts('Soft Credit For Contact ID'),
887 'where' => 'civicrm_contact_d.id',
888 'data_type' => CRM_Utils_Type::T_INT,
889 ],
890 ];
891
892 $fields = array_merge($fields, $contributionPage,
893 $contributionNote, $extraFields, $softCreditFields, $financialAccount, $campaignTitle,
894 CRM_Core_BAO_CustomField::getFieldsForImport('Contribution', FALSE, FALSE, FALSE, $checkPermission)
895 );
896
897 self::$_exportableFields = $fields;
898 }
899
900 return self::$_exportableFields;
901 }
902
903 /**
904 * Record an activity when a payment is received.
905 *
906 * @todo this is intended to be moved to payment BAO class as a protected function
907 * on that class. Currently being cleaned up. The addActivityForPayment doesn't really
908 * merit it's own function as it makes the code less rather than more readable.
909 *
910 * @param int $contributionId
911 * @param int $participantId
912 * @param string $totalAmount
913 * @param string $currency
914 * @param string $trxnDate
915 *
916 * @throws \CRM_Core_Exception
917 * @throws \CiviCRM_API3_Exception
918 */
919 public static function recordPaymentActivity($contributionId, $participantId, $totalAmount, $currency, $trxnDate) {
920 $activityType = ($totalAmount < 0) ? 'Refund' : 'Payment';
921
922 if ($participantId) {
923 $inputParams['id'] = $participantId;
924 $values = [];
925 $ids = [];
926 $entityObj = CRM_Event_BAO_Participant::getValues($inputParams, $values, $ids);
927 $entityObj = $entityObj[$participantId];
928 $title = CRM_Core_DAO::getFieldValue('CRM_Event_BAO_Event', $entityObj->event_id, 'title');
929 }
930 else {
931 $entityObj = new CRM_Contribute_BAO_Contribution();
932 $entityObj->id = $contributionId;
933 $entityObj->find(TRUE);
934 $title = ts('Contribution');
935 }
936 // @todo per block above this is not a logical splitting off of functionality.
937 self::addActivityForPayment($entityObj->contact_id, $activityType, $title, $contributionId, $totalAmount, $currency, $trxnDate);
938 }
939
940 /**
941 * Get the value for the To Financial Account.
942 *
943 * @param $contribution
944 * @param $params
945 *
946 * @return int
947 */
948 public static function getToFinancialAccount($contribution, $params) {
949 $contributionStatuses = CRM_Contribute_PseudoConstant::contributionStatus(NULL, 'name');
950 CRM_Contribute_PseudoConstant::contributionStatus(NULL, 'name');
951 $pendingStatus = [
952 array_search('Pending', $contributionStatuses),
953 array_search('In Progress', $contributionStatuses),
954 ];
955 if (in_array(CRM_Utils_Array::value('contribution_status_id', $contribution), $pendingStatus)) {
956 return CRM_Contribute_PseudoConstant::getRelationalFinancialAccount($contribution['financial_type_id'], 'Accounts Receivable Account is');
957 }
958 elseif (!empty($params['payment_processor'])) {
959 return CRM_Contribute_PseudoConstant::getRelationalFinancialAccount($contribution['payment_processor'], NULL, 'civicrm_payment_processor');
960 }
961 elseif (!empty($params['payment_instrument_id'])) {
962 return CRM_Financial_BAO_FinancialTypeAccount::getInstrumentFinancialAccount($contribution['payment_instrument_id']);
963 }
964 else {
965 $relationTypeId = key(CRM_Core_PseudoConstant::accountOptionValues('financial_account_type', NULL, " AND v.name LIKE 'Asset' "));
966 $queryParams = [1 => [$relationTypeId, 'Integer']];
967 return CRM_Core_DAO::singleValueQuery("SELECT id FROM civicrm_financial_account WHERE is_default = 1 AND financial_account_type_id = %1", $queryParams);
968 }
969 }
970
971 /**
972 * Get memberships realted to the contribution.
973 *
974 * @param int $contributionID
975 *
976 * @return array
977 */
978 protected static function getRelatedMemberships($contributionID) {
979 $membershipPayments = civicrm_api3('MembershipPayment', 'get', [
980 'return' => 'membership_id',
981 'contribution_id' => (int) $contributionID,
982 ])['values'];
983 $membershipIDs = [];
984 foreach ($membershipPayments as $membershipPayment) {
985 $membershipIDs[] = $membershipPayment['membership_id'];
986 }
987 if (empty($membershipIDs)) {
988 return [];
989 }
990 // We could combine this with the MembershipPayment.get - we'd
991 // need to re-wrangle the params (here or in the calling function)
992 // as they would then me membership.contact_id, membership.is_test etc
993 return civicrm_api3('Membership', 'get', [
994 'id' => ['IN' => $membershipIDs],
995 'return' => ['id', 'contact_id', 'membership_type_id', 'is_test'],
996 ])['values'];
997 }
998
999 /**
1000 * Cancel contribution.
1001 *
1002 * This function should only be called from transitioncomponents - it is an interim step in refactoring.
1003 *
1004 * @param $processContributionObject
1005 * @param $memberships
1006 * @param $contributionId
1007 * @param $membershipStatuses
1008 * @param $updateResult
1009 * @param $participant
1010 * @param $oldStatus
1011 * @param $pledgePayment
1012 * @param $pledgeID
1013 * @param $pledgePaymentIDs
1014 * @param $contributionStatusId
1015 *
1016 * @return array
1017 */
1018 protected static function cancel($processContributionObject, $memberships, $contributionId, $membershipStatuses, $updateResult, $participant, $oldStatus, $pledgePayment, $pledgeID, $pledgePaymentIDs, $contributionStatusId) {
1019 $processContribution = FALSE;
1020 $participantStatuses = CRM_Event_PseudoConstant::participantStatus();
1021 if (is_array($memberships)) {
1022 foreach ($memberships as $membership) {
1023 $update = TRUE;
1024 //Update Membership status if there is no other completed contribution associated with the membership.
1025 $relatedContributions = CRM_Member_BAO_Membership::getMembershipContributionId($membership->id, TRUE);
1026 foreach ($relatedContributions as $contriId) {
1027 if ($contriId == $contributionId) {
1028 continue;
1029 }
1030 $statusId = CRM_Core_DAO::getFieldValue('CRM_Contribute_BAO_Contribution', $contriId, 'contribution_status_id');
1031 if (CRM_Core_PseudoConstant::getName('CRM_Contribute_BAO_Contribution', 'contribution_status_id', $statusId) === 'Completed') {
1032 $update = FALSE;
1033 }
1034 }
1035 if ($membership && $update) {
1036 $newStatus = array_search('Cancelled', $membershipStatuses);
1037
1038 // Create activity
1039 $allStatus = CRM_Member_BAO_Membership::buildOptions('status_id', 'get');
1040 $activityParam = [
1041 'subject' => "Status changed from {$allStatus[$membership->status_id]} to {$allStatus[$newStatus]}",
1042 'source_contact_id' => CRM_Core_Session::singleton()->get('userID'),
1043 'target_contact_id' => $membership->contact_id,
1044 'source_record_id' => $membership->id,
1045 'activity_type_id' => 'Change Membership Status',
1046 'status_id' => 'Completed',
1047 'priority_id' => 'Normal',
1048 'activity_date_time' => 'now',
1049 ];
1050
1051 $membership->status_id = $newStatus;
1052 $membership->is_override = TRUE;
1053 $membership->status_override_end_date = 'null';
1054 $membership->save();
1055 civicrm_api3('activity', 'create', $activityParam);
1056
1057 $updateResult['updatedComponents']['CiviMember'] = $membership->status_id;
1058 if ($processContributionObject) {
1059 $processContribution = TRUE;
1060 }
1061 }
1062 }
1063 }
1064
1065 if ($participant) {
1066 $updatedStatusId = array_search('Cancelled', $participantStatuses);
1067 CRM_Event_BAO_Participant::updateParticipantStatus($participant->id, $oldStatus, $updatedStatusId, TRUE);
1068
1069 $updateResult['updatedComponents']['CiviEvent'] = $updatedStatusId;
1070 if ($processContributionObject) {
1071 $processContribution = TRUE;
1072 }
1073 }
1074
1075 if ($pledgePayment) {
1076 CRM_Pledge_BAO_PledgePayment::updatePledgePaymentStatus($pledgeID, $pledgePaymentIDs, $contributionStatusId);
1077
1078 $updateResult['updatedComponents']['CiviPledge'] = $contributionStatusId;
1079 if ($processContributionObject) {
1080 $processContribution = TRUE;
1081 }
1082 }
1083 return [$updateResult, $processContribution];
1084 }
1085
1086 /**
1087 * Do any accounting updates required as a result of a contribution status change.
1088 *
1089 * Currently we have a bit of a roundabout where adding a payment results in this being called &
1090 * this may attempt to add a payment. We need to resolve that....
1091 *
1092 * The 'right' way to add payments or refunds is through the Payment.create api. That api
1093 * then updates the contribution but this process should not also record another financial trxn.
1094 * Currently we have weak detection fot that scenario & where it is detected the first returned
1095 * value is FALSE - meaning 'do not continue'.
1096 *
1097 * We should also look at the fact that the calling function - updateFinancialAccounts
1098 * bunches together some disparate processes rather than having separate appropriate
1099 * functions.
1100 *
1101 * @param array $params
1102 * @param string $context
1103 * @param array $previousContributionStatus
1104 * @param string $currentContributionStatus
1105 *
1106 * @return bool[]
1107 * Return indicates whether the updateFinancialAccounts function should continue & whether this is a refund.
1108 */
1109 private static function updateFinancialAccountsOnContributionStatusChange(&$params, $context, $previousContributionStatus, $currentContributionStatus) {
1110 $isARefund = FALSE;
1111 if ((($previousContributionStatus == 'Partially paid' && $currentContributionStatus == 'Completed')
1112 || ($previousContributionStatus == 'Pending refund' && $currentContributionStatus == 'Completed')
1113 // This concept of pay_later as different to any other sort of pending is deprecated & it's unclear
1114 // why it is here or where it is handled instead.
1115 || ($previousContributionStatus == 'Pending' && $params['prevContribution']->is_pay_later == TRUE
1116 && $currentContributionStatus == 'Partially paid'))
1117 ) {
1118 return [FALSE, $isARefund];
1119 }
1120 if ($context == 'changedStatus') {
1121 if ($previousContributionStatus == 'Completed'
1122 && (self::isContributionStatusNegative($params['contribution']->contribution_status_id))
1123 ) {
1124 $isARefund = TRUE;
1125 // @todo we should stop passing $params by reference - splitting this out would be a step towards that.
1126 $params['trxnParams']['total_amount'] = -$params['total_amount'];
1127 if (empty($params['contribution']->creditnote_id) || $params['contribution']->creditnote_id == "null") {
1128 $creditNoteId = self::createCreditNoteId();
1129 CRM_Core_DAO::setFieldValue('CRM_Contribute_DAO_Contribution', $params['contribution']->id, 'creditnote_id', $creditNoteId);
1130 }
1131 }
1132 elseif (($previousContributionStatus == 'Pending'
1133 && $params['prevContribution']->is_pay_later) || $previousContributionStatus == 'In Progress'
1134 ) {
1135 $financialTypeID = CRM_Utils_Array::value('financial_type_id', $params) ? $params['financial_type_id'] : $params['prevContribution']->financial_type_id;
1136 $arAccountId = CRM_Contribute_PseudoConstant::getRelationalFinancialAccount($financialTypeID, 'Accounts Receivable Account is');
1137
1138 if ($currentContributionStatus == 'Cancelled') {
1139 // @todo we should stop passing $params by reference - splitting this out would be a step towards that.
1140 $params['trxnParams']['to_financial_account_id'] = $arAccountId;
1141 $params['trxnParams']['total_amount'] = -$params['total_amount'];
1142 if (is_null($params['contribution']->creditnote_id) || $params['contribution']->creditnote_id == "null") {
1143 $creditNoteId = self::createCreditNoteId();
1144 CRM_Core_DAO::setFieldValue('CRM_Contribute_DAO_Contribution', $params['contribution']->id, 'creditnote_id', $creditNoteId);
1145 }
1146 }
1147 else {
1148 // @todo we should stop passing $params by reference - splitting this out would be a step towards that.
1149 $params['trxnParams']['from_financial_account_id'] = $arAccountId;
1150 }
1151 }
1152
1153 if (($previousContributionStatus == 'Pending'
1154 || $previousContributionStatus == 'In Progress')
1155 && ($currentContributionStatus == 'Completed')
1156 ) {
1157 if (empty($params['line_item'])) {
1158 //CRM-15296
1159 //@todo - check with Joe regarding this situation - payment processors create pending transactions with no line items
1160 // when creating recurring membership payment - there are 2 lines to comment out in contributonPageTest if fixed
1161 // & this can be removed
1162 return [FALSE, $isARefund];
1163 }
1164 // @todo we should stop passing $params by reference - splitting this out would be a step towards that.
1165 // This is an update so original currency if none passed in.
1166 $params['trxnParams']['currency'] = CRM_Utils_Array::value('currency', $params, $params['prevContribution']->currency);
1167
1168 self::recordAlwaysAccountsReceivable($params['trxnParams'], $params);
1169 $trxn = CRM_Core_BAO_FinancialTrxn::create($params['trxnParams']);
1170 // @todo we should stop passing $params by reference - splitting this out would be a step towards that.
1171 $params['entity_id'] = self::$_trxnIDs[] = $trxn->id;
1172 $query = "UPDATE civicrm_financial_item SET status_id = %1 WHERE entity_id = %2 and entity_table = 'civicrm_line_item'";
1173 $sql = "SELECT id, amount FROM civicrm_financial_item WHERE entity_id = %1 and entity_table = 'civicrm_line_item'";
1174
1175 $entityParams = [
1176 'entity_table' => 'civicrm_financial_item',
1177 ];
1178 foreach ($params['line_item'] as $fieldId => $fields) {
1179 foreach ($fields as $fieldValueId => $lineItemDetails) {
1180 $fparams = [
1181 1 => [
1182 CRM_Core_PseudoConstant::getKey('CRM_Financial_BAO_FinancialItem', 'status_id', 'Paid'),
1183 'Integer',
1184 ],
1185 2 => [$lineItemDetails['id'], 'Integer'],
1186 ];
1187 CRM_Core_DAO::executeQuery($query, $fparams);
1188 $fparams = [
1189 1 => [$lineItemDetails['id'], 'Integer'],
1190 ];
1191 $financialItem = CRM_Core_DAO::executeQuery($sql, $fparams);
1192 while ($financialItem->fetch()) {
1193 $entityParams['entity_id'] = $financialItem->id;
1194 $entityParams['amount'] = $financialItem->amount;
1195 foreach (self::$_trxnIDs as $tID) {
1196 $entityParams['financial_trxn_id'] = $tID;
1197 CRM_Financial_BAO_FinancialItem::createEntityTrxn($entityParams);
1198 }
1199 }
1200 }
1201 }
1202 return [FALSE, $isARefund];
1203 }
1204 }
1205 return [TRUE, $isARefund];
1206 }
1207
1208 /**
1209 * @inheritDoc
1210 */
1211 public function addSelectWhereClause() {
1212 $whereClauses = parent::addSelectWhereClause();
1213 if ($whereClauses !== []) {
1214 // In this case permisssions have been applied & we assume the
1215 // financialaclreport is applying these
1216 // https://github.com/JMAConsulting/biz.jmaconsulting.financialaclreport/blob/master/financialaclreport.php#L107
1217 return $whereClauses;
1218 }
1219
1220 if (!CRM_Financial_BAO_FinancialType::isACLFinancialTypeStatus()) {
1221 return $whereClauses;
1222 }
1223 $types = CRM_Financial_BAO_FinancialType::getAllEnabledAvailableFinancialTypes();
1224 if (empty($types)) {
1225 $whereClauses['financial_type_id'] = 'IN (0)';
1226 }
1227 else {
1228 $whereClauses['financial_type_id'] = [
1229 'IN (' . implode(',', array_keys($types)) . ')',
1230 ];
1231 }
1232 return $whereClauses;
1233 }
1234
1235 /**
1236 * @param null $status
1237 * @param null $startDate
1238 * @param null $endDate
1239 *
1240 * @return array|null
1241 */
1242 public static function getTotalAmountAndCount($status = NULL, $startDate = NULL, $endDate = NULL) {
1243 $where = [];
1244 switch ($status) {
1245 case 'Valid':
1246 $where[] = 'contribution_status_id = 1';
1247 break;
1248
1249 case 'Cancelled':
1250 $where[] = 'contribution_status_id = 3';
1251 break;
1252 }
1253
1254 if ($startDate) {
1255 $where[] = "receive_date >= '" . CRM_Utils_Type::escape($startDate, 'Timestamp') . "'";
1256 }
1257 if ($endDate) {
1258 $where[] = "receive_date <= '" . CRM_Utils_Type::escape($endDate, 'Timestamp') . "'";
1259 }
1260 $financialTypeACLJoin = '';
1261 if (CRM_Financial_BAO_FinancialType::isACLFinancialTypeStatus()) {
1262 $financialTypeACLJoin = " LEFT JOIN civicrm_line_item i ON (i.contribution_id = c.id AND i.entity_table = 'civicrm_contribution') ";
1263 $financialTypes = CRM_Contribute_PseudoConstant::financialType();
1264 CRM_Financial_BAO_FinancialType::getAvailableFinancialTypes($financialTypes);
1265 if ($financialTypes) {
1266 $where[] = "c.financial_type_id IN (" . implode(',', array_keys($financialTypes)) . ")";
1267 $where[] = "i.financial_type_id IN (" . implode(',', array_keys($financialTypes)) . ")";
1268 }
1269 else {
1270 $where[] = "c.financial_type_id IN (0)";
1271 }
1272 }
1273
1274 $whereCond = implode(' AND ', $where);
1275
1276 $query = "
1277 SELECT sum( total_amount ) as total_amount,
1278 count( c.id ) as total_count,
1279 currency
1280 FROM civicrm_contribution c
1281 INNER JOIN civicrm_contact contact ON ( contact.id = c.contact_id )
1282 $financialTypeACLJoin
1283 WHERE $whereCond
1284 AND ( is_test = 0 OR is_test IS NULL )
1285 AND contact.is_deleted = 0
1286 GROUP BY currency
1287 ";
1288
1289 $dao = CRM_Core_DAO::executeQuery($query);
1290 $amount = [];
1291 $count = 0;
1292 while ($dao->fetch()) {
1293 $count += $dao->total_count;
1294 $amount[] = CRM_Utils_Money::format($dao->total_amount, $dao->currency);
1295 }
1296 if ($count) {
1297 return [
1298 'amount' => implode(', ', $amount),
1299 'count' => $count,
1300 ];
1301 }
1302 return NULL;
1303 }
1304
1305 /**
1306 * Delete the indirect records associated with this contribution first.
1307 *
1308 * @param int $id
1309 *
1310 * @return mixed|null
1311 * $results no of deleted Contribution on success, false otherwise
1312 */
1313 public static function deleteContribution($id) {
1314 CRM_Utils_Hook::pre('delete', 'Contribution', $id, CRM_Core_DAO::$_nullArray);
1315
1316 $transaction = new CRM_Core_Transaction();
1317
1318 $results = NULL;
1319 //delete activity record
1320 $params = [
1321 'source_record_id' => $id,
1322 // activity type id for contribution
1323 'activity_type_id' => 6,
1324 ];
1325
1326 CRM_Activity_BAO_Activity::deleteActivity($params);
1327
1328 //delete billing address if exists for this contribution.
1329 self::deleteAddress($id);
1330
1331 //update pledge and pledge payment, CRM-3961
1332 CRM_Pledge_BAO_PledgePayment::resetPledgePayment($id);
1333
1334 // remove entry from civicrm_price_set_entity, CRM-5095
1335 if (CRM_Price_BAO_PriceSet::getFor('civicrm_contribution', $id)) {
1336 CRM_Price_BAO_PriceSet::removeFrom('civicrm_contribution', $id);
1337 }
1338 // cleanup line items.
1339 $participantId = CRM_Core_DAO::getFieldValue('CRM_Event_DAO_ParticipantPayment', $id, 'participant_id', 'contribution_id');
1340
1341 // delete any related entity_financial_trxn, financial_trxn and financial_item records.
1342 CRM_Core_BAO_FinancialTrxn::deleteFinancialTrxn($id);
1343
1344 if ($participantId) {
1345 CRM_Price_BAO_LineItem::deleteLineItems($participantId, 'civicrm_participant');
1346 }
1347 else {
1348 CRM_Price_BAO_LineItem::deleteLineItems($id, 'civicrm_contribution');
1349 }
1350
1351 //delete note.
1352 $note = CRM_Core_BAO_Note::getNote($id, 'civicrm_contribution');
1353 $noteId = key($note);
1354 if ($noteId) {
1355 CRM_Core_BAO_Note::del($noteId, FALSE);
1356 }
1357
1358 $dao = new CRM_Contribute_DAO_Contribution();
1359 $dao->id = $id;
1360
1361 $results = $dao->delete();
1362
1363 $transaction->commit();
1364
1365 CRM_Utils_Hook::post('delete', 'Contribution', $dao->id, $dao);
1366
1367 // delete the recently created Contribution
1368 $contributionRecent = [
1369 'id' => $id,
1370 'type' => 'Contribution',
1371 ];
1372 CRM_Utils_Recent::del($contributionRecent);
1373
1374 return $results;
1375 }
1376
1377 /**
1378 * React to a financial transaction (payment) failure.
1379 *
1380 * Prior to CRM-16417 these were simply removed from the database but it has been agreed that seeing attempted
1381 * payments is important for forensic and outreach reasons.
1382 *
1383 * @param int $contributionID
1384 * @param int $contactID
1385 * @param string $message
1386 *
1387 * @throws \CiviCRM_API3_Exception
1388 */
1389 public static function failPayment($contributionID, $contactID, $message) {
1390 civicrm_api3('activity', 'create', [
1391 'activity_type_id' => 'Failed Payment',
1392 'details' => $message,
1393 'subject' => ts('Payment failed at payment processor'),
1394 'source_record_id' => $contributionID,
1395 'source_contact_id' => CRM_Core_Session::getLoggedInContactID() ? CRM_Core_Session::getLoggedInContactID() : $contactID,
1396 ]);
1397
1398 // CRM-20336 Make sure that the contribution status is Failed, not Pending.
1399 civicrm_api3('contribution', 'create', [
1400 'id' => $contributionID,
1401 'contribution_status_id' => 'Failed',
1402 ]);
1403 }
1404
1405 /**
1406 * Check if there is a contribution with the same trxn_id or invoice_id.
1407 *
1408 * @param array $input
1409 * An assoc array of name/value pairs.
1410 * @param array $duplicates
1411 * (reference) store ids of duplicate contribs.
1412 * @param int $id
1413 *
1414 * @return bool
1415 * true if duplicate, false otherwise
1416 */
1417 public static function checkDuplicate($input, &$duplicates, $id = NULL) {
1418 if (!$id) {
1419 $id = CRM_Utils_Array::value('id', $input);
1420 }
1421 $trxn_id = CRM_Utils_Array::value('trxn_id', $input);
1422 $invoice_id = CRM_Utils_Array::value('invoice_id', $input);
1423
1424 $clause = [];
1425 $input = [];
1426
1427 if ($trxn_id) {
1428 $clause[] = "trxn_id = %1";
1429 $input[1] = [$trxn_id, 'String'];
1430 }
1431
1432 if ($invoice_id) {
1433 $clause[] = "invoice_id = %2";
1434 $input[2] = [$invoice_id, 'String'];
1435 }
1436
1437 if (empty($clause)) {
1438 return FALSE;
1439 }
1440
1441 $clause = implode(' OR ', $clause);
1442 if ($id) {
1443 $clause = "( $clause ) AND id != %3";
1444 $input[3] = [$id, 'Integer'];
1445 }
1446
1447 $query = "SELECT id FROM civicrm_contribution WHERE $clause";
1448 $dao = CRM_Core_DAO::executeQuery($query, $input);
1449 $result = FALSE;
1450 while ($dao->fetch()) {
1451 $duplicates[] = $dao->id;
1452 $result = TRUE;
1453 }
1454 return $result;
1455 }
1456
1457 /**
1458 * Takes an associative array and creates a contribution_product object.
1459 *
1460 * the function extract all the params it needs to initialize the create a
1461 * contribution_product object. the params array could contain additional unused name/value
1462 * pairs
1463 *
1464 * @param array $params
1465 * (reference) an assoc array of name/value pairs.
1466 *
1467 * @return CRM_Contribute_DAO_ContributionProduct
1468 */
1469 public static function addPremium(&$params) {
1470 $contributionProduct = new CRM_Contribute_DAO_ContributionProduct();
1471 $contributionProduct->copyValues($params);
1472 return $contributionProduct->save();
1473 }
1474
1475 /**
1476 * Get list of contribution fields for profile.
1477 * For now we only allow custom contribution fields to be in
1478 * profile
1479 *
1480 * @param bool $addExtraFields
1481 * True if special fields needs to be added.
1482 *
1483 * @return array
1484 * the list of contribution fields
1485 */
1486 public static function getContributionFields($addExtraFields = TRUE) {
1487 $contributionFields = CRM_Contribute_DAO_Contribution::export();
1488 // @todo remove this - this line was added because payment_instrument_id was not
1489 // set to exportable - but now it is.
1490 $contributionFields = array_merge($contributionFields, CRM_Core_OptionValue::getFields($mode = 'contribute'));
1491
1492 if ($addExtraFields) {
1493 $contributionFields = array_merge($contributionFields, self::getSpecialContributionFields());
1494 }
1495
1496 $contributionFields = array_merge($contributionFields, CRM_Financial_DAO_FinancialType::export());
1497
1498 foreach ($contributionFields as $key => $var) {
1499 if ($key == 'contribution_contact_id') {
1500 continue;
1501 }
1502 elseif ($key == 'contribution_campaign_id') {
1503 $var['title'] = ts('Campaign');
1504 }
1505 $fields[$key] = $var;
1506 }
1507
1508 $fields = array_merge($fields, CRM_Core_BAO_CustomField::getFieldsForImport('Contribution'));
1509 return $fields;
1510 }
1511
1512 /**
1513 * Add extra fields specific to contribution.
1514 */
1515 public static function getSpecialContributionFields() {
1516 $extraFields = [
1517 'contribution_soft_credit_name' => [
1518 'name' => 'contribution_soft_credit_name',
1519 'title' => ts('Soft Credit Name'),
1520 'headerPattern' => '/^soft_credit_name$/i',
1521 'where' => 'civicrm_contact_d.display_name',
1522 ],
1523 'contribution_soft_credit_email' => [
1524 'name' => 'contribution_soft_credit_email',
1525 'title' => ts('Soft Credit Email'),
1526 'headerPattern' => '/^soft_credit_email$/i',
1527 'where' => 'soft_email.email',
1528 ],
1529 'contribution_soft_credit_phone' => [
1530 'name' => 'contribution_soft_credit_phone',
1531 'title' => ts('Soft Credit Phone'),
1532 'headerPattern' => '/^soft_credit_phone$/i',
1533 'where' => 'soft_phone.phone',
1534 ],
1535 'contribution_soft_credit_contact_id' => [
1536 'name' => 'contribution_soft_credit_contact_id',
1537 'title' => ts('Soft Credit Contact ID'),
1538 'headerPattern' => '/^soft_credit_contact_id$/i',
1539 'where' => 'civicrm_contribution_soft.contact_id',
1540 ],
1541 'contribution_pcp_title' => [
1542 'name' => 'contribution_pcp_title',
1543 'title' => ts('Personal Campaign Page Title'),
1544 'headerPattern' => '/^contribution_pcp_title$/i',
1545 'where' => 'contribution_pcp.title',
1546 ],
1547 ];
1548
1549 return $extraFields;
1550 }
1551
1552 /**
1553 * @param int $pageID
1554 *
1555 * @return array
1556 */
1557 public static function getCurrentandGoalAmount($pageID) {
1558 $query = "
1559 SELECT p.goal_amount as goal, sum( c.total_amount ) as total
1560 FROM civicrm_contribution_page p,
1561 civicrm_contribution c
1562 WHERE p.id = c.contribution_page_id
1563 AND p.id = %1
1564 AND c.cancel_date is null
1565 GROUP BY p.id
1566 ";
1567
1568 $config = CRM_Core_Config::singleton();
1569 $params = [1 => [$pageID, 'Integer']];
1570 $dao = CRM_Core_DAO::executeQuery($query, $params);
1571
1572 if ($dao->fetch()) {
1573 return [$dao->goal, $dao->total];
1574 }
1575 else {
1576 return [NULL, NULL];
1577 }
1578 }
1579
1580 /**
1581 * Get list of contributions which credit the passed in contact ID.
1582 *
1583 * The returned array provides details about the original contribution & donor.
1584 *
1585 * @param int $honorId
1586 * In Honor of Contact ID.
1587 *
1588 * @return array
1589 * list of contribution fields
1590 * @todo - this is a confusing function called from one place. It has a test. It would be
1591 * nice to deprecate it.
1592 *
1593 */
1594 public static function getHonorContacts($honorId) {
1595 $params = [];
1596 $honorDAO = new CRM_Contribute_DAO_ContributionSoft();
1597 $honorDAO->contact_id = $honorId;
1598 $honorDAO->find();
1599
1600 $type = CRM_Contribute_PseudoConstant::financialType();
1601
1602 while ($honorDAO->fetch()) {
1603 $contributionDAO = new CRM_Contribute_DAO_Contribution();
1604 $contributionDAO->id = $honorDAO->contribution_id;
1605
1606 if ($contributionDAO->find(TRUE)) {
1607 $params[$contributionDAO->id]['honor_type'] = CRM_Core_PseudoConstant::getLabel('CRM_Contribute_BAO_ContributionSoft', 'soft_credit_type_id', $honorDAO->soft_credit_type_id);
1608 $params[$contributionDAO->id]['honorId'] = $contributionDAO->contact_id;
1609 $params[$contributionDAO->id]['display_name'] = CRM_Core_DAO::getFieldValue('CRM_Contact_DAO_Contact', $contributionDAO->contact_id, 'display_name');
1610 $params[$contributionDAO->id]['type'] = $type[$contributionDAO->financial_type_id];
1611 $params[$contributionDAO->id]['type_id'] = $contributionDAO->financial_type_id;
1612 $params[$contributionDAO->id]['amount'] = CRM_Utils_Money::format($contributionDAO->total_amount, $contributionDAO->currency);
1613 $params[$contributionDAO->id]['source'] = $contributionDAO->source;
1614 $params[$contributionDAO->id]['receive_date'] = $contributionDAO->receive_date;
1615 $params[$contributionDAO->id]['contribution_status'] = CRM_Contribute_PseudoConstant::contributionStatus($contributionDAO->contribution_status_id);
1616 }
1617 }
1618
1619 return $params;
1620 }
1621
1622 /**
1623 * Get the sort name of a contact for a particular contribution.
1624 *
1625 * @param int $id
1626 * Id of the contribution.
1627 *
1628 * @return null|string
1629 * sort name of the contact if found
1630 */
1631 public static function sortName($id) {
1632 $id = CRM_Utils_Type::escape($id, 'Integer');
1633
1634 $query = "
1635 SELECT civicrm_contact.sort_name
1636 FROM civicrm_contribution, civicrm_contact
1637 WHERE civicrm_contribution.contact_id = civicrm_contact.id
1638 AND civicrm_contribution.id = {$id}
1639 ";
1640 return CRM_Core_DAO::singleValueQuery($query);
1641 }
1642
1643 /**
1644 * Generate summary of amount received in the current fiscal year to date from the contact or contacts.
1645 *
1646 * @param int|array $contactIDs
1647 *
1648 * @return array
1649 */
1650 public static function annual($contactIDs) {
1651 if (!is_array($contactIDs)) {
1652 // In practice I can't fine any evidence that this function is ever called with
1653 // anything other than a single contact id, but left like this due to .... fear.
1654 $contactIDs = explode(',', $contactIDs);
1655 }
1656
1657 $query = self::getAnnualQuery($contactIDs);
1658 $dao = CRM_Core_DAO::executeQuery($query);
1659 $count = 0;
1660 $amount = $average = [];
1661 while ($dao->fetch()) {
1662 if ($dao->count > 0 && $dao->amount > 0) {
1663 $count += $dao->count;
1664 $amount[] = CRM_Utils_Money::format($dao->amount, $dao->currency);
1665 $average[] = CRM_Utils_Money::format($dao->average, $dao->currency);
1666 }
1667 }
1668 if ($count > 0) {
1669 return [
1670 $count,
1671 implode(',&nbsp;', $amount),
1672 implode(',&nbsp;', $average),
1673 ];
1674 }
1675 return [0, 0, 0];
1676 }
1677
1678 /**
1679 * Check if there is a contribution with the params passed in.
1680 *
1681 * Used for trxn_id,invoice_id and contribution_id
1682 *
1683 * @param array $params
1684 * An assoc array of name/value pairs.
1685 *
1686 * @return array
1687 * contribution id if success else NULL
1688 */
1689 public static function checkDuplicateIds($params) {
1690 $dao = new CRM_Contribute_DAO_Contribution();
1691
1692 $clause = [];
1693 $input = [];
1694 foreach ($params as $k => $v) {
1695 if ($v) {
1696 $clause[] = "$k = '$v'";
1697 }
1698 }
1699 $clause = implode(' AND ', $clause);
1700 $query = "SELECT id FROM civicrm_contribution WHERE $clause";
1701 $dao = CRM_Core_DAO::executeQuery($query, $input);
1702
1703 while ($dao->fetch()) {
1704 $result = $dao->id;
1705 return $result;
1706 }
1707 return NULL;
1708 }
1709
1710 /**
1711 * Get the contribution details for component export.
1712 *
1713 * @param int $exportMode
1714 * Export mode.
1715 * @param array $componentIds
1716 * Component ids.
1717 *
1718 * @return array
1719 * associated array
1720 */
1721 public static function getContributionDetails($exportMode, $componentIds) {
1722 $paymentDetails = [];
1723 $componentClause = ' IN ( ' . implode(',', $componentIds) . ' ) ';
1724
1725 if ($exportMode == CRM_Export_Form_Select::EVENT_EXPORT) {
1726 $componentSelect = " civicrm_participant_payment.participant_id id";
1727 $additionalClause = "
1728 INNER JOIN civicrm_participant_payment ON (civicrm_contribution.id = civicrm_participant_payment.contribution_id
1729 AND civicrm_participant_payment.participant_id {$componentClause} )
1730 ";
1731 }
1732 elseif ($exportMode == CRM_Export_Form_Select::MEMBER_EXPORT) {
1733 $componentSelect = " civicrm_membership_payment.membership_id id";
1734 $additionalClause = "
1735 INNER JOIN civicrm_membership_payment ON (civicrm_contribution.id = civicrm_membership_payment.contribution_id
1736 AND civicrm_membership_payment.membership_id {$componentClause} )
1737 ";
1738 }
1739 elseif ($exportMode == CRM_Export_Form_Select::PLEDGE_EXPORT) {
1740 $componentSelect = " civicrm_pledge_payment.id id";
1741 $additionalClause = "
1742 INNER JOIN civicrm_pledge_payment ON (civicrm_contribution.id = civicrm_pledge_payment.contribution_id
1743 AND civicrm_pledge_payment.pledge_id {$componentClause} )
1744 ";
1745 }
1746
1747 $query = " SELECT total_amount, contribution_status.name as status_id, contribution_status.label as status, payment_instrument.name as payment_instrument, receive_date,
1748 trxn_id, {$componentSelect}
1749 FROM civicrm_contribution
1750 LEFT JOIN civicrm_option_group option_group_payment_instrument ON ( option_group_payment_instrument.name = 'payment_instrument')
1751 LEFT JOIN civicrm_option_value payment_instrument ON (civicrm_contribution.payment_instrument_id = payment_instrument.value
1752 AND option_group_payment_instrument.id = payment_instrument.option_group_id )
1753 LEFT JOIN civicrm_option_group option_group_contribution_status ON (option_group_contribution_status.name = 'contribution_status')
1754 LEFT JOIN civicrm_option_value contribution_status ON (civicrm_contribution.contribution_status_id = contribution_status.value
1755 AND option_group_contribution_status.id = contribution_status.option_group_id )
1756 {$additionalClause}
1757 ";
1758
1759 $dao = CRM_Core_DAO::executeQuery($query);
1760
1761 while ($dao->fetch()) {
1762 $paymentDetails[$dao->id] = [
1763 'total_amount' => $dao->total_amount,
1764 'contribution_status' => $dao->status,
1765 'receive_date' => $dao->receive_date,
1766 'pay_instru' => $dao->payment_instrument,
1767 'trxn_id' => $dao->trxn_id,
1768 ];
1769 }
1770
1771 return $paymentDetails;
1772 }
1773
1774 /**
1775 * Create address associated with contribution record.
1776 *
1777 * As long as there is one or more billing field in the parameters we will create the address.
1778 *
1779 * (historically the decision to create or not was based on the payment 'type' but these lines are greyer than once
1780 * thought).
1781 *
1782 * @param array $params
1783 * @param int $billingLocationTypeID
1784 *
1785 * @return int
1786 * address id
1787 */
1788 public static function createAddress($params, $billingLocationTypeID) {
1789 list($hasBillingField, $addressParams) = self::getBillingAddressParams($params, $billingLocationTypeID);
1790 if ($hasBillingField) {
1791 $address = CRM_Core_BAO_Address::add($addressParams, FALSE);
1792 return $address->id;
1793 }
1794 return NULL;
1795
1796 }
1797
1798 /**
1799 * Delete billing address record related contribution.
1800 *
1801 * @param int $contributionId
1802 * @param int $contactId
1803 */
1804 public static function deleteAddress($contributionId = NULL, $contactId = NULL) {
1805 $clauses = [];
1806 $contactJoin = NULL;
1807
1808 if ($contributionId) {
1809 $clauses[] = "cc.id = {$contributionId}";
1810 }
1811
1812 if ($contactId) {
1813 $clauses[] = "cco.id = {$contactId}";
1814 $contactJoin = "INNER JOIN civicrm_contact cco ON cc.contact_id = cco.id";
1815 }
1816
1817 if (empty($clauses)) {
1818 CRM_Core_Error::fatal();
1819 }
1820
1821 $condition = implode(' OR ', $clauses);
1822
1823 $query = "
1824 SELECT ca.id
1825 FROM civicrm_address ca
1826 INNER JOIN civicrm_contribution cc ON cc.address_id = ca.id
1827 $contactJoin
1828 WHERE $condition
1829 ";
1830 $dao = CRM_Core_DAO::executeQuery($query);
1831
1832 while ($dao->fetch()) {
1833 $params = ['id' => $dao->id];
1834 CRM_Core_BAO_Block::blockDelete('Address', $params);
1835 }
1836 }
1837
1838 /**
1839 * This function check online pending contribution associated w/
1840 * Online Event Registration or Online Membership signup.
1841 *
1842 * @param int $componentId
1843 * Participant/membership id.
1844 * @param string $componentName
1845 * Event/Membership.
1846 *
1847 * @return int
1848 * pending contribution id.
1849 */
1850 public static function checkOnlinePendingContribution($componentId, $componentName) {
1851 $contributionId = NULL;
1852 if (!$componentId ||
1853 !in_array($componentName, ['Event', 'Membership'])
1854 ) {
1855 return $contributionId;
1856 }
1857
1858 if ($componentName == 'Event') {
1859 $idName = 'participant_id';
1860 $componentTable = 'civicrm_participant';
1861 $paymentTable = 'civicrm_participant_payment';
1862 $source = ts('Online Event Registration');
1863 }
1864
1865 if ($componentName == 'Membership') {
1866 $idName = 'membership_id';
1867 $componentTable = 'civicrm_membership';
1868 $paymentTable = 'civicrm_membership_payment';
1869 $source = ts('Online Contribution');
1870 }
1871
1872 $pendingStatusId = array_search('Pending', CRM_Contribute_PseudoConstant::contributionStatus(NULL, 'name'));
1873
1874 $query = "
1875 SELECT component.id as {$idName},
1876 componentPayment.contribution_id as contribution_id,
1877 contribution.source source,
1878 contribution.contribution_status_id as contribution_status_id,
1879 contribution.is_pay_later as is_pay_later
1880 FROM $componentTable component
1881 LEFT JOIN $paymentTable componentPayment ON ( componentPayment.{$idName} = component.id )
1882 LEFT JOIN civicrm_contribution contribution ON ( componentPayment.contribution_id = contribution.id )
1883 WHERE component.id = {$componentId}";
1884
1885 $dao = CRM_Core_DAO::executeQuery($query);
1886
1887 while ($dao->fetch()) {
1888 if ($dao->contribution_id &&
1889 $dao->is_pay_later &&
1890 $dao->contribution_status_id == $pendingStatusId &&
1891 strpos($dao->source, $source) !== FALSE
1892 ) {
1893 $contributionId = $dao->contribution_id;
1894 }
1895 }
1896
1897 return $contributionId;
1898 }
1899
1900 /**
1901 * Update contribution as well as related objects.
1902 *
1903 * This function by-passes hooks - to address this - don't use this function.
1904 *
1905 * @param array $params
1906 * @param bool $processContributionObject
1907 *
1908 * @return array
1909 * @throws \Exception
1910 * @deprecated
1911 *
1912 * Use api contribute.completetransaction
1913 * For failures use failPayment (preferably exposing by api in the process).
1914 *
1915 */
1916 public static function transitionComponents($params, $processContributionObject = FALSE) {
1917 // get minimum required values.
1918 $contactId = CRM_Utils_Array::value('contact_id', $params);
1919 $componentId = CRM_Utils_Array::value('component_id', $params);
1920 $componentName = CRM_Utils_Array::value('componentName', $params);
1921 $contributionId = CRM_Utils_Array::value('contribution_id', $params);
1922 $contributionStatusId = CRM_Utils_Array::value('contribution_status_id', $params);
1923
1924 // if we already processed contribution object pass previous status id.
1925 $previousContriStatusId = CRM_Utils_Array::value('previous_contribution_status_id', $params);
1926
1927 $updateResult = [];
1928
1929 $contributionStatuses = CRM_Contribute_PseudoConstant::contributionStatus(NULL, 'name');
1930
1931 // we process only ( Completed, Cancelled, or Failed ) contributions.
1932 if (!$contributionId ||
1933 !in_array($contributionStatusId, [
1934 array_search('Completed', $contributionStatuses),
1935 array_search('Cancelled', $contributionStatuses),
1936 array_search('Failed', $contributionStatuses),
1937 ])
1938 ) {
1939 return $updateResult;
1940 }
1941
1942 if (!$componentName || !$componentId) {
1943 // get the related component details.
1944 $componentDetails = self::getComponentDetails($contributionId);
1945 }
1946 else {
1947 $componentDetails['contact_id'] = $contactId;
1948 $componentDetails['component'] = $componentName;
1949
1950 if ($componentName == 'event') {
1951 $componentDetails['participant'] = $componentId;
1952 }
1953 else {
1954 $componentDetails['membership'] = $componentId;
1955 }
1956 }
1957
1958 if (!empty($componentDetails['contact_id'])) {
1959 $componentDetails['contact_id'] = CRM_Core_DAO::getFieldValue('CRM_Contribute_DAO_Contribution',
1960 $contributionId,
1961 'contact_id'
1962 );
1963 }
1964
1965 // do check for required ids.
1966 if (empty($componentDetails['membership']) && empty($componentDetails['participant']) && empty($componentDetails['pledge_payment']) || empty($componentDetails['contact_id'])) {
1967 return $updateResult;
1968 }
1969
1970 //now we are ready w/ required ids, start processing.
1971
1972 $baseIPN = new CRM_Core_Payment_BaseIPN();
1973
1974 $input = $ids = $objects = [];
1975
1976 $input['component'] = CRM_Utils_Array::value('component', $componentDetails);
1977 $ids['contribution'] = $contributionId;
1978 $ids['contact'] = CRM_Utils_Array::value('contact_id', $componentDetails);
1979 $ids['membership'] = CRM_Utils_Array::value('membership', $componentDetails);
1980 $ids['participant'] = CRM_Utils_Array::value('participant', $componentDetails);
1981 $ids['event'] = CRM_Utils_Array::value('event', $componentDetails);
1982 $ids['pledge_payment'] = CRM_Utils_Array::value('pledge_payment', $componentDetails);
1983 $ids['contributionRecur'] = NULL;
1984 $ids['contributionPage'] = NULL;
1985
1986 if (!$baseIPN->validateData($input, $ids, $objects, FALSE)) {
1987 CRM_Core_Error::fatal();
1988 }
1989
1990 $memberships = &$objects['membership'];
1991 $participant = &$objects['participant'];
1992 $pledgePayment = &$objects['pledge_payment'];
1993 $contribution = &$objects['contribution'];
1994 $pledgeID = $oldStatus = NULL;
1995 $pledgePaymentIDs = [];
1996 if ($pledgePayment) {
1997 foreach ($pledgePayment as $key => $object) {
1998 $pledgePaymentIDs[] = $object->id;
1999 }
2000 $pledgeID = $pledgePayment[0]->pledge_id;
2001 }
2002
2003 $membershipStatuses = CRM_Member_PseudoConstant::membershipStatus();
2004
2005 if ($participant) {
2006 $participantStatuses = CRM_Event_PseudoConstant::participantStatus();
2007 $oldStatus = CRM_Core_DAO::getFieldValue('CRM_Event_DAO_Participant',
2008 $participant->id,
2009 'status_id'
2010 );
2011 }
2012 // we might want to process contribution object.
2013 $processContribution = FALSE;
2014 if ($contributionStatusId == array_search('Cancelled', $contributionStatuses)) {
2015 // Call interim cancel function - with a goal to cleaning up the signature on it and switching to a tested api Contribution.cancel function.
2016 list($updateResult, $processContribution) = self::cancel($processContributionObject, $memberships, $contributionId, $membershipStatuses, $updateResult, $participant, $oldStatus, $pledgePayment, $pledgeID, $pledgePaymentIDs, $contributionStatusId);
2017 }
2018 elseif ($contributionStatusId == array_search('Failed', $contributionStatuses)) {
2019 if (is_array($memberships)) {
2020 foreach ($memberships as $membership) {
2021 $update = TRUE;
2022 //Update Membership status if there is no other completed contribution associated with the membership.
2023 $relatedContributions = CRM_Member_BAO_Membership::getMembershipContributionId($membership->id, TRUE);
2024 foreach ($relatedContributions as $contriId) {
2025 if ($contriId == $contributionId) {
2026 continue;
2027 }
2028 $statusId = CRM_Core_DAO::getFieldValue('CRM_Contribute_BAO_Contribution', $contriId, 'contribution_status_id');
2029 if (CRM_Core_PseudoConstant::getName('CRM_Contribute_BAO_Contribution', 'contribution_status_id', $statusId) === 'Completed') {
2030 $update = FALSE;
2031 }
2032 }
2033 if ($membership && $update) {
2034 $membership->status_id = array_search('Expired', $membershipStatuses);
2035 $membership->is_override = TRUE;
2036 $membership->status_override_end_date = 'null';
2037 $membership->save();
2038
2039 $updateResult['updatedComponents']['CiviMember'] = $membership->status_id;
2040 if ($processContributionObject) {
2041 $processContribution = TRUE;
2042 }
2043 }
2044 }
2045 }
2046 if ($participant) {
2047 $updatedStatusId = array_search('Cancelled', $participantStatuses);
2048 CRM_Event_BAO_Participant::updateParticipantStatus($participant->id, $oldStatus, $updatedStatusId, TRUE);
2049
2050 $updateResult['updatedComponents']['CiviEvent'] = $updatedStatusId;
2051 if ($processContributionObject) {
2052 $processContribution = TRUE;
2053 }
2054 }
2055
2056 if ($pledgePayment) {
2057 CRM_Pledge_BAO_PledgePayment::updatePledgePaymentStatus($pledgeID, $pledgePaymentIDs, $contributionStatusId);
2058
2059 $updateResult['updatedComponents']['CiviPledge'] = $contributionStatusId;
2060 if ($processContributionObject) {
2061 $processContribution = TRUE;
2062 }
2063 }
2064 }
2065 elseif ($contributionStatusId == array_search('Completed', $contributionStatuses)) {
2066
2067 // only pending contribution related object processed.
2068 if ($previousContriStatusId &&
2069 !in_array($contributionStatuses[$previousContriStatusId], [
2070 'Pending',
2071 'Partially paid',
2072 ])
2073 ) {
2074 // this is case when we already processed contribution object.
2075 return $updateResult;
2076 }
2077 elseif (!$previousContriStatusId &&
2078 !in_array($contributionStatuses[$contribution->contribution_status_id], [
2079 'Pending',
2080 'Partially paid',
2081 ])
2082 ) {
2083 // this is case when we are going to process contribution object later.
2084 return $updateResult;
2085 }
2086
2087 if (is_array($memberships)) {
2088 foreach ($memberships as $membership) {
2089 if ($membership) {
2090 $format = '%Y%m%d';
2091
2092 //CRM-4523
2093 $currentMembership = CRM_Member_BAO_Membership::getContactMembership($membership->contact_id,
2094 $membership->membership_type_id,
2095 $membership->is_test, $membership->id
2096 );
2097
2098 // CRM-8141 update the membership type with the value recorded in log when membership created/renewed
2099 // this picks up membership type changes during renewals
2100 $sql = "
2101 SELECT membership_type_id
2102 FROM civicrm_membership_log
2103 WHERE membership_id=$membership->id
2104 ORDER BY id DESC
2105 LIMIT 1;";
2106 $dao = new CRM_Core_DAO();
2107 $dao->query($sql);
2108 if ($dao->fetch()) {
2109 if (!empty($dao->membership_type_id)) {
2110 $membership->membership_type_id = $dao->membership_type_id;
2111 $membership->save();
2112 }
2113 }
2114 // else fall back to using current membership type
2115 // Figure out number of terms
2116 $numterms = 1;
2117 $lineitems = CRM_Price_BAO_LineItem::getLineItemsByContributionID($contributionId);
2118 foreach ($lineitems as $lineitem) {
2119 if ($membership->membership_type_id == CRM_Utils_Array::value('membership_type_id', $lineitem)) {
2120 $numterms = CRM_Utils_Array::value('membership_num_terms', $lineitem);
2121
2122 // in case membership_num_terms comes through as null or zero
2123 $numterms = $numterms >= 1 ? $numterms : 1;
2124 break;
2125 }
2126 }
2127
2128 // CRM-15735-to update the membership status as per the contribution receive date
2129 $joinDate = NULL;
2130 $oldStatus = $membership->status_id;
2131 if (!empty($params['receive_date'])) {
2132 $joinDate = $params['receive_date'];
2133 $status = CRM_Member_BAO_MembershipStatus::getMembershipStatusByDate($membership->start_date,
2134 $membership->end_date,
2135 $membership->join_date,
2136 $params['receive_date'],
2137 FALSE,
2138 $membership->membership_type_id,
2139 (array) $membership
2140 );
2141 $membership->status_id = CRM_Utils_Array::value('id', $status, $membership->status_id);
2142 $membership->save();
2143 }
2144
2145 if ($currentMembership) {
2146 CRM_Member_BAO_Membership::fixMembershipStatusBeforeRenew($currentMembership, NULL);
2147 $dates = CRM_Member_BAO_MembershipType::getRenewalDatesForMembershipType($membership->id, NULL, NULL, $numterms);
2148 $dates['join_date'] = CRM_Utils_Date::customFormat($currentMembership['join_date'], $format);
2149 }
2150 else {
2151 $dates = CRM_Member_BAO_MembershipType::getDatesForMembershipType($membership->membership_type_id, $joinDate, NULL, NULL, $numterms);
2152 }
2153
2154 //get the status for membership.
2155 $calcStatus = CRM_Member_BAO_MembershipStatus::getMembershipStatusByDate($dates['start_date'],
2156 $dates['end_date'],
2157 $dates['join_date'],
2158 'today',
2159 TRUE,
2160 $membership->membership_type_id,
2161 (array) $membership
2162 );
2163
2164 $formattedParams = [
2165 'status_id' => CRM_Utils_Array::value('id', $calcStatus,
2166 array_search('Current', $membershipStatuses)
2167 ),
2168 'join_date' => CRM_Utils_Date::customFormat($dates['join_date'], $format),
2169 'start_date' => CRM_Utils_Date::customFormat($dates['start_date'], $format),
2170 'end_date' => CRM_Utils_Date::customFormat($dates['end_date'], $format),
2171 ];
2172
2173 CRM_Utils_Hook::pre('edit', 'Membership', $membership->id, $formattedParams);
2174
2175 $membership->copyValues($formattedParams);
2176 $membership->save();
2177
2178 //updating the membership log
2179 $membershipLog = [];
2180 $membershipLog = $formattedParams;
2181 $logStartDate = CRM_Utils_Date::customFormat(CRM_Utils_Array::value('log_start_date', $dates), $format);
2182 $logStartDate = ($logStartDate) ? CRM_Utils_Date::isoToMysql($logStartDate) : $formattedParams['start_date'];
2183
2184 $membershipLog['start_date'] = $logStartDate;
2185 $membershipLog['membership_id'] = $membership->id;
2186 $membershipLog['modified_id'] = $membership->contact_id;
2187 $membershipLog['modified_date'] = date('Ymd');
2188 $membershipLog['membership_type_id'] = $membership->membership_type_id;
2189
2190 CRM_Member_BAO_MembershipLog::add($membershipLog);
2191
2192 //update related Memberships.
2193 CRM_Member_BAO_Membership::updateRelatedMemberships($membership->id, $formattedParams);
2194
2195 foreach (['Membership Signup', 'Membership Renewal'] as $activityType) {
2196 $scheduledActivityID = CRM_Utils_Array::value('id',
2197 civicrm_api3('Activity', 'Get',
2198 [
2199 'source_record_id' => $membership->id,
2200 'activity_type_id' => $activityType,
2201 'status_id' => 'Scheduled',
2202 'options' => [
2203 'limit' => 1,
2204 'sort' => 'id DESC',
2205 ],
2206 ]
2207 )
2208 );
2209 // 1. Update Schedule Membership Signup/Renewal activity to completed on successful payment of pending membership
2210 // 2. OR Create renewal activity scheduled if its membership renewal will be paid later
2211 if ($scheduledActivityID) {
2212 CRM_Activity_BAO_Activity::addActivity($membership, $activityType, $membership->contact_id, ['id' => $scheduledActivityID]);
2213 break;
2214 }
2215 }
2216
2217 // track membership status change if any
2218 if (!empty($oldStatus) && $membership->status_id != $oldStatus) {
2219 $allStatus = CRM_Member_BAO_Membership::buildOptions('status_id', 'get');
2220 CRM_Activity_BAO_Activity::addActivity($membership,
2221 'Change Membership Status',
2222 NULL,
2223 [
2224 'subject' => "Status changed from {$allStatus[$oldStatus]} to {$allStatus[$membership->status_id]}",
2225 'source_contact_id' => $membershipLog['modified_id'],
2226 'priority_id' => 'Normal',
2227 ]
2228 );
2229 }
2230
2231 $updateResult['updatedComponents']['CiviMember'] = $membership->status_id;
2232 if ($processContributionObject) {
2233 $processContribution = TRUE;
2234 }
2235
2236 CRM_Utils_Hook::post('edit', 'Membership', $membership->id, $membership);
2237 }
2238 }
2239 }
2240
2241 if ($participant) {
2242 $updatedStatusId = array_search('Registered', $participantStatuses);
2243 CRM_Event_BAO_Participant::updateParticipantStatus($participant->id, $oldStatus, $updatedStatusId, TRUE);
2244
2245 $updateResult['updatedComponents']['CiviEvent'] = $updatedStatusId;
2246 if ($processContributionObject) {
2247 $processContribution = TRUE;
2248 }
2249 }
2250
2251 if ($pledgePayment) {
2252 CRM_Pledge_BAO_PledgePayment::updatePledgePaymentStatus($pledgeID, $pledgePaymentIDs, $contributionStatusId);
2253
2254 $updateResult['updatedComponents']['CiviPledge'] = $contributionStatusId;
2255 if ($processContributionObject) {
2256 $processContribution = TRUE;
2257 }
2258 }
2259 }
2260
2261 // process contribution object.
2262 if ($processContribution) {
2263 $contributionParams = [];
2264 $fields = [
2265 'contact_id',
2266 'total_amount',
2267 'receive_date',
2268 'is_test',
2269 'campaign_id',
2270 'payment_instrument_id',
2271 'trxn_id',
2272 'invoice_id',
2273 'financial_type_id',
2274 'contribution_status_id',
2275 'non_deductible_amount',
2276 'receipt_date',
2277 'check_number',
2278 ];
2279 foreach ($fields as $field) {
2280 if (empty($params[$field])) {
2281 continue;
2282 }
2283 $contributionParams[$field] = $params[$field];
2284 }
2285
2286 $ids = ['contribution' => $contributionId];
2287 $contribution = CRM_Contribute_BAO_Contribution::create($contributionParams, $ids);
2288 }
2289
2290 return $updateResult;
2291 }
2292
2293 /**
2294 * Returns all contribution related object ids.
2295 *
2296 * @param $contributionId
2297 *
2298 * @return array
2299 */
2300 public static function getComponentDetails($contributionId) {
2301 $componentDetails = $pledgePayment = [];
2302 if (!$contributionId) {
2303 return $componentDetails;
2304 }
2305
2306 $query = "
2307 SELECT c.id as contribution_id,
2308 c.contact_id as contact_id,
2309 c.contribution_recur_id,
2310 mp.membership_id as membership_id,
2311 m.membership_type_id as membership_type_id,
2312 pp.participant_id as participant_id,
2313 p.event_id as event_id,
2314 pgp.id as pledge_payment_id
2315 FROM civicrm_contribution c
2316 LEFT JOIN civicrm_membership_payment mp ON mp.contribution_id = c.id
2317 LEFT JOIN civicrm_participant_payment pp ON pp.contribution_id = c.id
2318 LEFT JOIN civicrm_participant p ON pp.participant_id = p.id
2319 LEFT JOIN civicrm_membership m ON m.id = mp.membership_id
2320 LEFT JOIN civicrm_pledge_payment pgp ON pgp.contribution_id = c.id
2321 WHERE c.id = $contributionId";
2322
2323 $dao = CRM_Core_DAO::executeQuery($query);
2324 $componentDetails = [];
2325
2326 while ($dao->fetch()) {
2327 $componentDetails['component'] = $dao->participant_id ? 'event' : 'contribute';
2328 $componentDetails['contact_id'] = $dao->contact_id;
2329 if ($dao->event_id) {
2330 $componentDetails['event'] = $dao->event_id;
2331 }
2332 if ($dao->participant_id) {
2333 $componentDetails['participant'] = $dao->participant_id;
2334 }
2335 if ($dao->membership_id) {
2336 if (!isset($componentDetails['membership'])) {
2337 $componentDetails['membership'] = $componentDetails['membership_type'] = [];
2338 }
2339 $componentDetails['membership'][] = $dao->membership_id;
2340 $componentDetails['membership_type'][] = $dao->membership_type_id;
2341 }
2342 if ($dao->pledge_payment_id) {
2343 $pledgePayment[] = $dao->pledge_payment_id;
2344 }
2345 if ($dao->contribution_recur_id) {
2346 $componentDetails['contributionRecur'] = $dao->contribution_recur_id;
2347 }
2348 }
2349
2350 if ($pledgePayment) {
2351 $componentDetails['pledge_payment'] = $pledgePayment;
2352 }
2353
2354 return $componentDetails;
2355 }
2356
2357 /**
2358 * @param int $contactId
2359 * @param bool $includeSoftCredit
2360 *
2361 * @return null|string
2362 */
2363 public static function contributionCount($contactId, $includeSoftCredit = TRUE) {
2364 if (!$contactId) {
2365 return 0;
2366 }
2367 $financialTypes = CRM_Financial_BAO_FinancialType::getAllAvailableFinancialTypes();
2368 $additionalWhere = " AND contribution.financial_type_id IN (0)";
2369 $liWhere = " AND i.financial_type_id IN (0)";
2370 if (!empty($financialTypes)) {
2371 $additionalWhere = " AND contribution.financial_type_id IN (" . implode(',', array_keys($financialTypes)) . ")";
2372 $liWhere = " AND i.financial_type_id NOT IN (" . implode(',', array_keys($financialTypes)) . ")";
2373 }
2374 $contactContributionsSQL = "
2375 SELECT contribution.id AS id
2376 FROM civicrm_contribution contribution
2377 LEFT JOIN civicrm_line_item i ON i.contribution_id = contribution.id AND i.entity_table = 'civicrm_contribution' $liWhere
2378 WHERE contribution.is_test = 0 AND contribution.contact_id = {$contactId}
2379 $additionalWhere
2380 AND i.id IS NULL";
2381
2382 $contactSoftCreditContributionsSQL = "
2383 SELECT contribution.id
2384 FROM civicrm_contribution contribution INNER JOIN civicrm_contribution_soft softContribution
2385 ON ( contribution.id = softContribution.contribution_id )
2386 WHERE contribution.is_test = 0 AND softContribution.contact_id = {$contactId} ";
2387 $query = "SELECT count( x.id ) count FROM ( ";
2388 $query .= $contactContributionsSQL;
2389
2390 if ($includeSoftCredit) {
2391 $query .= " UNION ";
2392 $query .= $contactSoftCreditContributionsSQL;
2393 }
2394
2395 $query .= ") x";
2396
2397 return CRM_Core_DAO::singleValueQuery($query);
2398 }
2399
2400 /**
2401 * Repeat a transaction as part of a recurring series.
2402 *
2403 * Only call this via the api as it is being refactored. The intention is that the repeatTransaction function
2404 * (possibly living on the ContributionRecur BAO) would be called first to create a pending contribution with a
2405 * subsequent call to the contribution.completetransaction api.
2406 *
2407 * The completeTransaction functionality has historically been overloaded to both complete and repeat payments.
2408 *
2409 * @param CRM_Contribute_BAO_Contribution $contribution
2410 * @param array $input
2411 * @param array $contributionParams
2412 * @param int $paymentProcessorID
2413 *
2414 * @return bool
2415 * @throws CiviCRM_API3_Exception
2416 */
2417 protected static function repeatTransaction(&$contribution, &$input, $contributionParams, $paymentProcessorID) {
2418 if (!empty($contribution->id)) {
2419 return FALSE;
2420 }
2421 if (empty($contribution->id)) {
2422 // Unclear why this would only be set for repeats.
2423 if (!empty($input['amount'])) {
2424 $contribution->total_amount = $contributionParams['total_amount'] = $input['amount'];
2425 }
2426
2427 if (!empty($contributionParams['contribution_recur_id'])) {
2428 $recurringContribution = civicrm_api3('ContributionRecur', 'getsingle', [
2429 'id' => $contributionParams['contribution_recur_id'],
2430 ]);
2431 if (!empty($recurringContribution['campaign_id'])) {
2432 // CRM-17718 the campaign id on the contribution recur record should get precedence.
2433 $contributionParams['campaign_id'] = $recurringContribution['campaign_id'];
2434 }
2435 if (!empty($recurringContribution['financial_type_id'])) {
2436 // CRM-17718 the campaign id on the contribution recur record should get precedence.
2437 $contributionParams['financial_type_id'] = $recurringContribution['financial_type_id'];
2438 }
2439 }
2440 $templateContribution = CRM_Contribute_BAO_ContributionRecur::getTemplateContribution(
2441 $contributionParams['contribution_recur_id'],
2442 array_intersect_key($contributionParams, [
2443 'total_amount' => TRUE,
2444 'financial_type_id' => TRUE,
2445 ])
2446 );
2447 $input['line_item'] = $contributionParams['line_item'] = $templateContribution['line_item'];
2448
2449 $contributionParams['status_id'] = 'Pending';
2450 if (isset($contributionParams['financial_type_id'])) {
2451 // Give precedence to passed in type.
2452 $contribution->financial_type_id = $contributionParams['financial_type_id'];
2453 }
2454 else {
2455 $contributionParams['financial_type_id'] = $templateContribution['financial_type_id'];
2456 }
2457 $contributionParams['contact_id'] = $templateContribution['contact_id'];
2458 $contributionParams['source'] = empty($templateContribution['source']) ? ts('Recurring contribution') : $templateContribution['source'];
2459
2460 //CRM-18805 -- Contribution page not recorded on recurring transactions, Recurring contribution payments
2461 //do not create CC or BCC emails or profile notifications.
2462 //The if is just to be safe. Not sure if we can ever arrive with this unset
2463 // but per CRM-19478 it seems it can be 'null'
2464 if (isset($contribution->contribution_page_id) && is_numeric($contribution->contribution_page_id)) {
2465 $contributionParams['contribution_page_id'] = $contribution->contribution_page_id;
2466 }
2467
2468 $createContribution = civicrm_api3('Contribution', 'create', $contributionParams);
2469 $contribution->id = $createContribution['id'];
2470 CRM_Contribute_BAO_ContributionRecur::copyCustomValues($contributionParams['contribution_recur_id'], $contribution->id);
2471 return TRUE;
2472 }
2473 }
2474
2475 /**
2476 * Get individual id for onbehalf contribution.
2477 *
2478 * @param int $contributionId
2479 * Contribution id.
2480 * @param int $contributorId
2481 * Contributor id.
2482 *
2483 * @return array
2484 * containing organization id and individual id
2485 */
2486 public static function getOnbehalfIds($contributionId, $contributorId = NULL) {
2487
2488 $ids = [];
2489
2490 if (!$contributionId) {
2491 return $ids;
2492 }
2493
2494 // fetch contributor id if null
2495 if (!$contributorId) {
2496 $contributorId = CRM_Core_DAO::getFieldValue('CRM_Contribute_DAO_Contribution',
2497 $contributionId, 'contact_id'
2498 );
2499 }
2500
2501 $activityTypeIds = CRM_Core_PseudoConstant::activityType(TRUE, FALSE, FALSE, 'name');
2502 $activityTypeId = array_search('Contribution', $activityTypeIds);
2503
2504 if ($activityTypeId && $contributorId) {
2505 $activityQuery = "
2506 SELECT civicrm_activity_contact.contact_id
2507 FROM civicrm_activity_contact
2508 INNER JOIN civicrm_activity ON civicrm_activity_contact.activity_id = civicrm_activity.id
2509 WHERE civicrm_activity.activity_type_id = %1
2510 AND civicrm_activity.source_record_id = %2
2511 AND civicrm_activity_contact.record_type_id = %3
2512 ";
2513
2514 $activityContacts = CRM_Activity_BAO_ActivityContact::buildOptions('record_type_id', 'validate');
2515 $sourceID = CRM_Utils_Array::key('Activity Source', $activityContacts);
2516
2517 $params = [
2518 1 => [$activityTypeId, 'Integer'],
2519 2 => [$contributionId, 'Integer'],
2520 3 => [$sourceID, 'Integer'],
2521 ];
2522
2523 $sourceContactId = CRM_Core_DAO::singleValueQuery($activityQuery, $params);
2524
2525 // for on behalf contribution source is individual and contributor is organization
2526 if ($sourceContactId && $sourceContactId != $contributorId) {
2527 $relationshipTypeIds = CRM_Core_PseudoConstant::relationshipType('name');
2528 // get rel type id for employee of relation
2529 foreach ($relationshipTypeIds as $id => $typeVals) {
2530 if ($typeVals['name_a_b'] == 'Employee of') {
2531 $relationshipTypeId = $id;
2532 break;
2533 }
2534 }
2535
2536 $rel = new CRM_Contact_DAO_Relationship();
2537 $rel->relationship_type_id = $relationshipTypeId;
2538 $rel->contact_id_a = $sourceContactId;
2539 $rel->contact_id_b = $contributorId;
2540 if ($rel->find(TRUE)) {
2541 $ids['individual_id'] = $rel->contact_id_a;
2542 $ids['organization_id'] = $rel->contact_id_b;
2543 }
2544 }
2545 }
2546
2547 return $ids;
2548 }
2549
2550 /**
2551 * @return array
2552 */
2553 public static function getContributionDates() {
2554 $config = CRM_Core_Config::singleton();
2555 $currentMonth = date('m');
2556 $currentDay = date('d');
2557 if ((int ) $config->fiscalYearStart['M'] > $currentMonth ||
2558 ((int ) $config->fiscalYearStart['M'] == $currentMonth &&
2559 (int ) $config->fiscalYearStart['d'] > $currentDay
2560 )
2561 ) {
2562 $year = date('Y') - 1;
2563 }
2564 else {
2565 $year = date('Y');
2566 }
2567 $year = ['Y' => $year];
2568 $yearDate = $config->fiscalYearStart;
2569 $yearDate = array_merge($year, $yearDate);
2570 $yearDate = CRM_Utils_Date::format($yearDate);
2571
2572 $monthDate = date('Ym') . '01';
2573
2574 $now = date('Ymd');
2575
2576 return [
2577 'now' => $now,
2578 'yearDate' => $yearDate,
2579 'monthDate' => $monthDate,
2580 ];
2581 }
2582
2583 /**
2584 * Load objects relations to contribution object.
2585 * Objects are stored in the $_relatedObjects property
2586 * In the first instance we are just moving functionality from BASEIpn -
2587 *
2588 * @see http://issues.civicrm.org/jira/browse/CRM-9996
2589 *
2590 * Note that the unit test for the BaseIPN class tests this function
2591 *
2592 * @param array $input
2593 * Input as delivered from Payment Processor.
2594 * @param array $ids
2595 * Ids as Loaded by Payment Processor.
2596 * @param bool $loadAll
2597 * Load all related objects - even where id not passed in? (allows API to call this).
2598 *
2599 * @return bool
2600 * @throws Exception
2601 */
2602 public function loadRelatedObjects(&$input, &$ids, $loadAll = FALSE) {
2603 // @todo deprecate this function - the steps should be
2604 // 1) add additional functions like 'getRelatedMemberships'
2605 // 2) switch all calls that refer to ->_relatedObjects to
2606 // using the helper functions
2607 // 3) make ->_relatedObjects noisy in some way (deprecation won't work for properties - hmm
2608 // 4) make ->_relatedObjects protected
2609 // 5) hone up the individual functions to not use rely on this having been called
2610 // 6) deprecate like mad
2611 if ($loadAll) {
2612 $ids = array_merge($this->getComponentDetails($this->id), $ids);
2613 if (empty($ids['contact']) && isset($this->contact_id)) {
2614 $ids['contact'] = $this->contact_id;
2615 }
2616 }
2617 if (empty($this->_component)) {
2618 if (!empty($ids['event'])) {
2619 $this->_component = 'event';
2620 }
2621 else {
2622 $this->_component = strtolower(CRM_Utils_Array::value('component', $input, 'contribute'));
2623 }
2624 }
2625
2626 // If the object is not fully populated then make sure it is - this is a more about legacy paths & cautious
2627 // refactoring than anything else, and has unit test coverage.
2628 if (empty($this->financial_type_id)) {
2629 $this->find(TRUE);
2630 }
2631
2632 $paymentProcessorID = CRM_Utils_Array::value('payment_processor_id', $input, CRM_Utils_Array::value(
2633 'paymentProcessor',
2634 $ids
2635 ));
2636
2637 if (!isset($input['payment_processor_id']) && !$paymentProcessorID && $this->contribution_page_id) {
2638 $paymentProcessorID = CRM_Core_DAO::getFieldValue('CRM_Contribute_DAO_ContributionPage',
2639 $this->contribution_page_id,
2640 'payment_processor'
2641 );
2642 if ($paymentProcessorID) {
2643 $intentionalEnotice = $CRM16923AnUnreliableMethodHasBeenUserToDeterminePaymentProcessorFromContributionPage;
2644 }
2645 }
2646
2647 $ids['contributionType'] = $this->financial_type_id;
2648 $ids['financialType'] = $this->financial_type_id;
2649 if ($this->contribution_page_id) {
2650 $ids['contributionPage'] = $this->contribution_page_id;
2651 }
2652
2653 $this->loadRelatedEntitiesByID($ids);
2654
2655 if (!empty($ids['contributionRecur']) && !$paymentProcessorID) {
2656 $paymentProcessorID = $this->_relatedObjects['contributionRecur']->payment_processor_id;
2657 }
2658
2659 if (!empty($ids['pledge_payment'])) {
2660 foreach ($ids['pledge_payment'] as $key => $paymentID) {
2661 if (empty($paymentID)) {
2662 continue;
2663 }
2664 $payment = new CRM_Pledge_BAO_PledgePayment();
2665 $payment->id = $paymentID;
2666 if (!$payment->find(TRUE)) {
2667 throw new Exception("Could not find pledge payment record: " . $paymentID);
2668 }
2669 $this->_relatedObjects['pledge_payment'][] = $payment;
2670 }
2671 }
2672
2673 // These are probably no longer accessed from anywhere
2674 // @todo remove this line, after ensuring not used.
2675 $ids = $this->loadRelatedMembershipObjects($ids);
2676
2677 if ($this->_component != 'contribute') {
2678 // we are in event mode
2679 // make sure event exists and is valid
2680 $event = new CRM_Event_BAO_Event();
2681 $event->id = $ids['event'];
2682 if ($ids['event'] &&
2683 !$event->find(TRUE)
2684 ) {
2685 throw new Exception("Could not find event: " . $ids['event']);
2686 }
2687
2688 $this->_relatedObjects['event'] = &$event;
2689
2690 $participant = new CRM_Event_BAO_Participant();
2691 $participant->id = $ids['participant'];
2692 if ($ids['participant'] &&
2693 !$participant->find(TRUE)
2694 ) {
2695 throw new Exception("Could not find participant: " . $ids['participant']);
2696 }
2697 $participant->register_date = CRM_Utils_Date::isoToMysql($participant->register_date);
2698
2699 $this->_relatedObjects['participant'] = &$participant;
2700
2701 // get the payment processor id from event - this is inaccurate see CRM-16923
2702 // in future we should look at throwing an exception here rather than an dubious guess.
2703 if (!$paymentProcessorID) {
2704 $paymentProcessorID = $this->_relatedObjects['event']->payment_processor;
2705 if ($paymentProcessorID) {
2706 $intentionalEnotice = $CRM16923AnUnreliableMethodHasBeenUserToDeterminePaymentProcessorFromEvent;
2707 }
2708 }
2709 }
2710
2711 if ($paymentProcessorID) {
2712 $paymentProcessor = CRM_Financial_BAO_PaymentProcessor::getPayment($paymentProcessorID,
2713 $this->is_test ? 'test' : 'live'
2714 );
2715 $ids['paymentProcessor'] = $paymentProcessorID;
2716 $this->_relatedObjects['paymentProcessor'] = $paymentProcessor;
2717 }
2718
2719 // Add contribution id to $ids. CRM-20401
2720 $ids['contribution'] = $this->id;
2721 return TRUE;
2722 }
2723
2724 /**
2725 * Create array of message information - ie. return html version, txt version, to field
2726 *
2727 * @param array $input
2728 * Incoming information.
2729 * - is_recur - should this be treated as recurring (not sure why you wouldn't
2730 * just check presence of recur object but maintaining legacy approach
2731 * to be careful)
2732 * @param array $ids
2733 * IDs of related objects.
2734 * @param array $values
2735 * Any values that may have already been compiled by calling process.
2736 * This is augmented by values 'gathered' by gatherMessageValues
2737 * @param bool $returnMessageText
2738 * Distinguishes between whether to send message or return.
2739 * message text. We are working towards this function ALWAYS returning message text & calling
2740 * function doing emails / pdfs with it
2741 *
2742 * @return array
2743 * messages
2744 * @throws Exception
2745 */
2746 public function composeMessageArray(&$input, &$ids, &$values, $returnMessageText = TRUE) {
2747 $this->loadRelatedObjects($input, $ids);
2748
2749 if (empty($this->_component)) {
2750 $this->_component = CRM_Utils_Array::value('component', $input);
2751 }
2752
2753 //not really sure what params might be passed in but lets merge em into values
2754 $values = array_merge($this->_gatherMessageValues($input, $values, $ids), $values);
2755 $values['is_email_receipt'] = $this->isEmailReceipt($input, $values);
2756 if (!empty($input['receipt_date'])) {
2757 $values['receipt_date'] = $input['receipt_date'];
2758 }
2759
2760 $template = $this->_assignMessageVariablesToTemplate($values, $input, $returnMessageText);
2761 //what does recur 'mean here - to do with payment processor return functionality but
2762 // what is the importance
2763 if (!empty($this->contribution_recur_id) && !empty($this->_relatedObjects['paymentProcessor'])) {
2764 $paymentObject = Civi\Payment\System::singleton()->getByProcessor($this->_relatedObjects['paymentProcessor']);
2765
2766 $entityID = $entity = NULL;
2767 if (isset($ids['contribution'])) {
2768 $entity = 'contribution';
2769 $entityID = $ids['contribution'];
2770 }
2771 if (!empty($ids['membership'])) {
2772 //not sure whether is is possible for this not to be an array - load related contacts loads an array but this code was expecting a string
2773 // the addition of the casting is in case it could get here & be a string. Added in 4.6 - maybe remove later? This AuthorizeNetIPN & PaypalIPN tests hit this
2774 // line having loaded an array
2775 $ids['membership'] = (array) $ids['membership'];
2776 $entity = 'membership';
2777 $entityID = $ids['membership'][0];
2778 }
2779
2780 $template->assign('cancelSubscriptionUrl', $paymentObject->subscriptionURL($entityID, $entity, 'cancel'));
2781 $template->assign('updateSubscriptionBillingUrl', $paymentObject->subscriptionURL($entityID, $entity, 'billing'));
2782 $template->assign('updateSubscriptionUrl', $paymentObject->subscriptionURL($entityID, $entity, 'update'));
2783
2784 if ($this->_relatedObjects['paymentProcessor']['billing_mode'] & CRM_Core_Payment::BILLING_MODE_FORM) {
2785 //direct mode showing billing block, so use directIPN for temporary
2786 $template->assign('contributeMode', 'directIPN');
2787 }
2788 }
2789 // todo remove strtolower - check consistency
2790 if (strtolower($this->_component) == 'event') {
2791 $eventParams = ['id' => $this->_relatedObjects['participant']->event_id];
2792 $values['event'] = [];
2793
2794 CRM_Event_BAO_Event::retrieve($eventParams, $values['event']);
2795
2796 //get location details
2797 $locationParams = [
2798 'entity_id' => $this->_relatedObjects['participant']->event_id,
2799 'entity_table' => 'civicrm_event',
2800 ];
2801 $values['location'] = CRM_Core_BAO_Location::getValues($locationParams);
2802
2803 $ufJoinParams = [
2804 'entity_table' => 'civicrm_event',
2805 'entity_id' => $ids['event'],
2806 'module' => 'CiviEvent',
2807 ];
2808
2809 list($custom_pre_id,
2810 $custom_post_ids
2811 ) = CRM_Core_BAO_UFJoin::getUFGroupIds($ufJoinParams);
2812
2813 $values['custom_pre_id'] = $custom_pre_id;
2814 $values['custom_post_id'] = $custom_post_ids;
2815 //for tasks 'Change Participant Status' and 'Update multiple Contributions' case
2816 //and cases involving status updation through ipn
2817 // whatever that means!
2818 // total_amount appears to be the preferred input param & it is unclear why we support amount here
2819 // perhaps we should throw an e-notice if amount is set & force total_amount?
2820 if (!empty($input['amount'])) {
2821 $values['totalAmount'] = $input['amount'];
2822 }
2823 // @todo set this in is_email_receipt, based on $this->_relatedObjects.
2824 if ($values['event']['is_email_confirm']) {
2825 $values['is_email_receipt'] = 1;
2826 }
2827
2828 if (!empty($ids['contribution'])) {
2829 $values['contributionId'] = $ids['contribution'];
2830 }
2831
2832 return CRM_Event_BAO_Event::sendMail($ids['contact'], $values,
2833 $this->_relatedObjects['participant']->id, $this->is_test, $returnMessageText
2834 );
2835 }
2836 else {
2837 $values['contribution_id'] = $this->id;
2838 if (!empty($ids['related_contact'])) {
2839 $values['related_contact'] = $ids['related_contact'];
2840 if (isset($ids['onbehalf_dupe_alert'])) {
2841 $values['onbehalf_dupe_alert'] = $ids['onbehalf_dupe_alert'];
2842 }
2843 $entityBlock = [
2844 'contact_id' => $ids['contact'],
2845 'location_type_id' => CRM_Core_DAO::getFieldValue('CRM_Core_DAO_LocationType',
2846 'Home', 'id', 'name'
2847 ),
2848 ];
2849 $address = CRM_Core_BAO_Address::getValues($entityBlock);
2850 $template->assign('onBehalfAddress', $address[$entityBlock['location_type_id']]['display']);
2851 }
2852 $isTest = FALSE;
2853 if ($this->is_test) {
2854 $isTest = TRUE;
2855 }
2856 if (!empty($this->_relatedObjects['membership'])) {
2857 foreach ($this->_relatedObjects['membership'] as $membership) {
2858 if ($membership->id) {
2859 $values['membership_id'] = $membership->id;
2860 $values['isMembership'] = TRUE;
2861 $values['membership_assign'] = TRUE;
2862
2863 // need to set the membership values here
2864 $template->assign('membership_name',
2865 CRM_Member_PseudoConstant::membershipType($membership->membership_type_id)
2866 );
2867 $template->assign('mem_start_date', $membership->start_date);
2868 $template->assign('mem_join_date', $membership->join_date);
2869 $template->assign('mem_end_date', $membership->end_date);
2870 $membership_status = CRM_Member_PseudoConstant::membershipStatus($membership->status_id, NULL, 'label');
2871 $template->assign('mem_status', $membership_status);
2872 if ($membership_status == 'Pending' && $membership->is_pay_later == 1) {
2873 $values['is_pay_later'] = 1;
2874 }
2875 // Pass amount to floatval as string '0.00' is considered a
2876 // valid amount and includes Fee section in the mail.
2877 if (isset($values['amount'])) {
2878 $values['amount'] = floatval($values['amount']);
2879 }
2880
2881 if (!empty($this->contribution_recur_id) && $paymentObject) {
2882 $url = $paymentObject->subscriptionURL($membership->id, 'membership', 'cancel');
2883 $template->assign('cancelSubscriptionUrl', $url);
2884 $url = $paymentObject->subscriptionURL($membership->id, 'membership', 'billing');
2885 $template->assign('updateSubscriptionBillingUrl', $url);
2886 $url = $paymentObject->subscriptionURL($entityID, $entity, 'update');
2887 $template->assign('updateSubscriptionUrl', $url);
2888 }
2889
2890 $result = CRM_Contribute_BAO_ContributionPage::sendMail($ids['contact'], $values, $isTest, $returnMessageText);
2891
2892 return $result;
2893 // otherwise if its about sending emails, continue sending without return, as we
2894 // don't want to exit the loop.
2895 }
2896 }
2897 }
2898 else {
2899 return CRM_Contribute_BAO_ContributionPage::sendMail($ids['contact'], $values, $isTest, $returnMessageText);
2900 }
2901 }
2902 }
2903
2904 /**
2905 * Gather values for contribution mail - this function has been created
2906 * as part of CRM-9996 refactoring as a step towards simplifying the composeMessage function
2907 * Values related to the contribution in question are gathered
2908 *
2909 * @param array $input
2910 * Input into function (probably from payment processor).
2911 * @param array $values
2912 * @param array $ids
2913 * The set of ids related to the input.
2914 *
2915 * @return array
2916 */
2917 public function _gatherMessageValues($input, &$values, $ids = []) {
2918 // set display address of contributor
2919 if ($this->address_id) {
2920 $addressParams = ['id' => $this->address_id];
2921 $addressDetails = CRM_Core_BAO_Address::getValues($addressParams, FALSE, 'id');
2922 $addressDetails = array_values($addressDetails);
2923 }
2924 // Else we assign the billing address of the contribution contact.
2925 else {
2926 $addressParams = ['contact_id' => $this->contact_id, 'is_billing' => 1];
2927 $addressDetails = (array) CRM_Core_BAO_Address::getValues($addressParams);
2928 $addressDetails = array_values($addressDetails);
2929 }
2930
2931 if (!empty($addressDetails[0]['display'])) {
2932 $values['address'] = $addressDetails[0]['display'];
2933 }
2934
2935 if ($this->_component == 'contribute') {
2936 //get soft contributions
2937 $softContributions = CRM_Contribute_BAO_ContributionSoft::getSoftContribution($this->id, TRUE);
2938 if (!empty($softContributions)) {
2939 $values['softContributions'] = $softContributions['soft_credit'];
2940 }
2941 if (isset($this->contribution_page_id)) {
2942 // This is a call we want to use less, in favour of loading related objects.
2943 $values = $this->addContributionPageValuesToValuesHeavyHandedly($values);
2944 if ($this->contribution_page_id) {
2945 // This is precautionary as there are some legacy flows, but it should really be
2946 // loaded by now.
2947 if (!isset($this->_relatedObjects['contributionPage'])) {
2948 $this->loadRelatedEntitiesByID(['contributionPage' => $this->contribution_page_id]);
2949 }
2950 CRM_Contribute_BAO_Contribution_Utils::overrideDefaultCurrency($values);
2951 }
2952 }
2953 // no contribution page -probably back office
2954 else {
2955 // Handle re-print receipt for offline contributions (call from PDF.php - no contribution_page_id)
2956 $values['title'] = 'Contribution';
2957 }
2958 // set lineItem for contribution
2959 if ($this->id) {
2960 $lineItems = CRM_Price_BAO_LineItem::getLineItemsByContributionID($this->id);
2961 if (!empty($lineItems)) {
2962 $firstLineItem = reset($lineItems);
2963 $priceSet = [];
2964 if (CRM_Utils_Array::value('price_set_id', $firstLineItem)) {
2965 $priceSet = civicrm_api3('PriceSet', 'getsingle', [
2966 'id' => $firstLineItem['price_set_id'],
2967 'return' => 'is_quick_config, id',
2968 ]);
2969 $values['priceSetID'] = $priceSet['id'];
2970 }
2971 foreach ($lineItems as &$eachItem) {
2972 if (isset($this->_relatedObjects['membership'])
2973 && is_array($this->_relatedObjects['membership'])
2974 && array_key_exists($eachItem['membership_type_id'], $this->_relatedObjects['membership'])) {
2975 $eachItem['join_date'] = CRM_Utils_Date::customFormat($this->_relatedObjects['membership'][$eachItem['membership_type_id']]->join_date);
2976 $eachItem['start_date'] = CRM_Utils_Date::customFormat($this->_relatedObjects['membership'][$eachItem['membership_type_id']]->start_date);
2977 $eachItem['end_date'] = CRM_Utils_Date::customFormat($this->_relatedObjects['membership'][$eachItem['membership_type_id']]->end_date);
2978 }
2979 // This is actually used in conjunction with is_quick_config in the template & we should deprecate it.
2980 // However, that does create upgrade pain so would be better to be phased in.
2981 $values['useForMember'] = empty($priceSet['is_quick_config']);
2982 }
2983 $values['lineItem'][0] = $lineItems;
2984 }
2985 }
2986
2987 $relatedContact = CRM_Contribute_BAO_Contribution::getOnbehalfIds(
2988 $this->id,
2989 $this->contact_id
2990 );
2991 // if this is onbehalf of contribution then set related contact
2992 if (!empty($relatedContact['individual_id'])) {
2993 $values['related_contact'] = $ids['related_contact'] = $relatedContact['individual_id'];
2994 }
2995 }
2996 else {
2997 // event
2998 $eventParams = [
2999 'id' => $this->_relatedObjects['event']->id,
3000 ];
3001 $values['event'] = [];
3002
3003 CRM_Event_BAO_Event::retrieve($eventParams, $values['event']);
3004 // add custom fields for event
3005 $eventGroupTree = CRM_Core_BAO_CustomGroup::getTree('Event', NULL, $this->_relatedObjects['event']->id);
3006
3007 $eventCustomGroup = [];
3008 foreach ($eventGroupTree as $key => $group) {
3009 if ($key === 'info') {
3010 continue;
3011 }
3012
3013 foreach ($group['fields'] as $k => $customField) {
3014 $groupLabel = $group['title'];
3015 if (!empty($customField['customValue'])) {
3016 foreach ($customField['customValue'] as $customFieldValues) {
3017 $eventCustomGroup[$groupLabel][$customField['label']] = CRM_Utils_Array::value('data', $customFieldValues);
3018 }
3019 }
3020 }
3021 }
3022 $values['event']['customGroup'] = $eventCustomGroup;
3023
3024 //get participant details
3025 $participantParams = [
3026 'id' => $this->_relatedObjects['participant']->id,
3027 ];
3028
3029 $values['participant'] = [];
3030
3031 CRM_Event_BAO_Participant::getValues($participantParams, $values['participant'], $participantIds);
3032 // add custom fields for event
3033 $participantGroupTree = CRM_Core_BAO_CustomGroup::getTree('Participant', NULL, $this->_relatedObjects['participant']->id);
3034 $participantCustomGroup = [];
3035 foreach ($participantGroupTree as $key => $group) {
3036 if ($key === 'info') {
3037 continue;
3038 }
3039
3040 foreach ($group['fields'] as $k => $customField) {
3041 $groupLabel = $group['title'];
3042 if (!empty($customField['customValue'])) {
3043 foreach ($customField['customValue'] as $customFieldValues) {
3044 $participantCustomGroup[$groupLabel][$customField['label']] = CRM_Utils_Array::value('data', $customFieldValues);
3045 }
3046 }
3047 }
3048 }
3049 $values['participant']['customGroup'] = $participantCustomGroup;
3050
3051 //get location details
3052 $locationParams = [
3053 'entity_id' => $this->_relatedObjects['event']->id,
3054 'entity_table' => 'civicrm_event',
3055 ];
3056 $values['location'] = CRM_Core_BAO_Location::getValues($locationParams);
3057
3058 $ufJoinParams = [
3059 'entity_table' => 'civicrm_event',
3060 'entity_id' => $ids['event'],
3061 'module' => 'CiviEvent',
3062 ];
3063
3064 list($custom_pre_id,
3065 $custom_post_ids
3066 ) = CRM_Core_BAO_UFJoin::getUFGroupIds($ufJoinParams);
3067
3068 $values['custom_pre_id'] = $custom_pre_id;
3069 $values['custom_post_id'] = $custom_post_ids;
3070
3071 // set lineItem for event contribution
3072 if ($this->id) {
3073 $participantIds = CRM_Event_BAO_Participant::getParticipantIds($this->id);
3074 if (!empty($participantIds)) {
3075 foreach ($participantIds as $pIDs) {
3076 $lineItem = CRM_Price_BAO_LineItem::getLineItems($pIDs);
3077 if (!CRM_Utils_System::isNull($lineItem)) {
3078 $values['lineItem'][] = $lineItem;
3079 }
3080 }
3081 }
3082 }
3083 }
3084
3085 $groupTree = CRM_Core_BAO_CustomGroup::getTree('Contribution', NULL, $this->id);
3086
3087 $customGroup = [];
3088 foreach ($groupTree as $key => $group) {
3089 if ($key === 'info') {
3090 continue;
3091 }
3092
3093 foreach ($group['fields'] as $k => $customField) {
3094 $groupLabel = $group['title'];
3095 if (!empty($customField['customValue'])) {
3096 foreach ($customField['customValue'] as $customFieldValues) {
3097 $customGroup[$groupLabel][$customField['label']] = CRM_Utils_Array::value('data', $customFieldValues);
3098 }
3099 }
3100 }
3101 }
3102 $values['customGroup'] = $customGroup;
3103
3104 $values['is_pay_later'] = $this->is_pay_later;
3105
3106 return $values;
3107 }
3108
3109 /**
3110 * Assign message variables to template but try to break the habit.
3111 *
3112 * In order to get away from leaky variables it is better to ensure variables are set in values and assign them
3113 * from the send function. Otherwise smarty variables can leak if this is called more than once - e.g. processing
3114 * multiple recurring payments for processors like IATS that use tokens.
3115 *
3116 * Apply variables for message to smarty template - this function is part of analysing what is in the huge
3117 * function & breaking it down into manageable chunks. Eventually it will be refactored into something else
3118 * Note we send directly from this function in some cases because it is only partly refactored.
3119 *
3120 * Don't call this function directly as the signature will change.
3121 *
3122 * @param $values
3123 * @param $input
3124 * @param bool $returnMessageText
3125 *
3126 * @return mixed
3127 */
3128 public function _assignMessageVariablesToTemplate(&$values, $input, $returnMessageText = TRUE) {
3129 // @todo - this should have a better separation of concerns - ie.
3130 // gatherMessageValues should build an array of values to be assigned to the template
3131 // and this function should assign them (assigning null if not set).
3132 // the way the pcpParams & honor Params section works is a baby-step towards this.
3133 $template = CRM_Core_Smarty::singleton();
3134 $template->assign('first_name', $this->_relatedObjects['contact']->first_name);
3135 $template->assign('last_name', $this->_relatedObjects['contact']->last_name);
3136 $template->assign('displayName', $this->_relatedObjects['contact']->display_name);
3137
3138 // For some unit tests contribution cannot contain paymentProcessor information
3139 $billingMode = empty($this->_relatedObjects['paymentProcessor']) ? CRM_Core_Payment::BILLING_MODE_NOTIFY : $this->_relatedObjects['paymentProcessor']['billing_mode'];
3140 $template->assign('contributeMode', CRM_Utils_Array::value($billingMode, CRM_Core_SelectValues::contributeMode()));
3141
3142 //assign honor information to receipt message
3143 $softRecord = CRM_Contribute_BAO_ContributionSoft::getSoftContribution($this->id);
3144
3145 $honorParams = [
3146 'soft_credit_type' => NULL,
3147 'honor_block_is_active' => NULL,
3148 ];
3149 if (isset($softRecord['soft_credit'])) {
3150 //if id of contribution page is present
3151 if (!empty($values['id'])) {
3152 $values['honor'] = [
3153 'honor_profile_values' => [],
3154 'honor_profile_id' => CRM_Core_DAO::getFieldValue('CRM_Core_DAO_UFJoin', $values['id'], 'uf_group_id', 'entity_id'),
3155 'honor_id' => $softRecord['soft_credit'][1]['contact_id'],
3156 ];
3157
3158 $honorParams['soft_credit_type'] = $softRecord['soft_credit'][1]['soft_credit_type_label'];
3159 $honorParams['honor_block_is_active'] = CRM_Core_DAO::getFieldValue('CRM_Core_DAO_UFJoin', $values['id'], 'is_active', 'entity_id');
3160 }
3161 else {
3162 //offline contribution
3163 $softCreditTypes = $softCredits = [];
3164 foreach ($softRecord['soft_credit'] as $key => $softCredit) {
3165 $softCreditTypes[$key] = $softCredit['soft_credit_type_label'];
3166 $softCredits[$key] = [
3167 'Name' => $softCredit['contact_name'],
3168 'Amount' => CRM_Utils_Money::format($softCredit['amount'], $softCredit['currency']),
3169 ];
3170 }
3171 $template->assign('softCreditTypes', $softCreditTypes);
3172 $template->assign('softCredits', $softCredits);
3173 }
3174 }
3175
3176 $dao = new CRM_Contribute_DAO_ContributionProduct();
3177 $dao->contribution_id = $this->id;
3178 if ($dao->find(TRUE)) {
3179 $premiumId = $dao->product_id;
3180 $template->assign('option', $dao->product_option);
3181
3182 $productDAO = new CRM_Contribute_DAO_Product();
3183 $productDAO->id = $premiumId;
3184 $productDAO->find(TRUE);
3185 $template->assign('selectPremium', TRUE);
3186 $template->assign('product_name', $productDAO->name);
3187 $template->assign('price', $productDAO->price);
3188 $template->assign('sku', $productDAO->sku);
3189 }
3190 $template->assign('title', CRM_Utils_Array::value('title', $values));
3191 $values['amount'] = CRM_Utils_Array::value('total_amount', $input, (CRM_Utils_Array::value('amount', $input)), NULL);
3192 if (!$values['amount'] && isset($this->total_amount)) {
3193 $values['amount'] = $this->total_amount;
3194 }
3195
3196 $pcpParams = [
3197 'pcpBlock' => NULL,
3198 'pcp_display_in_roll' => NULL,
3199 'pcp_roll_nickname' => NULL,
3200 'pcp_personal_note' => NULL,
3201 'title' => NULL,
3202 ];
3203
3204 if (strtolower($this->_component) == 'contribute') {
3205 //PCP Info
3206 $softDAO = new CRM_Contribute_DAO_ContributionSoft();
3207 $softDAO->contribution_id = $this->id;
3208 if ($softDAO->find(TRUE)) {
3209 $pcpParams['pcpBlock'] = TRUE;
3210 $pcpParams['pcp_display_in_roll'] = $softDAO->pcp_display_in_roll;
3211 $pcpParams['pcp_roll_nickname'] = $softDAO->pcp_roll_nickname;
3212 $pcpParams['pcp_personal_note'] = $softDAO->pcp_personal_note;
3213
3214 //assign the pcp page title for email subject
3215 $pcpDAO = new CRM_PCP_DAO_PCP();
3216 $pcpDAO->id = $softDAO->pcp_id;
3217 if ($pcpDAO->find(TRUE)) {
3218 $pcpParams['title'] = $pcpDAO->title;
3219 }
3220 }
3221 }
3222 foreach (array_merge($honorParams, $pcpParams) as $templateKey => $templateValue) {
3223 $template->assign($templateKey, $templateValue);
3224 }
3225
3226 if ($this->financial_type_id) {
3227 $values['financial_type_id'] = $this->financial_type_id;
3228 }
3229
3230 $template->assign('trxn_id', $this->trxn_id);
3231 $template->assign('receive_date',
3232 CRM_Utils_Date::processDate($this->receive_date)
3233 );
3234 $values['receipt_date'] = (empty($this->receipt_date) ? NULL : $this->receipt_date);
3235 $template->assign('action', $this->is_test ? 1024 : 1);
3236 $template->assign('receipt_text',
3237 CRM_Utils_Array::value('receipt_text',
3238 $values
3239 )
3240 );
3241 $template->assign('is_monetary', 1);
3242 $template->assign('is_recur', !empty($this->contribution_recur_id));
3243 $template->assign('currency', $this->currency);
3244 $template->assign('address', CRM_Utils_Address::format($input));
3245 if (!empty($values['customGroup'])) {
3246 $template->assign('customGroup', $values['customGroup']);
3247 }
3248 if (!empty($values['softContributions'])) {
3249 $template->assign('softContributions', $values['softContributions']);
3250 }
3251 if ($this->_component == 'event') {
3252 $template->assign('title', $values['event']['title']);
3253 $participantRoles = CRM_Event_PseudoConstant::participantRole();
3254 $viewRoles = [];
3255 foreach (explode(CRM_Core_DAO::VALUE_SEPARATOR, $this->_relatedObjects['participant']->role_id) as $k => $v) {
3256 $viewRoles[] = $participantRoles[$v];
3257 }
3258 $values['event']['participant_role'] = implode(', ', $viewRoles);
3259 $template->assign('event', $values['event']);
3260 $template->assign('participant', $values['participant']);
3261 $template->assign('location', $values['location']);
3262 $template->assign('customPre', $values['custom_pre_id']);
3263 $template->assign('customPost', $values['custom_post_id']);
3264
3265 $isTest = FALSE;
3266 if ($this->_relatedObjects['participant']->is_test) {
3267 $isTest = TRUE;
3268 }
3269
3270 $values['params'] = [];
3271 //to get email of primary participant.
3272 $primaryEmail = CRM_Core_DAO::getFieldValue('CRM_Core_DAO_Email', $this->_relatedObjects['participant']->contact_id, 'email', 'contact_id');
3273 $primaryAmount[] = [
3274 'label' => $this->_relatedObjects['participant']->fee_level . ' - ' . $primaryEmail,
3275 'amount' => $this->_relatedObjects['participant']->fee_amount,
3276 ];
3277 //build an array of cId/pId of participants
3278 $additionalIDs = CRM_Event_BAO_Event::buildCustomProfile($this->_relatedObjects['participant']->id, NULL, $this->_relatedObjects['contact']->id, $isTest, TRUE);
3279 unset($additionalIDs[$this->_relatedObjects['participant']->id]);
3280 //send receipt to additional participant if exists
3281 if (count($additionalIDs)) {
3282 $template->assign('isPrimary', 0);
3283 $template->assign('customProfile', NULL);
3284 //set additionalParticipant true
3285 $values['params']['additionalParticipant'] = TRUE;
3286 foreach ($additionalIDs as $pId => $cId) {
3287 $amount = [];
3288 //to change the status pending to completed
3289 $additional = new CRM_Event_DAO_Participant();
3290 $additional->id = $pId;
3291 $additional->contact_id = $cId;
3292 $additional->find(TRUE);
3293 $additional->register_date = $this->_relatedObjects['participant']->register_date;
3294 $additional->status_id = 1;
3295 $additionalParticipantInfo = CRM_Core_DAO::getFieldValue('CRM_Core_DAO_Email', $additional->contact_id, 'email', 'contact_id');
3296 //if additional participant dont have email
3297 //use display name.
3298 if (!$additionalParticipantInfo) {
3299 $additionalParticipantInfo = CRM_Contact_BAO_Contact::displayName($additional->contact_id);
3300 }
3301 $amount[0] = [
3302 'label' => $additional->fee_level,
3303 'amount' => $additional->fee_amount,
3304 ];
3305 $primaryAmount[] = [
3306 'label' => $additional->fee_level . ' - ' . $additionalParticipantInfo,
3307 'amount' => $additional->fee_amount,
3308 ];
3309 $additional->save();
3310 $template->assign('amount', $amount);
3311 CRM_Event_BAO_Event::sendMail($cId, $values, $pId, $isTest, $returnMessageText);
3312 }
3313 }
3314
3315 //build an array of custom profile and assigning it to template
3316 $customProfile = CRM_Event_BAO_Event::buildCustomProfile($this->_relatedObjects['participant']->id, $values, NULL, $isTest);
3317
3318 if (count($customProfile)) {
3319 $template->assign('customProfile', $customProfile);
3320 }
3321
3322 // for primary contact
3323 $values['params']['additionalParticipant'] = FALSE;
3324 $template->assign('isPrimary', 1);
3325 $template->assign('amount', $primaryAmount);
3326 $template->assign('register_date', CRM_Utils_Date::isoToMysql($this->_relatedObjects['participant']->register_date));
3327 if ($this->payment_instrument_id) {
3328 $paymentInstrument = CRM_Contribute_PseudoConstant::paymentInstrument();
3329 $template->assign('paidBy', $paymentInstrument[$this->payment_instrument_id]);
3330 }
3331 // carry paylater, since we did not created billing,
3332 // so need to pull email from primary location, CRM-4395
3333 $values['params']['is_pay_later'] = $this->_relatedObjects['participant']->is_pay_later;
3334 }
3335 return $template;
3336 }
3337
3338 /**
3339 * Check whether payment processor supports
3340 * cancellation of contribution subscription
3341 *
3342 * @param int $contributionId
3343 * Contribution id.
3344 *
3345 * @param bool $isNotCancelled
3346 *
3347 * @return bool
3348 */
3349 public static function isCancelSubscriptionSupported($contributionId, $isNotCancelled = TRUE) {
3350 $cacheKeyString = "$contributionId";
3351 $cacheKeyString .= $isNotCancelled ? '_1' : '_0';
3352
3353 static $supportsCancel = [];
3354
3355 if (!array_key_exists($cacheKeyString, $supportsCancel)) {
3356 $supportsCancel[$cacheKeyString] = FALSE;
3357 $isCancelled = FALSE;
3358
3359 if ($isNotCancelled) {
3360 $isCancelled = self::isSubscriptionCancelled($contributionId);
3361 }
3362
3363 $paymentObject = CRM_Financial_BAO_PaymentProcessor::getProcessorForEntity($contributionId, 'contribute', 'obj');
3364 if (!empty($paymentObject)) {
3365 $supportsCancel[$cacheKeyString] = $paymentObject->supports('cancelRecurring') && !$isCancelled;
3366 }
3367 }
3368 return $supportsCancel[$cacheKeyString];
3369 }
3370
3371 /**
3372 * Check whether subscription is already cancelled.
3373 *
3374 * @param int $contributionId
3375 * Contribution id.
3376 *
3377 * @return string
3378 * contribution status
3379 */
3380 public static function isSubscriptionCancelled($contributionId) {
3381 $sql = "
3382 SELECT cr.contribution_status_id
3383 FROM civicrm_contribution_recur cr
3384 LEFT JOIN civicrm_contribution con ON ( cr.id = con.contribution_recur_id )
3385 WHERE con.id = %1 LIMIT 1";
3386 $params = [1 => [$contributionId, 'Integer']];
3387 $statusId = CRM_Core_DAO::singleValueQuery($sql, $params);
3388 $status = CRM_Contribute_PseudoConstant::contributionStatus($statusId);
3389 if ($status == 'Cancelled') {
3390 return TRUE;
3391 }
3392 return FALSE;
3393 }
3394
3395 /**
3396 * Create all financial accounts entry.
3397 *
3398 * @param array $params
3399 * Contribution object, line item array and params for trxn.
3400 *
3401 *
3402 * @param array $financialTrxnValues
3403 *
3404 * @return null|\CRM_Core_BAO_FinancialTrxn
3405 */
3406 public static function recordFinancialAccounts(&$params, $financialTrxnValues = NULL) {
3407 $skipRecords = $update = $return = $isRelatedId = FALSE;
3408
3409 $additionalParticipantId = [];
3410 $contributionStatuses = CRM_Contribute_PseudoConstant::contributionStatus(NULL, 'name');
3411 $contributionStatus = empty($params['contribution_status_id']) ? NULL : $contributionStatuses[$params['contribution_status_id']];
3412
3413 if (CRM_Utils_Array::value('contribution_mode', $params) == 'participant') {
3414 $entityId = $params['participant_id'];
3415 $entityTable = 'civicrm_participant';
3416 $additionalParticipantId = CRM_Event_BAO_Participant::getAdditionalParticipantIds($entityId);
3417 }
3418 elseif (!empty($params['membership_id'])) {
3419 //so far $params['membership_id'] should only be set coming in from membershipBAO::create so the situation where multiple memberships
3420 // are created off one contribution should be handled elsewhere
3421 $entityId = $params['membership_id'];
3422 $entityTable = 'civicrm_membership';
3423 }
3424 else {
3425 $entityId = $params['contribution']->id;
3426 $entityTable = 'civicrm_contribution';
3427 }
3428
3429 if (CRM_Utils_Array::value('contribution_mode', $params) == 'membership') {
3430 $isRelatedId = TRUE;
3431 }
3432
3433 $entityID[] = $entityId;
3434 if (!empty($additionalParticipantId)) {
3435 $entityID += $additionalParticipantId;
3436 }
3437 // prevContribution appears to mean - original contribution object- ie copy of contribution from before the update started that is being updated
3438 if (empty($params['prevContribution'])) {
3439 $entityID = NULL;
3440 }
3441 else {
3442 $update = TRUE;
3443 }
3444
3445 $statusId = $params['contribution']->contribution_status_id;
3446 // CRM-13964 partial payment
3447 if ($contributionStatus == 'Partially paid'
3448 && !empty($params['partial_payment_total']) && !empty($params['partial_amount_to_pay'])
3449 ) {
3450 $partialAmtPay = CRM_Utils_Rule::cleanMoney($params['partial_amount_to_pay']);
3451 $partialAmtTotal = CRM_Utils_Rule::cleanMoney($params['partial_payment_total']);
3452
3453 $fromFinancialAccountId = CRM_Financial_BAO_FinancialAccount::getFinancialAccountForFinancialTypeByRelationship($params['financial_type_id'], 'Accounts Receivable Account is');
3454 $statusId = CRM_Core_PseudoConstant::getKey('CRM_Contribute_BAO_Contribution', 'contribution_status_id', 'Completed');
3455 $params['total_amount'] = $partialAmtPay;
3456
3457 $balanceTrxnInfo = CRM_Core_BAO_FinancialTrxn::getBalanceTrxnAmt($params['contribution']->id, $params['financial_type_id']);
3458 if (empty($balanceTrxnInfo['trxn_id'])) {
3459 // create new balance transaction record
3460 $toFinancialAccount = CRM_Financial_BAO_FinancialAccount::getFinancialAccountForFinancialTypeByRelationship($params['financial_type_id'], 'Accounts Receivable Account is');
3461
3462 $balanceTrxnParams['total_amount'] = $partialAmtTotal;
3463 $balanceTrxnParams['to_financial_account_id'] = $toFinancialAccount;
3464 $balanceTrxnParams['contribution_id'] = $params['contribution']->id;
3465 $balanceTrxnParams['trxn_date'] = !empty($params['contribution']->receive_date) ? $params['contribution']->receive_date : date('YmdHis');
3466 $balanceTrxnParams['fee_amount'] = CRM_Utils_Array::value('fee_amount', $params);
3467 $balanceTrxnParams['net_amount'] = CRM_Utils_Array::value('net_amount', $params);
3468 $balanceTrxnParams['currency'] = $params['contribution']->currency;
3469 $balanceTrxnParams['trxn_id'] = $params['contribution']->trxn_id;
3470 $balanceTrxnParams['status_id'] = $statusId;
3471 $balanceTrxnParams['payment_instrument_id'] = $params['contribution']->payment_instrument_id;
3472 $balanceTrxnParams['check_number'] = CRM_Utils_Array::value('check_number', $params);
3473 $balanceTrxnParams['pan_truncation'] = CRM_Utils_Array::value('pan_truncation', $params);
3474 $balanceTrxnParams['card_type_id'] = CRM_Utils_Array::value('card_type_id', $params);
3475 if (!empty($balanceTrxnParams['from_financial_account_id']) &&
3476 ($statusId == array_search('Completed', $contributionStatuses) || $statusId == array_search('Partially paid', $contributionStatuses))
3477 ) {
3478 $balanceTrxnParams['is_payment'] = 1;
3479 }
3480 if (!empty($params['payment_processor'])) {
3481 $balanceTrxnParams['payment_processor_id'] = $params['payment_processor'];
3482 }
3483 $financialTxn = CRM_Core_BAO_FinancialTrxn::create($balanceTrxnParams);
3484 }
3485 }
3486
3487 // build line item array if its not set in $params
3488 if (empty($params['line_item']) || $additionalParticipantId) {
3489 CRM_Price_BAO_LineItem::getLineItemArray($params, $entityID, str_replace('civicrm_', '', $entityTable), $isRelatedId);
3490 }
3491
3492 if ($contributionStatus != 'Failed' &&
3493 !($contributionStatus == 'Pending' && !$params['contribution']->is_pay_later)
3494 ) {
3495 $skipRecords = TRUE;
3496 $pendingStatus = [
3497 'Pending',
3498 'In Progress',
3499 ];
3500 if (in_array($contributionStatus, $pendingStatus)) {
3501 $params['to_financial_account_id'] = CRM_Financial_BAO_FinancialAccount::getFinancialAccountForFinancialTypeByRelationship(
3502 $params['financial_type_id'],
3503 'Accounts Receivable Account is'
3504 );
3505 }
3506 elseif (!empty($params['payment_processor'])) {
3507 $params['to_financial_account_id'] = CRM_Contribute_PseudoConstant::getRelationalFinancialAccount($params['payment_processor'], NULL, 'civicrm_payment_processor');
3508 $params['payment_instrument_id'] = civicrm_api3('PaymentProcessor', 'getvalue', [
3509 'id' => $params['payment_processor'],
3510 'return' => 'payment_instrument_id',
3511 ]);
3512 }
3513 elseif (!empty($params['payment_instrument_id'])) {
3514 $params['to_financial_account_id'] = CRM_Financial_BAO_FinancialTypeAccount::getInstrumentFinancialAccount($params['payment_instrument_id']);
3515 }
3516 else {
3517 $relationTypeId = key(CRM_Core_PseudoConstant::accountOptionValues('financial_account_type', NULL, " AND v.name LIKE 'Asset' "));
3518 $queryParams = [1 => [$relationTypeId, 'Integer']];
3519 $params['to_financial_account_id'] = CRM_Core_DAO::singleValueQuery("SELECT id FROM civicrm_financial_account WHERE is_default = 1 AND financial_account_type_id = %1", $queryParams);
3520 }
3521
3522 $totalAmount = CRM_Utils_Array::value('total_amount', $params);
3523 if (!isset($totalAmount) && !empty($params['prevContribution'])) {
3524 $totalAmount = $params['total_amount'] = $params['prevContribution']->total_amount;
3525 }
3526 //build financial transaction params
3527 $trxnParams = [
3528 'contribution_id' => $params['contribution']->id,
3529 'to_financial_account_id' => $params['to_financial_account_id'],
3530 'trxn_date' => !empty($params['contribution']->receive_date) ? $params['contribution']->receive_date : date('YmdHis'),
3531 'total_amount' => $totalAmount,
3532 'fee_amount' => CRM_Utils_Array::value('fee_amount', $params),
3533 'net_amount' => CRM_Utils_Array::value('net_amount', $params, $totalAmount),
3534 'currency' => $params['contribution']->currency,
3535 'trxn_id' => $params['contribution']->trxn_id,
3536 // @todo - this is getting the status id from the contribution - that is BAD - ie the contribution could be partially
3537 // paid but each payment is completed. The work around is to pass in the status_id in the trxn_params but
3538 // this should really default to completed (after discussion).
3539 'status_id' => $statusId,
3540 'payment_instrument_id' => CRM_Utils_Array::value('payment_instrument_id', $params, $params['contribution']->payment_instrument_id),
3541 'check_number' => CRM_Utils_Array::value('check_number', $params),
3542 'pan_truncation' => CRM_Utils_Array::value('pan_truncation', $params),
3543 'card_type_id' => CRM_Utils_Array::value('card_type_id', $params),
3544 ];
3545 if ($contributionStatus == 'Refunded' || $contributionStatus == 'Chargeback' || $contributionStatus == 'Cancelled') {
3546 $trxnParams['trxn_date'] = !empty($params['contribution']->cancel_date) ? $params['contribution']->cancel_date : date('YmdHis');
3547 if (isset($params['refund_trxn_id'])) {
3548 // CRM-17751 allow a separate trxn_id for the refund to be passed in via api & form.
3549 $trxnParams['trxn_id'] = $params['refund_trxn_id'];
3550 }
3551 }
3552 //CRM-16259, set is_payment flag for non pending status
3553 if (!in_array($contributionStatus, $pendingStatus)) {
3554 $trxnParams['is_payment'] = 1;
3555 }
3556 if (!empty($params['payment_processor'])) {
3557 $trxnParams['payment_processor_id'] = $params['payment_processor'];
3558 }
3559
3560 if (isset($fromFinancialAccountId)) {
3561 $trxnParams['from_financial_account_id'] = $fromFinancialAccountId;
3562 }
3563
3564 // consider external values passed for recording transaction entry
3565 if (!empty($financialTrxnValues)) {
3566 $trxnParams = array_merge($trxnParams, $financialTrxnValues);
3567 }
3568 if (empty($trxnParams['payment_processor_id'])) {
3569 unset($trxnParams['payment_processor_id']);
3570 }
3571
3572 $params['trxnParams'] = $trxnParams;
3573
3574 if (!empty($params['prevContribution'])) {
3575 $updated = FALSE;
3576 $params['trxnParams']['total_amount'] = $trxnParams['total_amount'] = $params['total_amount'] = $params['prevContribution']->total_amount;
3577 $params['trxnParams']['fee_amount'] = $params['prevContribution']->fee_amount;
3578 $params['trxnParams']['net_amount'] = $params['prevContribution']->net_amount;
3579 if (!isset($params['trxnParams']['trxn_id'])) {
3580 // Actually I have no idea why we are overwriting any values from the previous contribution.
3581 // (filling makes sense to me). However, only protecting this value as I really really know we
3582 // don't want this one overwritten.
3583 // CRM-17751.
3584 $params['trxnParams']['trxn_id'] = $params['prevContribution']->trxn_id;
3585 }
3586 $params['trxnParams']['status_id'] = $params['prevContribution']->contribution_status_id;
3587
3588 if (!(($params['prevContribution']->contribution_status_id == array_search('Pending', $contributionStatuses)
3589 || $params['prevContribution']->contribution_status_id == array_search('In Progress', $contributionStatuses))
3590 && $params['contribution']->contribution_status_id == array_search('Completed', $contributionStatuses))
3591 ) {
3592 $params['trxnParams']['payment_instrument_id'] = $params['prevContribution']->payment_instrument_id;
3593 $params['trxnParams']['check_number'] = $params['prevContribution']->check_number;
3594 }
3595
3596 //if financial type is changed
3597 if (!empty($params['financial_type_id']) &&
3598 $params['contribution']->financial_type_id != $params['prevContribution']->financial_type_id
3599 ) {
3600 $accountRelationship = 'Income Account is';
3601 if (!empty($params['revenue_recognition_date']) || $params['prevContribution']->revenue_recognition_date) {
3602 $accountRelationship = 'Deferred Revenue Account is';
3603 }
3604 $oldFinancialAccount = CRM_Financial_BAO_FinancialAccount::getFinancialAccountForFinancialTypeByRelationship($params['prevContribution']->financial_type_id, $accountRelationship);
3605 $newFinancialAccount = CRM_Financial_BAO_FinancialAccount::getFinancialAccountForFinancialTypeByRelationship($params['financial_type_id'], $accountRelationship);
3606 if ($oldFinancialAccount != $newFinancialAccount) {
3607 $params['total_amount'] = 0;
3608 if (in_array($params['contribution']->contribution_status_id, $pendingStatus)) {
3609 $params['trxnParams']['to_financial_account_id'] = CRM_Financial_BAO_FinancialAccount::getFinancialAccountForFinancialTypeByRelationship(
3610 $params['prevContribution']->financial_type_id, $accountRelationship);
3611 }
3612 else {
3613 $lastFinancialTrxnId = CRM_Core_BAO_FinancialTrxn::getFinancialTrxnId($params['prevContribution']->id, 'DESC');
3614 if (!empty($lastFinancialTrxnId['financialTrxnId'])) {
3615 $params['trxnParams']['to_financial_account_id'] = CRM_Core_DAO::getFieldValue('CRM_Financial_DAO_FinancialTrxn', $lastFinancialTrxnId['financialTrxnId'], 'to_financial_account_id');
3616 }
3617 }
3618 self::updateFinancialAccounts($params, 'changeFinancialType');
3619 /* $params['trxnParams']['to_financial_account_id'] = $trxnParams['to_financial_account_id']; */
3620 $params['financial_account_id'] = $newFinancialAccount;
3621 $params['total_amount'] = $params['trxnParams']['total_amount'] = $params['trxnParams']['net_amount'] = $trxnParams['total_amount'];
3622 self::updateFinancialAccounts($params);
3623 $params['trxnParams']['to_financial_account_id'] = $trxnParams['to_financial_account_id'];
3624 $updated = TRUE;
3625 $params['deferred_financial_account_id'] = $newFinancialAccount;
3626 }
3627 }
3628
3629 //Update contribution status
3630 $params['trxnParams']['status_id'] = $params['contribution']->contribution_status_id;
3631 if (!isset($params['refund_trxn_id'])) {
3632 // CRM-17751 This has previously been deliberately set. No explanation as to why one variant
3633 // gets preference over another so I am only 'protecting' a very specific tested flow
3634 // and letting natural justice take care of the rest.
3635 $params['trxnParams']['trxn_id'] = $params['contribution']->trxn_id;
3636 }
3637 if (!empty($params['contribution_status_id']) &&
3638 $params['prevContribution']->contribution_status_id != $params['contribution']->contribution_status_id
3639 ) {
3640 //Update Financial Records
3641 self::updateFinancialAccounts($params, 'changedStatus');
3642 $updated = TRUE;
3643 }
3644
3645 // change Payment Instrument for a Completed contribution
3646 // first handle special case when contribution is changed from Pending to Completed status when initial payment
3647 // instrument is null and now new payment instrument is added along with the payment
3648 if (!$params['contribution']->payment_instrument_id) {
3649 $params['contribution']->find(TRUE);
3650 }
3651 $params['trxnParams']['payment_instrument_id'] = $params['contribution']->payment_instrument_id;
3652 $params['trxnParams']['check_number'] = CRM_Utils_Array::value('check_number', $params);
3653
3654 if (self::isPaymentInstrumentChange($params, $pendingStatus)) {
3655 $updated = CRM_Core_BAO_FinancialTrxn::updateFinancialAccountsOnPaymentInstrumentChange($params);
3656 }
3657
3658 //if Change contribution amount
3659 $params['trxnParams']['fee_amount'] = CRM_Utils_Array::value('fee_amount', $params);
3660 $params['trxnParams']['net_amount'] = CRM_Utils_Array::value('net_amount', $params);
3661 $params['trxnParams']['total_amount'] = $trxnParams['total_amount'] = $params['total_amount'] = $totalAmount;
3662 $params['trxnParams']['trxn_id'] = $params['contribution']->trxn_id;
3663 if (isset($totalAmount) &&
3664 $totalAmount != $params['prevContribution']->total_amount
3665 ) {
3666 //Update Financial Records
3667 $params['trxnParams']['from_financial_account_id'] = NULL;
3668 self::updateFinancialAccounts($params, 'changedAmount');
3669 $updated = TRUE;
3670 }
3671
3672 if (!$updated) {
3673 // Looks like we might have a data correction update.
3674 // This would be a case where a transaction id has been entered but it is incorrect &
3675 // the person goes back in & fixes it, as opposed to a new transaction.
3676 // Currently the UI doesn't support multiple refunds against a single transaction & we are only supporting
3677 // the data fix scenario.
3678 // CRM-17751.
3679 if (isset($params['refund_trxn_id'])) {
3680 $refundIDs = CRM_Core_BAO_FinancialTrxn::getRefundTransactionIDs($params['id']);
3681 if (!empty($refundIDs['financialTrxnId']) && $refundIDs['trxn_id'] != $params['refund_trxn_id']) {
3682 civicrm_api3('FinancialTrxn', 'create', [
3683 'id' => $refundIDs['financialTrxnId'],
3684 'trxn_id' => $params['refund_trxn_id'],
3685 ]);
3686 }
3687 }
3688 $cardType = CRM_Utils_Array::value('card_type_id', $params);
3689 $panTruncation = CRM_Utils_Array::value('pan_truncation', $params);
3690 CRM_Core_BAO_FinancialTrxn::updateCreditCardDetails($params['contribution']->id, $panTruncation, $cardType);
3691 }
3692 }
3693
3694 if (!$update) {
3695 // records finanical trxn and entity financial trxn
3696 // also make it available as return value
3697 self::recordAlwaysAccountsReceivable($trxnParams, $params);
3698 $trxnParams['pan_truncation'] = CRM_Utils_Array::value('pan_truncation', $params);
3699 $trxnParams['card_type_id'] = CRM_Utils_Array::value('card_type_id', $params);
3700 $return = $financialTxn = CRM_Core_BAO_FinancialTrxn::create($trxnParams);
3701 $params['entity_id'] = $financialTxn->id;
3702 if (empty($params['partial_payment_total']) && empty($params['partial_amount_to_pay'])) {
3703 self::$_trxnIDs[] = $financialTxn->id;
3704 }
3705 }
3706 }
3707 // record line items and financial items
3708 if (empty($params['skipLineItem'])) {
3709 CRM_Price_BAO_LineItem::processPriceSet($entityId, CRM_Utils_Array::value('line_item', $params), $params['contribution'], $entityTable, $update);
3710 }
3711
3712 // create batch entry if batch_id is passed and
3713 // ensure no batch entry is been made on 'Pending' or 'Failed' contribution, CRM-16611
3714 if (!empty($params['batch_id']) && !empty($financialTxn)) {
3715 $entityParams = [
3716 'batch_id' => $params['batch_id'],
3717 'entity_table' => 'civicrm_financial_trxn',
3718 'entity_id' => $financialTxn->id,
3719 ];
3720 CRM_Batch_BAO_EntityBatch::create($entityParams);
3721 }
3722
3723 // when a fee is charged
3724 if (!empty($params['fee_amount']) && (empty($params['prevContribution']) || $params['contribution']->fee_amount != $params['prevContribution']->fee_amount) && $skipRecords) {
3725 CRM_Core_BAO_FinancialTrxn::recordFees($params);
3726 }
3727
3728 if (!empty($params['prevContribution']) && $entityTable == 'civicrm_participant'
3729 && $params['prevContribution']->contribution_status_id != $params['contribution']->contribution_status_id
3730 ) {
3731 $eventID = CRM_Core_DAO::getFieldValue('CRM_Event_DAO_Participant', $entityId, 'event_id');
3732 $feeLevel[] = str_replace('\ 1', '', $params['prevContribution']->amount_level);
3733 CRM_Event_BAO_Participant::createDiscountTrxn($eventID, $params, $feeLevel);
3734 }
3735 unset($params['line_item']);
3736 self::$_trxnIDs = NULL;
3737 return $return;
3738 }
3739
3740 /**
3741 * Update all financial accounts entry.
3742 *
3743 * @param array $params
3744 * Contribution object, line item array and params for trxn.
3745 *
3746 * @param string $context
3747 * Update scenarios.
3748 *
3749 * @todo stop passing $params by reference. It is unclear the purpose of doing this &
3750 * adds unpredictability.
3751 *
3752 */
3753 public static function updateFinancialAccounts(&$params, $context = NULL) {
3754 $trxnID = NULL;
3755 $inputParams = $params;
3756 $isARefund = FALSE;
3757 $currentContributionStatus = CRM_Core_PseudoConstant::getName('CRM_Contribute_BAO_Contribution', 'contribution_status_id', $params['contribution']->contribution_status_id);
3758 $previousContributionStatus = CRM_Contribute_PseudoConstant::contributionStatus($params['prevContribution']->contribution_status_id, 'name');
3759
3760 if ($context == 'changedStatus') {
3761 list($continue, $isARefund) = self::updateFinancialAccountsOnContributionStatusChange($params, $context, $previousContributionStatus, $currentContributionStatus);
3762 // @todo - it may be that this is always false & the parent function is just a confusing wrapper for the child fn.
3763 if (!$continue) {
3764 return;
3765 }
3766 }
3767
3768 if ($context == 'changedAmount' || $context == 'changeFinancialType') {
3769 // @todo we should stop passing $params by reference - splitting this out would be a step towards that.
3770 $params['trxnParams']['total_amount'] = $params['trxnParams']['net_amount'] = ($params['total_amount'] - $params['prevContribution']->total_amount);
3771 }
3772
3773 $trxn = CRM_Core_BAO_FinancialTrxn::create($params['trxnParams']);
3774 // @todo we should stop passing $params by reference - splitting this out would be a step towards that.
3775 $params['entity_id'] = $trxn->id;
3776
3777 $itemParams['entity_table'] = 'civicrm_line_item';
3778 $trxnIds['id'] = $params['entity_id'];
3779 $previousLineItems = CRM_Price_BAO_LineItem::getLineItemsByContributionID($params['contribution']->id);
3780 foreach ($params['line_item'] as $fieldId => $fields) {
3781 foreach ($fields as $fieldValueId => $lineItemDetails) {
3782 $prevFinancialItem = CRM_Financial_BAO_FinancialItem::getPreviousFinancialItem($lineItemDetails['id']);
3783 $receiveDate = CRM_Utils_Date::isoToMysql($params['prevContribution']->receive_date);
3784 if ($params['contribution']->receive_date) {
3785 $receiveDate = CRM_Utils_Date::isoToMysql($params['contribution']->receive_date);
3786 }
3787
3788 $financialAccount = self::getFinancialAccountForStatusChangeTrxn($params, CRM_Utils_Array::value('financial_account_id', $prevFinancialItem));
3789
3790 $currency = $params['prevContribution']->currency;
3791 // @todo we should stop passing $params by reference - splitting this out would be a step towards that.
3792 if ($params['contribution']->currency) {
3793 $currency = $params['contribution']->currency;
3794 }
3795 $previousLineItemTotal = CRM_Utils_Array::value('line_total', CRM_Utils_Array::value($fieldValueId, $previousLineItems), 0);
3796 $itemParams = [
3797 'transaction_date' => $receiveDate,
3798 'contact_id' => $params['prevContribution']->contact_id,
3799 'currency' => $currency,
3800 'amount' => self::getFinancialItemAmountFromParams($inputParams, $context, $lineItemDetails, $isARefund, $previousLineItemTotal),
3801 'description' => CRM_Utils_Array::value('description', $prevFinancialItem),
3802 'status_id' => $prevFinancialItem['status_id'],
3803 'financial_account_id' => $financialAccount,
3804 'entity_table' => 'civicrm_line_item',
3805 'entity_id' => $lineItemDetails['id'],
3806 ];
3807 $financialItem = CRM_Financial_BAO_FinancialItem::create($itemParams, NULL, $trxnIds);
3808 // @todo we should stop passing $params by reference - splitting this out would be a step towards that.
3809 $params['line_item'][$fieldId][$fieldValueId]['deferred_line_total'] = $itemParams['amount'];
3810 $params['line_item'][$fieldId][$fieldValueId]['financial_item_id'] = $financialItem->id;
3811
3812 if (($lineItemDetails['tax_amount'] && $lineItemDetails['tax_amount'] !== 'null') || ($context == 'changeFinancialType')) {
3813 $invoiceSettings = Civi::settings()->get('contribution_invoice_settings');
3814 $taxTerm = CRM_Utils_Array::value('tax_term', $invoiceSettings);
3815 $taxAmount = (float) $lineItemDetails['tax_amount'];
3816 if ($context == 'changeFinancialType' && $lineItemDetails['tax_amount'] === 'null') {
3817 // reverse the Sale Tax amount if there is no tax rate associated with new Financial Type
3818 $taxAmount = CRM_Utils_Array::value('tax_amount', CRM_Utils_Array::value($fieldValueId, $previousLineItems), 0);
3819 }
3820 elseif ($previousLineItemTotal != $lineItemDetails['line_total']) {
3821 $taxAmount -= CRM_Utils_Array::value('tax_amount', CRM_Utils_Array::value($fieldValueId, $previousLineItems), 0);
3822 }
3823 if ($taxAmount != 0) {
3824 $itemParams['amount'] = self::getMultiplier($params['contribution']->contribution_status_id, $context) * $taxAmount;
3825 $itemParams['description'] = $taxTerm;
3826 if ($lineItemDetails['financial_type_id']) {
3827 $itemParams['financial_account_id'] = CRM_Contribute_PseudoConstant::getRelationalFinancialAccount(
3828 $lineItemDetails['financial_type_id'],
3829 'Sales Tax Account is'
3830 );
3831 }
3832 CRM_Financial_BAO_FinancialItem::create($itemParams, NULL, $trxnIds);
3833 }
3834 }
3835 }
3836 }
3837
3838 if ($context == 'changeFinancialType') {
3839 // @todo we should stop passing $params by reference - splitting this out would be a step towards that.
3840 $params['skipLineItem'] = FALSE;
3841 foreach ($params['line_item'] as &$lineItems) {
3842 foreach ($lineItems as &$line) {
3843 $line['financial_type_id'] = $params['financial_type_id'];
3844 }
3845 }
3846 }
3847
3848 CRM_Core_BAO_FinancialTrxn::createDeferredTrxn(CRM_Utils_Array::value('line_item', $params), $params['contribution'], TRUE, $context);
3849 }
3850
3851 /**
3852 * Is this contribution status a reversal.
3853 *
3854 * If so we would expect to record a negative value in the financial_trxn table.
3855 *
3856 * @param int $status_id
3857 *
3858 * @return bool
3859 */
3860 public static function isContributionStatusNegative($status_id) {
3861 $reversalStatuses = ['Cancelled', 'Chargeback', 'Refunded'];
3862 return in_array(CRM_Contribute_PseudoConstant::contributionStatus($status_id, 'name'), $reversalStatuses);
3863 }
3864
3865 /**
3866 * Check status validation on update of a contribution.
3867 *
3868 * @param array $values
3869 * Previous form values before submit.
3870 *
3871 * @param array $fields
3872 * The input form values.
3873 *
3874 * @param array $errors
3875 * List of errors.
3876 *
3877 * @return bool
3878 */
3879 public static function checkStatusValidation($values, &$fields, &$errors) {
3880 if (CRM_Utils_System::isNull($values) && !empty($fields['id'])) {
3881 $values['contribution_status_id'] = CRM_Core_DAO::getFieldValue('CRM_Contribute_DAO_Contribution', $fields['id'], 'contribution_status_id');
3882 if ($values['contribution_status_id'] == $fields['contribution_status_id']) {
3883 return FALSE;
3884 }
3885 }
3886 $contributionStatuses = CRM_Contribute_PseudoConstant::contributionStatus(NULL, 'name');
3887 $checkStatus = [
3888 'Cancelled' => ['Completed', 'Refunded'],
3889 'Completed' => ['Cancelled', 'Refunded', 'Chargeback'],
3890 'Pending' => ['Cancelled', 'Completed', 'Failed', 'Partially paid'],
3891 'In Progress' => ['Cancelled', 'Completed', 'Failed'],
3892 'Refunded' => ['Cancelled', 'Completed'],
3893 'Partially paid' => ['Completed'],
3894 ];
3895
3896 if (!in_array($contributionStatuses[$fields['contribution_status_id']],
3897 CRM_Utils_Array::value($contributionStatuses[$values['contribution_status_id']], $checkStatus, []))
3898 ) {
3899 $errors['contribution_status_id'] = ts("Cannot change contribution status from %1 to %2.", [
3900 1 => $contributionStatuses[$values['contribution_status_id']],
3901 2 => $contributionStatuses[$fields['contribution_status_id']],
3902 ]);
3903 }
3904 }
3905
3906 /**
3907 * Delete contribution of contact.
3908 *
3909 * CRM-12155
3910 *
3911 * @param int $contactId
3912 * Contact id.
3913 *
3914 */
3915 public static function deleteContactContribution($contactId) {
3916 $contribution = new CRM_Contribute_DAO_Contribution();
3917 $contribution->contact_id = $contactId;
3918 $contribution->find();
3919 while ($contribution->fetch()) {
3920 self::deleteContribution($contribution->id);
3921 }
3922 }
3923
3924 /**
3925 * Get options for a given contribution field.
3926 *
3927 * @param string $fieldName
3928 * @param string $context see CRM_Core_DAO::buildOptionsContext.
3929 * @param array $props whatever is known about this dao object.
3930 *
3931 * @return array|bool
3932 * @see CRM_Core_DAO::buildOptions
3933 *
3934 */
3935 public static function buildOptions($fieldName, $context = NULL, $props = []) {
3936 $className = __CLASS__;
3937 $params = [];
3938 if (isset($props['orderColumn'])) {
3939 $params['orderColumn'] = $props['orderColumn'];
3940 }
3941 switch ($fieldName) {
3942 // This field is not part of this object but the api supports it
3943 case 'payment_processor':
3944 $className = 'CRM_Contribute_BAO_ContributionPage';
3945 // Filter results by contribution page
3946 if (!empty($props['contribution_page_id'])) {
3947 $page = civicrm_api('contribution_page', 'getsingle', [
3948 'version' => 3,
3949 'id' => ($props['contribution_page_id']),
3950 ]);
3951 $types = (array) CRM_Utils_Array::value('payment_processor', $page, 0);
3952 $params['condition'] = 'id IN (' . implode(',', $types) . ')';
3953 }
3954 break;
3955
3956 // CRM-13981 This field was combined with soft_credits in 4.5 but the api still supports it
3957 case 'honor_type_id':
3958 $className = 'CRM_Contribute_BAO_ContributionSoft';
3959 $fieldName = 'soft_credit_type_id';
3960 $params['condition'] = "v.name IN ('in_honor_of','in_memory_of')";
3961 break;
3962 }
3963 return CRM_Core_PseudoConstant::get($className, $fieldName, $params, $context);
3964 }
3965
3966 /**
3967 * Validate financial type.
3968 *
3969 * CRM-13231
3970 *
3971 * @param int $financialTypeId
3972 * Financial Type id.
3973 *
3974 * @param string $relationName
3975 *
3976 * @return array|bool
3977 */
3978 public static function validateFinancialType($financialTypeId, $relationName = 'Expense Account is') {
3979 $financialAccount = CRM_Contribute_PseudoConstant::getRelationalFinancialAccount($financialTypeId, $relationName);
3980
3981 if (!$financialAccount) {
3982 return CRM_Contribute_PseudoConstant::financialType($financialTypeId);
3983 }
3984 return FALSE;
3985 }
3986
3987 /**
3988 * Function to record additional payment for partial and refund contributions.
3989 *
3990 * @param int $contributionId
3991 * is the invoice contribution id (got created after processing participant payment).
3992 * @param array $trxnsData
3993 * to take user provided input of transaction details.
3994 * @param string $paymentType
3995 * 'owed' for purpose of recording partial payments, 'refund' for purpose of recording refund payments.
3996 * @param int $participantId
3997 * @param bool $updateStatus
3998 *
3999 * @return int
4000 *
4001 * @throws \CRM_Core_Exception
4002 * @throws \CiviCRM_API3_Exception
4003 */
4004 public static function recordAdditionalPayment($contributionId, $trxnsData, $paymentType = 'owed', $participantId = NULL, $updateStatus = TRUE) {
4005
4006 if ($paymentType == 'owed') {
4007 $financialTrxn = CRM_Financial_BAO_Payment::recordPayment($contributionId, $trxnsData, $participantId);
4008 if (!empty($financialTrxn)) {
4009 self::recordPaymentActivity($contributionId, $participantId, $financialTrxn->total_amount, $financialTrxn->currency, $financialTrxn->trxn_date);
4010 return $financialTrxn->id;
4011 }
4012 }
4013 elseif ($paymentType == 'refund') {
4014 $trxnsData['total_amount'] = -$trxnsData['total_amount'];
4015 $trxnsData['participant_id'] = $participantId;
4016 return civicrm_api3('Payment', 'create', $trxnsData)['id'];
4017 }
4018 }
4019
4020 /**
4021 * @param int $targetCid
4022 * @param $activityType
4023 * @param string $title
4024 * @param int $contributionId
4025 * @param string $totalAmount
4026 * @param string $currency
4027 * @param string $trxn_date
4028 *
4029 * @throws \CRM_Core_Exception
4030 * @throws \CiviCRM_API3_Exception
4031 */
4032 public static function addActivityForPayment($targetCid, $activityType, $title, $contributionId, $totalAmount, $currency, $trxn_date) {
4033 $paymentAmount = CRM_Utils_Money::format($totalAmount, $currency);
4034 $subject = "{$paymentAmount} - Offline {$activityType} for {$title}";
4035 $date = CRM_Utils_Date::isoToMysql($trxn_date);
4036 // source record id would be the contribution id
4037 $srcRecId = $contributionId;
4038
4039 // activity params
4040 $activityParams = [
4041 'source_contact_id' => $targetCid,
4042 'source_record_id' => $srcRecId,
4043 'activity_type_id' => CRM_Core_PseudoConstant::getKey('CRM_Activity_BAO_Activity', 'activity_type_id', $activityType),
4044 'subject' => $subject,
4045 'activity_date_time' => $date,
4046 'status_id' => CRM_Core_PseudoConstant::getKey('CRM_Activity_BAO_Activity', 'activity_status_id', 'Completed'),
4047 'skipRecentView' => TRUE,
4048 ];
4049
4050 // create activity with target contacts
4051 $session = CRM_Core_Session::singleton();
4052 $id = $session->get('userID');
4053 if ($id) {
4054 $activityParams['source_contact_id'] = $id;
4055 $activityParams['target_contact_id'][] = $targetCid;
4056 }
4057 civicrm_api3('Activity', 'create', $activityParams);
4058 }
4059
4060 /**
4061 * Get list of payments displayed by Contribute_Page_PaymentInfo.
4062 *
4063 * @param int $id
4064 * @param $component
4065 * @param bool $getTrxnInfo
4066 * @param bool $usingLineTotal
4067 *
4068 * @return mixed
4069 */
4070 public static function getPaymentInfo($id, $component = 'contribution', $getTrxnInfo = FALSE, $usingLineTotal = FALSE) {
4071 // @todo deprecate passing in component - always call with contribution.
4072 if ($component == 'event') {
4073 $contributionId = CRM_Core_DAO::getFieldValue('CRM_Event_BAO_ParticipantPayment', $id, 'contribution_id', 'participant_id');
4074
4075 if (!$contributionId) {
4076 if ($primaryParticipantId = CRM_Core_DAO::getFieldValue('CRM_Event_BAO_Participant', $id, 'registered_by_id')) {
4077 $contributionId = CRM_Core_DAO::getFieldValue('CRM_Event_BAO_ParticipantPayment', $primaryParticipantId, 'contribution_id', 'participant_id');
4078 $id = $primaryParticipantId;
4079 }
4080 if (!$contributionId) {
4081 return;
4082 }
4083 }
4084 }
4085 elseif ($component == 'membership') {
4086 $contributionId = CRM_Core_DAO::getFieldValue('CRM_Member_DAO_MembershipPayment', $id, 'contribution_id', 'membership_id');
4087 }
4088 else {
4089 $contributionId = $id;
4090 }
4091
4092 $total = CRM_Core_BAO_FinancialTrxn::getBalanceTrxnAmt($contributionId);
4093 $baseTrxnId = !empty($total['trxn_id']) ? $total['trxn_id'] : NULL;
4094 if (!$baseTrxnId) {
4095 $baseTrxnId = CRM_Core_BAO_FinancialTrxn::getFinancialTrxnId($contributionId);
4096 $baseTrxnId = $baseTrxnId['financialTrxnId'];
4097 }
4098 if (!CRM_Utils_Array::value('total_amount', $total) || $usingLineTotal) {
4099 $total = CRM_Price_BAO_LineItem::getLineTotal($contributionId);
4100 }
4101 else {
4102 $baseTrxnId = $total['trxn_id'];
4103 $total = $total['total_amount'];
4104 }
4105
4106 $paymentBalance = CRM_Contribute_BAO_Contribution::getContributionBalance($contributionId, $total);
4107
4108 $contribution = civicrm_api3('Contribution', 'getsingle', [
4109 'id' => $contributionId,
4110 'return' => [
4111 'currency',
4112 'is_pay_later',
4113 'contribution_status_id',
4114 'financial_type_id',
4115 ],
4116 ]);
4117
4118 $info['payLater'] = $contribution['is_pay_later'];
4119 $info['contribution_status'] = $contribution['contribution_status'];
4120 $info['currency'] = $contribution['currency'];
4121
4122 $financialTypeId = $contribution['financial_type_id'];
4123 $feeFinancialAccount = CRM_Contribute_PseudoConstant::getRelationalFinancialAccount($financialTypeId, 'Expense Account is');
4124
4125 if ($paymentBalance == 0 && $info['payLater']) {
4126 // @todo - review - this looks very unlikely to be correct.
4127 // the balance should be correct based on payment transactions not
4128 // assumptions.
4129 $paymentBalance = $total;
4130 }
4131
4132 $info['total'] = $total;
4133 $info['paid'] = $total - $paymentBalance;
4134 $info['balance'] = $paymentBalance;
4135 $info['id'] = $id;
4136 $info['component'] = $component;
4137 $rows = [];
4138 if ($getTrxnInfo && $baseTrxnId) {
4139 // Need to exclude fee trxn rows so filter out rows where TO FINANCIAL ACCOUNT is expense account
4140 $sql = "
4141 SELECT GROUP_CONCAT(fa.`name`) as financial_account,
4142 ft.total_amount,
4143 ft.payment_instrument_id,
4144 ft.trxn_date, ft.trxn_id, ft.status_id, ft.check_number, ft.currency, ft.pan_truncation, ft.card_type_id, ft.id
4145
4146 FROM civicrm_contribution con
4147 LEFT JOIN civicrm_entity_financial_trxn eft ON (eft.entity_id = con.id AND eft.entity_table = 'civicrm_contribution')
4148 INNER JOIN civicrm_financial_trxn ft ON ft.id = eft.financial_trxn_id
4149 AND ft.to_financial_account_id != %2
4150 LEFT JOIN civicrm_entity_financial_trxn ef ON (ef.financial_trxn_id = ft.id AND ef.entity_table = 'civicrm_financial_item')
4151 LEFT JOIN civicrm_financial_item fi ON fi.id = ef.entity_id
4152 LEFT JOIN civicrm_financial_account fa ON fa.id = fi.financial_account_id
4153
4154 WHERE con.id = %1 AND ft.is_payment = 1
4155 GROUP BY ft.id";
4156 $queryParams = [
4157 1 => [$contributionId, 'Integer'],
4158 2 => [$feeFinancialAccount, 'Integer'],
4159 ];
4160 $resultDAO = CRM_Core_DAO::executeQuery($sql, $queryParams);
4161 $statuses = CRM_Contribute_PseudoConstant::contributionStatus();
4162
4163 while ($resultDAO->fetch()) {
4164 $paidByLabel = CRM_Core_PseudoConstant::getLabel('CRM_Core_BAO_FinancialTrxn', 'payment_instrument_id', $resultDAO->payment_instrument_id);
4165 $paidByName = CRM_Core_PseudoConstant::getName('CRM_Core_BAO_FinancialTrxn', 'payment_instrument_id', $resultDAO->payment_instrument_id);
4166 if ($resultDAO->card_type_id) {
4167 $creditCardType = CRM_Core_PseudoConstant::getLabel('CRM_Core_BAO_FinancialTrxn', 'card_type_id', $resultDAO->card_type_id);
4168 $pantruncation = '';
4169 if ($resultDAO->pan_truncation) {
4170 $pantruncation = ": {$resultDAO->pan_truncation}";
4171 }
4172 $paidByLabel .= " ({$creditCardType}{$pantruncation})";
4173 }
4174
4175 // show payment edit link only for payments done via backoffice form
4176 $paymentEditLink = '';
4177 if (empty($resultDAO->payment_processor_id) && CRM_Core_Permission::check('edit contributions')) {
4178 $links = [
4179 CRM_Core_Action::UPDATE => [
4180 'name' => "<i class='crm-i fa-pencil'></i>",
4181 'url' => 'civicrm/payment/edit',
4182 'class' => 'medium-popup',
4183 'qs' => "reset=1&id=%%id%%&contribution_id=%%contribution_id%%",
4184 'title' => ts('Edit Payment'),
4185 ],
4186 ];
4187 $paymentEditLink = CRM_Core_Action::formLink(
4188 $links,
4189 CRM_Core_Action::mask([CRM_Core_Permission::EDIT]),
4190 [
4191 'id' => $resultDAO->id,
4192 'contribution_id' => $contributionId,
4193 ]
4194 );
4195 }
4196
4197 $val = [
4198 'id' => $resultDAO->id,
4199 'total_amount' => $resultDAO->total_amount,
4200 'financial_type' => $resultDAO->financial_account,
4201 'payment_instrument' => $paidByLabel,
4202 'receive_date' => $resultDAO->trxn_date,
4203 'trxn_id' => $resultDAO->trxn_id,
4204 'status' => $statuses[$resultDAO->status_id],
4205 'currency' => $resultDAO->currency,
4206 'action' => $paymentEditLink,
4207 ];
4208 if ($paidByName == 'Check') {
4209 $val['check_number'] = $resultDAO->check_number;
4210 }
4211 $rows[] = $val;
4212 }
4213 $info['transaction'] = $rows;
4214 }
4215
4216 $info['payment_links'] = self::getContributionPaymentLinks($id, $paymentBalance, $info['contribution_status']);
4217 return $info;
4218 }
4219
4220 /**
4221 * Get the outstanding balance on a contribution.
4222 *
4223 * @param int $contributionId
4224 * @param float $contributionTotal
4225 * Optional amount to override the saved amount paid (e.g if calculating what it WILL be).
4226 *
4227 * @return float
4228 */
4229 public static function getContributionBalance($contributionId, $contributionTotal = NULL) {
4230 if ($contributionTotal === NULL) {
4231 $contributionTotal = CRM_Price_BAO_LineItem::getLineTotal($contributionId);
4232 }
4233
4234 return CRM_Utils_Money::subtractCurrencies(
4235 $contributionTotal,
4236 CRM_Core_BAO_FinancialTrxn::getTotalPayments($contributionId, TRUE) ?: 0,
4237 CRM_Core_DAO::getFieldValue('CRM_Contribute_DAO_Contribution', $contributionId, 'currency')
4238 );
4239 }
4240
4241 /**
4242 * Get the tax amount (misnamed function).
4243 *
4244 * @param array $params
4245 * @param bool $isLineItem
4246 *
4247 * @return array
4248 */
4249 public static function checkTaxAmount($params, $isLineItem = FALSE) {
4250 $taxRates = CRM_Core_PseudoConstant::getTaxRates();
4251
4252 // This function should be only called after standardisation (removal of
4253 // thousand separator & using a decimal point for cents separator.
4254 // However, we don't know if that is always true :-(
4255 // There is a deprecation notice tho :-)
4256 $unknownIfMoneyIsClean = empty($params['skipCleanMoney']) && !$isLineItem;
4257 // Update contribution.
4258 if (!empty($params['id'])) {
4259 // CRM-19126 and CRM-19152 If neither total or financial_type_id are set on an update
4260 // there are no tax implications - early return.
4261 if (!isset($params['total_amount']) && !isset($params['financial_type_id'])) {
4262 return $params;
4263 }
4264 if (empty($params['prevContribution'])) {
4265 $params['prevContribution'] = self::getOriginalContribution($params['id']);
4266 }
4267
4268 foreach (['total_amount', 'financial_type_id', 'fee_amount'] as $field) {
4269 if (!isset($params[$field])) {
4270 if ($field == 'total_amount' && $params['prevContribution']->tax_amount) {
4271 // Tax amount gets added back on later....
4272 $params['total_amount'] = $params['prevContribution']->total_amount -
4273 $params['prevContribution']->tax_amount;
4274 }
4275 else {
4276 $params[$field] = $params['prevContribution']->$field;
4277 if ($params[$field] != $params['prevContribution']->$field) {
4278 }
4279 }
4280 }
4281 }
4282
4283 self::calculateMissingAmountParams($params, $params['id']);
4284 if (!array_key_exists($params['financial_type_id'], $taxRates)) {
4285 // Assign tax Amount on update of contribution
4286 if (!empty($params['prevContribution']->tax_amount)) {
4287 $params['tax_amount'] = 'null';
4288 CRM_Price_BAO_LineItem::getLineItemArray($params, [$params['id']]);
4289 foreach ($params['line_item'] as $setID => $priceField) {
4290 foreach ($priceField as $priceFieldID => $priceFieldValue) {
4291 $params['line_item'][$setID][$priceFieldID]['tax_amount'] = $params['tax_amount'];
4292 }
4293 }
4294 }
4295 }
4296 }
4297
4298 // New Contribution and update of contribution with tax rate financial type
4299 if (isset($params['financial_type_id']) && array_key_exists($params['financial_type_id'], $taxRates) &&
4300 empty($params['skipLineItem']) && !$isLineItem
4301 ) {
4302 $taxRateParams = $taxRates[$params['financial_type_id']];
4303 $taxAmount = CRM_Contribute_BAO_Contribution_Utils::calculateTaxAmount(CRM_Utils_Array::value('total_amount', $params), $taxRateParams, $unknownIfMoneyIsClean);
4304 $params['tax_amount'] = round($taxAmount['tax_amount'], 2);
4305
4306 // Get Line Item on update of contribution
4307 if (isset($params['id'])) {
4308 CRM_Price_BAO_LineItem::getLineItemArray($params, [$params['id']]);
4309 }
4310 else {
4311 CRM_Price_BAO_LineItem::getLineItemArray($params);
4312 }
4313 foreach ($params['line_item'] as $setID => $priceField) {
4314 foreach ($priceField as $priceFieldID => $priceFieldValue) {
4315 $params['line_item'][$setID][$priceFieldID]['tax_amount'] = $params['tax_amount'];
4316 }
4317 }
4318 $params['total_amount'] = CRM_Utils_Array::value('total_amount', $params) + $params['tax_amount'];
4319 }
4320 elseif (isset($params['api.line_item.create'])) {
4321 // Update total amount of contribution using lineItem
4322 $taxAmountArray = [];
4323 foreach ($params['api.line_item.create'] as $key => $value) {
4324 if (isset($value['financial_type_id']) && array_key_exists($value['financial_type_id'], $taxRates)) {
4325 $taxRate = $taxRates[$value['financial_type_id']];
4326 $taxAmount = CRM_Contribute_BAO_Contribution_Utils::calculateTaxAmount($value['line_total'], $taxRate);
4327 $taxAmountArray[] = round($taxAmount['tax_amount'], 2);
4328 }
4329 }
4330 $params['tax_amount'] = array_sum($taxAmountArray);
4331 $params['total_amount'] = $params['total_amount'] + $params['tax_amount'];
4332 }
4333 else {
4334 // update line item of contrbution
4335 if (isset($params['financial_type_id']) && array_key_exists($params['financial_type_id'], $taxRates) && $isLineItem) {
4336 $taxRate = $taxRates[$params['financial_type_id']];
4337 $taxAmount = CRM_Contribute_BAO_Contribution_Utils::calculateTaxAmount($params['line_total'], $taxRate, $unknownIfMoneyIsClean);
4338 $params['tax_amount'] = round($taxAmount['tax_amount'], 2);
4339 }
4340 }
4341 return $params;
4342 }
4343
4344 /**
4345 * Check financial type validation on update of a contribution.
4346 *
4347 * @param int $financialTypeId
4348 * Value of latest Financial Type.
4349 *
4350 * @param int $contributionId
4351 * Contribution Id.
4352 *
4353 * @param array $errors
4354 * List of errors.
4355 *
4356 * @return void
4357 */
4358 public static function checkFinancialTypeChange($financialTypeId, $contributionId, &$errors) {
4359 if (!empty($financialTypeId)) {
4360 $oldFinancialTypeId = CRM_Core_DAO::getFieldValue('CRM_Contribute_DAO_Contribution', $contributionId, 'financial_type_id');
4361 if ($oldFinancialTypeId == $financialTypeId) {
4362 return;
4363 }
4364 }
4365 $sql = 'SELECT financial_type_id FROM civicrm_line_item WHERE contribution_id = %1 GROUP BY financial_type_id;';
4366 $params = [
4367 '1' => [$contributionId, 'Integer'],
4368 ];
4369 $result = CRM_Core_DAO::executeQuery($sql, $params);
4370 if ($result->N > 1) {
4371 $errors['financial_type_id'] = ts('One or more line items have a different financial type than the contribution. Editing the financial type is not yet supported in this situation.');
4372 }
4373 }
4374
4375 /**
4376 * Update related pledge payment payments.
4377 *
4378 * This function has been refactored out of the back office contribution form and may
4379 * still overlap with other functions.
4380 *
4381 * @param string $action
4382 * @param int $pledgePaymentID
4383 * @param int $contributionID
4384 * @param bool $adjustTotalAmount
4385 * @param float $total_amount
4386 * @param float $original_total_amount
4387 * @param int $contribution_status_id
4388 * @param int $original_contribution_status_id
4389 */
4390 public static function updateRelatedPledge(
4391 $action,
4392 $pledgePaymentID,
4393 $contributionID,
4394 $adjustTotalAmount,
4395 $total_amount,
4396 $original_total_amount,
4397 $contribution_status_id,
4398 $original_contribution_status_id
4399 ) {
4400 if (!$pledgePaymentID && $action & CRM_Core_Action::ADD && !$contributionID) {
4401 return;
4402 }
4403
4404 if ($pledgePaymentID) {
4405 //store contribution id in payment record.
4406 CRM_Core_DAO::setFieldValue('CRM_Pledge_DAO_PledgePayment', $pledgePaymentID, 'contribution_id', $contributionID);
4407 }
4408 else {
4409 $pledgePaymentID = CRM_Core_DAO::getFieldValue('CRM_Pledge_DAO_PledgePayment',
4410 $contributionID,
4411 'id',
4412 'contribution_id'
4413 );
4414 }
4415
4416 if (!$pledgePaymentID) {
4417 return;
4418 }
4419 $pledgeID = CRM_Core_DAO::getFieldValue('CRM_Pledge_DAO_PledgePayment',
4420 $contributionID,
4421 'pledge_id',
4422 'contribution_id'
4423 );
4424
4425 $updatePledgePaymentStatus = FALSE;
4426
4427 // If either the status or the amount has changed we update the pledge status.
4428 if ($action & CRM_Core_Action::ADD) {
4429 $updatePledgePaymentStatus = TRUE;
4430 }
4431 elseif ($action & CRM_Core_Action::UPDATE && (($original_contribution_status_id != $contribution_status_id) ||
4432 ($original_total_amount != $total_amount))
4433 ) {
4434 $updatePledgePaymentStatus = TRUE;
4435 }
4436
4437 if ($updatePledgePaymentStatus) {
4438 CRM_Pledge_BAO_PledgePayment::updatePledgePaymentStatus($pledgeID,
4439 [$pledgePaymentID],
4440 $contribution_status_id,
4441 NULL,
4442 $total_amount,
4443 $adjustTotalAmount
4444 );
4445 }
4446 }
4447
4448 /**
4449 * Compute the stats values
4450 *
4451 * @param string $stat either 'mode' or 'median'
4452 * @param string $sql
4453 * @param string $alias of civicrm_contribution
4454 *
4455 * @return array|null
4456 * @deprecated
4457 *
4458 */
4459 public static function computeStats($stat, $sql, $alias = NULL) {
4460 CRM_Core_Error::deprecatedFunctionWarning('computeStats is now deprecated');
4461 return [];
4462 }
4463
4464 /**
4465 * Is there only one line item attached to the contribution.
4466 *
4467 * @param int $id
4468 * Contribution ID.
4469 *
4470 * @return bool
4471 * @throws \CiviCRM_API3_Exception
4472 */
4473 public static function isSingleLineItem($id) {
4474 $lineItemCount = civicrm_api3('LineItem', 'getcount', ['contribution_id' => $id]);
4475 return ($lineItemCount == 1);
4476 }
4477
4478 /**
4479 * Complete an order.
4480 *
4481 * Do not call this directly - use the contribution.completetransaction api as this function is being refactored.
4482 *
4483 * Currently overloaded to complete a transaction & repeat a transaction - fix!
4484 *
4485 * Moving it out of the BaseIPN class is just the first step.
4486 *
4487 * @param array $input
4488 * @param array $ids
4489 * @param array $objects
4490 * @param CRM_Core_Transaction $transaction
4491 * @param int $recur
4492 * @param CRM_Contribute_BAO_Contribution $contribution
4493 *
4494 * @return array
4495 */
4496 public static function completeOrder(&$input, &$ids, $objects, $transaction, $recur, $contribution) {
4497 $primaryContributionID = isset($contribution->id) ? $contribution->id : $objects['first_contribution']->id;
4498 // The previous details are used when calculating line items so keep it before any code that 'does something'
4499 if (!empty($contribution->id)) {
4500 $input['prevContribution'] = CRM_Contribute_BAO_Contribution::getValues(['id' => $contribution->id]);
4501 }
4502 $inputContributionWhiteList = [
4503 'fee_amount',
4504 'net_amount',
4505 'trxn_id',
4506 'check_number',
4507 'payment_instrument_id',
4508 'is_test',
4509 'campaign_id',
4510 'receive_date',
4511 'receipt_date',
4512 'contribution_status_id',
4513 'card_type_id',
4514 'pan_truncation',
4515 ];
4516 if (self::isSingleLineItem($primaryContributionID)) {
4517 $inputContributionWhiteList[] = 'financial_type_id';
4518 }
4519
4520 $participant = CRM_Utils_Array::value('participant', $objects);
4521 $recurContrib = CRM_Utils_Array::value('contributionRecur', $objects);
4522 $recurringContributionID = (empty($recurContrib->id)) ? NULL : $recurContrib->id;
4523 $event = CRM_Utils_Array::value('event', $objects);
4524
4525 $paymentProcessorId = '';
4526 if (isset($objects['paymentProcessor'])) {
4527 if (is_array($objects['paymentProcessor'])) {
4528 $paymentProcessorId = $objects['paymentProcessor']['id'];
4529 }
4530 else {
4531 $paymentProcessorId = $objects['paymentProcessor']->id;
4532 }
4533 }
4534
4535 $completedContributionStatusID = CRM_Core_PseudoConstant::getKey('CRM_Contribute_BAO_Contribution', 'contribution_status_id', 'Completed');
4536
4537 $contributionParams = array_merge([
4538 'contribution_status_id' => $completedContributionStatusID,
4539 'source' => self::getRecurringContributionDescription($contribution, $event),
4540 ], array_intersect_key($input, array_fill_keys($inputContributionWhiteList, 1)
4541 ));
4542
4543 // CRM-20678 Ensure that the currency is correct in subseqent transcations.
4544 if (empty($contributionParams['currency']) && isset($objects['first_contribution']->currency)) {
4545 $contributionParams['currency'] = $objects['first_contribution']->currency;
4546 }
4547
4548 $contributionParams['payment_processor'] = $input['payment_processor'] = $paymentProcessorId;
4549
4550 // If paymentProcessor is not set then the payment_instrument_id would not be correct.
4551 // not clear when or if this would occur if you encounter this please fix here & add a unit test.
4552 if (empty($contributionParams['payment_instrument_id']) && isset($contribution->_relatedObjects['paymentProcessor']['payment_instrument_id'])) {
4553 $contributionParams['payment_instrument_id'] = $contribution->_relatedObjects['paymentProcessor']['payment_instrument_id'];
4554 }
4555
4556 if ($recurringContributionID) {
4557 $contributionParams['contribution_recur_id'] = $recurringContributionID;
4558 }
4559 $changeDate = CRM_Utils_Array::value('trxn_date', $input, date('YmdHis'));
4560
4561 if (empty($contributionParams['receive_date']) && $changeDate) {
4562 $contributionParams['receive_date'] = $changeDate;
4563 }
4564
4565 self::repeatTransaction($contribution, $input, $contributionParams, $paymentProcessorId);
4566 $contributionParams['financial_type_id'] = $contribution->financial_type_id;
4567
4568 $values = [];
4569 if (isset($input['is_email_receipt'])) {
4570 $values['is_email_receipt'] = $input['is_email_receipt'];
4571 }
4572
4573 if ($input['component'] == 'contribute') {
4574 if ($contribution->contribution_page_id) {
4575 // Figure out what we gain from this.
4576 // Note that we may have overwritten the is_email_receipt input, fix that below.
4577 CRM_Contribute_BAO_ContributionPage::setValues($contribution->contribution_page_id, $values);
4578 }
4579 elseif ($recurContrib && $recurringContributionID) {
4580 $values['amount'] = $recurContrib->amount;
4581 $values['financial_type_id'] = $objects['contributionType']->id;
4582 $values['title'] = $source = ts('Offline Recurring Contribution');
4583 }
4584
4585 if (isset($input['is_email_receipt'])) {
4586 // CRM-19601 - we may have overwritten this above.
4587 $values['is_email_receipt'] = $input['is_email_receipt'];
4588 }
4589 elseif ($recurContrib && $recurringContributionID) {
4590 //CRM-13273 - is_email_receipt setting on recurring contribution should take precedence over contribution page setting
4591 // but CRM-16124 if $input['is_email_receipt'] is set then that should not be overridden.
4592 $values['is_email_receipt'] = $recurContrib->is_email_receipt;
4593 }
4594
4595 if ($contributionParams['contribution_status_id'] === $completedContributionStatusID) {
4596 self::updateMembershipBasedOnCompletionOfContribution(
4597 $contribution,
4598 $primaryContributionID,
4599 $changeDate
4600 );
4601 }
4602 }
4603 else {
4604 if (empty($input['IAmAHorribleNastyBeyondExcusableHackInTheCRMEventFORMTaskClassThatNeedsToBERemoved'])) {
4605 if ($event->is_email_confirm) {
4606 // @todo this should be set by the function that sends the mail after sending.
4607 $contributionParams['receipt_date'] = $changeDate;
4608 }
4609 $participantParams['id'] = $participant->id;
4610 $participantParams['status_id'] = 'Registered';
4611 civicrm_api3('Participant', 'create', $participantParams);
4612 }
4613 }
4614
4615 $contributionParams['id'] = $contribution->id;
4616
4617 // CRM-19309 - if you update the contribution here with financial_type_id it can/will mess with $lineItem
4618 // unsetting it here does NOT cause any other contribution test to fail!
4619 unset($contributionParams['financial_type_id']);
4620 $contributionResult = civicrm_api3('Contribution', 'create', $contributionParams);
4621
4622 // Add new soft credit against current $contribution.
4623 if (CRM_Utils_Array::value('contributionRecur', $objects) && $objects['contributionRecur']->id) {
4624 CRM_Contribute_BAO_ContributionRecur::addrecurSoftCredit($objects['contributionRecur']->id, $contribution->id);
4625 }
4626
4627 $contributionStatuses = CRM_Core_PseudoConstant::get('CRM_Contribute_DAO_Contribution', 'contribution_status_id', [
4628 'labelColumn' => 'name',
4629 'flip' => 1,
4630 ]);
4631 if (isset($input['prevContribution']) && (!$input['prevContribution']->is_pay_later && $input['prevContribution']->contribution_status_id == $contributionStatuses['Pending'])) {
4632 $input['payment_processor'] = $paymentProcessorId;
4633 }
4634
4635 if (!empty($contribution->_relatedObjects['participant'])) {
4636 $input['contribution_mode'] = 'participant';
4637 $input['participant_id'] = $contribution->_relatedObjects['participant']->id;
4638 }
4639 elseif (!empty($contribution->_relatedObjects['membership'])) {
4640 // @todo - use getRelatedMemberships instead
4641 $input['contribution_mode'] = 'membership';
4642 $contribution->contribution_status_id = $contributionParams['contribution_status_id'];
4643 $contribution->trxn_id = CRM_Utils_Array::value('trxn_id', $input);
4644 $contribution->receive_date = CRM_Utils_Date::isoToMysql($contribution->receive_date);
4645 }
4646
4647 CRM_Core_Error::debug_log_message("Contribution record updated successfully");
4648 $transaction->commit();
4649
4650 CRM_Contribute_BAO_ContributionRecur::updateRecurLinkedPledge($contribution->id, $recurringContributionID,
4651 $contributionParams['contribution_status_id'], $input['amount']);
4652
4653 // create an activity record
4654 if ($input['component'] == 'contribute') {
4655 //CRM-4027
4656 $targetContactID = NULL;
4657 if (!empty($ids['related_contact'])) {
4658 $targetContactID = $contribution->contact_id;
4659 $contribution->contact_id = $ids['related_contact'];
4660 }
4661 CRM_Activity_BAO_Activity::addActivity($contribution, NULL, $targetContactID);
4662 }
4663
4664 // CRM-9132 legacy behaviour was that receipts were sent out in all instances. Still sending
4665 // when array_key 'is_email_receipt doesn't exist in case some instances where is needs setting haven't been set
4666 if (!array_key_exists('is_email_receipt', $values) ||
4667 $values['is_email_receipt'] == 1
4668 ) {
4669 civicrm_api3('Contribution', 'sendconfirmation', [
4670 'id' => $contribution->id,
4671 'payment_processor_id' => $paymentProcessorId,
4672 ]);
4673 CRM_Core_Error::debug_log_message("Receipt sent");
4674 }
4675
4676 CRM_Core_Error::debug_log_message("Success: Database updated");
4677 return $contributionResult;
4678 }
4679
4680 /**
4681 * Send receipt from contribution.
4682 *
4683 * Do not call this directly - it is being refactored. use contribution.sendmessage api call.
4684 *
4685 * Note that the compose message part has been moved to contribution
4686 * In general LoadObjects is called first to get the objects but the composeMessageArray function now calls it.
4687 *
4688 * @param array $input
4689 * Incoming data from Payment processor.
4690 * @param array $ids
4691 * Related object IDs.
4692 * @param int $contributionID
4693 * @param array $values
4694 * Values related to objects that have already been loaded.
4695 * @param bool $returnMessageText
4696 * Should text be returned instead of sent. This.
4697 * is because the function is also used to generate pdfs
4698 *
4699 * @return array
4700 * @throws \CRM_Core_Exception
4701 * @throws \CiviCRM_API3_Exception
4702 */
4703 public static function sendMail(&$input, &$ids, $contributionID, &$values,
4704 $returnMessageText = FALSE) {
4705
4706 $contribution = new CRM_Contribute_BAO_Contribution();
4707 $contribution->id = $contributionID;
4708 if (!$contribution->find(TRUE)) {
4709 throw new CRM_Core_Exception('Contribution does not exist');
4710 }
4711 $contribution->loadRelatedObjects($input, $ids, TRUE);
4712 // set receipt from e-mail and name in value
4713 if (!$returnMessageText) {
4714 list($values['receipt_from_name'], $values['receipt_from_email']) = self::generateFromEmailAndName($input, $contribution);
4715 }
4716 $values['contribution_status'] = CRM_Core_PseudoConstant::getLabel('CRM_Contribute_BAO_Contribution', 'contribution_status_id', $contribution->contribution_status_id);
4717 $return = $contribution->composeMessageArray($input, $ids, $values, $returnMessageText);
4718 if ((!isset($input['receipt_update']) || $input['receipt_update']) && empty($contribution->receipt_date)) {
4719 civicrm_api3('Contribution', 'create', [
4720 'receipt_date' => 'now',
4721 'id' => $contribution->id,
4722 ]);
4723 }
4724 return $return;
4725 }
4726
4727 /**
4728 * Generate From email and from name in an array values
4729 *
4730 * @param array $input
4731 * @param \CRM_Contribute_BAO_Contribution $contribution
4732 *
4733 * @return array
4734 */
4735 public static function generateFromEmailAndName($input, $contribution) {
4736 // Use input value if supplied.
4737 if (!empty($input['receipt_from_email'])) {
4738 return [
4739 CRM_Utils_array::value('receipt_from_name', $input, ''),
4740 $input['receipt_from_email'],
4741 ];
4742 }
4743 // if we are still empty see if we can use anything from a contribution page.
4744 $pageValues = [];
4745 if (!empty($contribution->contribution_page_id)) {
4746 $pageValues = civicrm_api3('ContributionPage', 'getsingle', ['id' => $contribution->contribution_page_id]);
4747 }
4748 // if we are still empty see if we can use anything from a contribution page.
4749 if (!empty($pageValues['receipt_from_email'])) {
4750 return [
4751 $pageValues['receipt_from_name'],
4752 $pageValues['receipt_from_email'],
4753 ];
4754 }
4755 // If we are still empty fall back to the domain or logged in user information.
4756 return CRM_Core_BAO_Domain::getDefaultReceiptFrom();
4757 }
4758
4759 /**
4760 * Generate credit note id with next avaible number
4761 *
4762 * @return string
4763 * Credit Note Id.
4764 */
4765 public static function createCreditNoteId() {
4766 $prefixValue = Civi::settings()->get('contribution_invoice_settings');
4767
4768 $creditNoteNum = CRM_Core_DAO::singleValueQuery("SELECT count(creditnote_id) as creditnote_number FROM civicrm_contribution WHERE creditnote_id IS NOT NULL");
4769 $creditNoteId = NULL;
4770
4771 do {
4772 $creditNoteNum++;
4773 $creditNoteId = CRM_Utils_Array::value('credit_notes_prefix', $prefixValue) . "" . $creditNoteNum;
4774 $result = civicrm_api3('Contribution', 'getcount', [
4775 'sequential' => 1,
4776 'creditnote_id' => $creditNoteId,
4777 ]);
4778 } while ($result > 0);
4779
4780 return $creditNoteId;
4781 }
4782
4783 /**
4784 * Load related memberships.
4785 *
4786 * @param array $ids
4787 *
4788 * @return array $ids
4789 *
4790 * @throws Exception
4791 * @deprecated
4792 *
4793 * Note that in theory it should be possible to retrieve these from the line_item table
4794 * with the membership_payment table being deprecated. Attempting to do this here causes tests to fail
4795 * as it seems the api is not correctly linking the line items when the contribution is created in the flow
4796 * where the contribution is created in the API, followed by the membership (using the api) followed by the membership
4797 * payment. The membership payment BAO does have code to address this but it doesn't appear to be working.
4798 *
4799 * I don't know if it never worked or broke as a result of https://issues.civicrm.org/jira/browse/CRM-14918.
4800 *
4801 */
4802 public function loadRelatedMembershipObjects($ids = []) {
4803 $query = "
4804 SELECT membership_id
4805 FROM civicrm_membership_payment
4806 WHERE contribution_id = %1 ";
4807 $params = [1 => [$this->id, 'Integer']];
4808 $ids['membership'] = (array) CRM_Utils_Array::value('membership', $ids, []);
4809
4810 $dao = CRM_Core_DAO::executeQuery($query, $params);
4811 while ($dao->fetch()) {
4812 if ($dao->membership_id && !in_array($dao->membership_id, $ids['membership'])) {
4813 $ids['membership'][$dao->membership_id] = $dao->membership_id;
4814 }
4815 }
4816
4817 if (array_key_exists('membership', $ids) && is_array($ids['membership'])) {
4818 foreach ($ids['membership'] as $id) {
4819 if (!empty($id)) {
4820 $membership = new CRM_Member_BAO_Membership();
4821 $membership->id = $id;
4822 if (!$membership->find(TRUE)) {
4823 throw new Exception("Could not find membership record: $id");
4824 }
4825 $membership->join_date = CRM_Utils_Date::isoToMysql($membership->join_date);
4826 $membership->start_date = CRM_Utils_Date::isoToMysql($membership->start_date);
4827 $membership->end_date = CRM_Utils_Date::isoToMysql($membership->end_date);
4828 $this->_relatedObjects['membership'][$membership->membership_type_id] = $membership;
4829 }
4830 }
4831 }
4832 return $ids;
4833 }
4834
4835 /**
4836 * This function is used to record partial payments for contribution
4837 *
4838 * @param array $contribution
4839 *
4840 * @param array $params
4841 *
4842 * @return CRM_Financial_DAO_FinancialTrxn
4843 */
4844 public static function recordPartialPayment($contribution, $params) {
4845 CRM_Core_Error::deprecatedFunctionWarning('use payment create api');
4846 $balanceTrxnParams['to_financial_account_id'] = self::getToFinancialAccount($contribution, $params);
4847 $balanceTrxnParams['from_financial_account_id'] = CRM_Financial_BAO_FinancialAccount::getFinancialAccountForFinancialTypeByRelationship($contribution['financial_type_id'], 'Accounts Receivable Account is');
4848 $balanceTrxnParams['total_amount'] = $params['total_amount'];
4849 $balanceTrxnParams['contribution_id'] = $params['contribution_id'];
4850 $balanceTrxnParams['trxn_date'] = CRM_Utils_Array::value('trxn_date', $params, CRM_Utils_Array::value('contribution_receive_date', $params, date('YmdHis')));
4851 $balanceTrxnParams['fee_amount'] = CRM_Utils_Array::value('fee_amount', $params);
4852 $balanceTrxnParams['net_amount'] = CRM_Utils_Array::value('total_amount', $params);
4853 $balanceTrxnParams['currency'] = $contribution['currency'];
4854 $balanceTrxnParams['trxn_id'] = CRM_Utils_Array::value('contribution_trxn_id', $params, NULL);
4855 $balanceTrxnParams['status_id'] = CRM_Core_PseudoConstant::getKey('CRM_Core_BAO_FinancialTrxn', 'status_id', 'Completed');
4856 $balanceTrxnParams['payment_instrument_id'] = CRM_Utils_Array::value('payment_instrument_id', $params, $contribution['payment_instrument_id']);
4857 $balanceTrxnParams['check_number'] = CRM_Utils_Array::value('check_number', $params);
4858 $balanceTrxnParams['is_payment'] = 1;
4859
4860 if (!empty($params['payment_processor'])) {
4861 // I can't find evidence this is passed in - I was gonna just remove it but decided to deprecate as I see self::getToFinancialAccount
4862 // also anticipates it.
4863 CRM_Core_Error::deprecatedFunctionWarning('passing payment_processor is deprecated - use payment_processor_id');
4864 $balanceTrxnParams['payment_processor_id'] = $params['payment_processor'];
4865 }
4866 return CRM_Core_BAO_FinancialTrxn::create($balanceTrxnParams);
4867 }
4868
4869 /**
4870 * Get the description (source field) for the recurring contribution.
4871 *
4872 * @param CRM_Contribute_BAO_Contribution $contribution
4873 * @param CRM_Event_DAO_Event|null $event
4874 *
4875 * @return string
4876 * @throws \CiviCRM_API3_Exception
4877 */
4878 protected static function getRecurringContributionDescription($contribution, $event) {
4879 if (!empty($contribution->source)) {
4880 return $contribution->source;
4881 }
4882 elseif (!empty($contribution->contribution_page_id) && is_numeric($contribution->contribution_page_id)) {
4883 $contributionPageTitle = civicrm_api3('ContributionPage', 'getvalue', [
4884 'id' => $contribution->contribution_page_id,
4885 'return' => 'title',
4886 ]);
4887 return ts('Online Contribution') . ': ' . $contributionPageTitle;
4888 }
4889 elseif ($event) {
4890 return ts('Online Event Registration') . ': ' . $event->title;
4891 }
4892 elseif (!empty($contribution->contribution_recur_id)) {
4893 return 'recurring contribution';
4894 }
4895 return '';
4896 }
4897
4898 /**
4899 * Function to add payments for contribution
4900 * for Partially Paid status
4901 *
4902 * @param array $contributions
4903 * @param string $contributionStatusId
4904 *
4905 */
4906 public static function addPayments($contributions, $contributionStatusId = NULL) {
4907 // get financial trxn which is a payment
4908 $ftSql = "SELECT ft.id, ft.total_amount
4909 FROM civicrm_financial_trxn ft
4910 INNER JOIN civicrm_entity_financial_trxn eft ON eft.financial_trxn_id = ft.id AND eft.entity_table = 'civicrm_contribution'
4911 WHERE eft.entity_id = %1 AND ft.is_payment = 1 ORDER BY ft.id DESC LIMIT 1";
4912 $contributionStatus = CRM_Core_PseudoConstant::get('CRM_Contribute_DAO_Contribution', 'contribution_status_id', [
4913 'labelColumn' => 'name',
4914 ]);
4915 foreach ($contributions as $contribution) {
4916 if (!($contributionStatus[$contribution->contribution_status_id] == 'Partially paid'
4917 || CRM_Utils_Array::value($contributionStatusId, $contributionStatus) == 'Partially paid')
4918 ) {
4919 continue;
4920 }
4921 $ftDao = CRM_Core_DAO::executeQuery($ftSql, [
4922 1 => [
4923 $contribution->id,
4924 'Integer',
4925 ],
4926 ]);
4927 $ftDao->fetch();
4928
4929 // store financial item Proportionaly.
4930 $trxnParams = [
4931 'total_amount' => $ftDao->total_amount,
4932 'contribution_id' => $contribution->id,
4933 ];
4934 self::assignProportionalLineItems($trxnParams, $ftDao->id, $contribution->total_amount);
4935 }
4936 }
4937
4938 /**
4939 * Function use to store line item proportionally in in entity financial trxn table
4940 *
4941 * @param array $trxnParams
4942 *
4943 * @param int $trxnId
4944 *
4945 * @param float $contributionTotalAmount
4946 *
4947 * @throws \CiviCRM_API3_Exception
4948 */
4949 public static function assignProportionalLineItems($trxnParams, $trxnId, $contributionTotalAmount) {
4950 $lineItems = CRM_Price_BAO_LineItem::getLineItemsByContributionID($trxnParams['contribution_id']);
4951 if (!empty($lineItems)) {
4952 // get financial item
4953 list($ftIds, $taxItems) = self::getLastFinancialItemIds($trxnParams['contribution_id']);
4954 $entityParams = [
4955 'contribution_total_amount' => $contributionTotalAmount,
4956 'trxn_total_amount' => $trxnParams['total_amount'],
4957 'trxn_id' => $trxnId,
4958 ];
4959 self::createProportionalFinancialEntries($entityParams, $lineItems, $ftIds, $taxItems);
4960 }
4961 }
4962
4963 /**
4964 * Checks if line items total amounts
4965 * match the contribution total amount.
4966 *
4967 * @param array $params
4968 * array of order params.
4969 *
4970 * @throws \API_Exception
4971 */
4972 public static function checkLineItems(&$params) {
4973 $totalAmount = CRM_Utils_Array::value('total_amount', $params);
4974 $lineItemAmount = 0;
4975
4976 foreach ($params['line_items'] as &$lineItems) {
4977 foreach ($lineItems['line_item'] as &$item) {
4978 if (empty($item['financial_type_id'])) {
4979 $item['financial_type_id'] = $params['financial_type_id'];
4980 }
4981 $lineItemAmount += $item['line_total'] + CRM_Utils_Array::value('tax_amount', $item, 0.00);
4982 }
4983 }
4984
4985 if (!isset($totalAmount)) {
4986 $params['total_amount'] = $lineItemAmount;
4987 }
4988 else {
4989 $currency = CRM_Utils_Array::value('currency', $params, '');
4990
4991 if (empty($currency)) {
4992 $currency = CRM_Core_Config::singleton()->defaultCurrency;
4993 }
4994
4995 if (!CRM_Utils_Money::equals($totalAmount, $lineItemAmount, $currency)) {
4996 throw new CRM_Contribute_Exception_CheckLineItemsException();
4997 }
4998 }
4999 }
5000
5001 /**
5002 * Get the financial account for the item associated with the new transaction.
5003 *
5004 * @param array $params
5005 * @param int $default
5006 *
5007 * @return int
5008 */
5009 public static function getFinancialAccountForStatusChangeTrxn($params, $default) {
5010
5011 if (!empty($params['financial_account_id'])) {
5012 return $params['financial_account_id'];
5013 }
5014
5015 $contributionStatus = CRM_Contribute_PseudoConstant::contributionStatus($params['contribution_status_id'], 'name');
5016 $preferredAccountsRelationships = [
5017 'Refunded' => 'Credit/Contra Revenue Account is',
5018 'Chargeback' => 'Chargeback Account is',
5019 ];
5020
5021 if (in_array($contributionStatus, array_keys($preferredAccountsRelationships))) {
5022 $financialTypeID = !empty($params['financial_type_id']) ? $params['financial_type_id'] : $params['prevContribution']->financial_type_id;
5023 return CRM_Financial_BAO_FinancialAccount::getFinancialAccountForFinancialTypeByRelationship(
5024 $financialTypeID,
5025 $preferredAccountsRelationships[$contributionStatus]
5026 );
5027 }
5028
5029 return $default;
5030 }
5031
5032 /**
5033 * ContributionPage values were being imposed onto values.
5034 *
5035 * I have made this explicit and removed the couple (is_recur, is_pay_later) we
5036 * REALLY didn't want superimposed. The rest are left there in their overkill out
5037 * of cautiousness.
5038 *
5039 * The rationale for making this explicit is that it was a case of carefully set values being
5040 * seemingly randonly overwritten without much care. In general I think array randomly setting
5041 * variables en mass is risky.
5042 *
5043 * @param array $values
5044 *
5045 * @return array
5046 */
5047 protected function addContributionPageValuesToValuesHeavyHandedly(&$values) {
5048 $contributionPageValues = [];
5049 CRM_Contribute_BAO_ContributionPage::setValues(
5050 $this->contribution_page_id,
5051 $contributionPageValues
5052 );
5053 $valuesToCopy = [
5054 // These are the values that I believe to be useful.
5055 'id',
5056 'title',
5057 'pay_later_receipt',
5058 'pay_later_text',
5059 'receipt_from_email',
5060 'receipt_from_name',
5061 'receipt_text',
5062 'custom_pre_id',
5063 'custom_post_id',
5064 'honoree_profile_id',
5065 'onbehalf_profile_id',
5066 'honor_block_is_active',
5067 // Kinda might be - but would be on the contribution...
5068 'campaign_id',
5069 'currency',
5070 // Included for 'fear of regression' but can't justify any use for these....
5071 'intro_text',
5072 'payment_processor',
5073 'financial_type_id',
5074 'amount_block_is_active',
5075 'bcc_receipt',
5076 'cc_receipt',
5077 'created_date',
5078 'created_id',
5079 'default_amount_id',
5080 'end_date',
5081 'footer_text',
5082 'goal_amount',
5083 'initial_amount_help_text',
5084 'initial_amount_label',
5085 'intro_text',
5086 'is_allow_other_amount',
5087 'is_billing_required',
5088 'is_confirm_enabled',
5089 'is_credit_card_only',
5090 'is_monetary',
5091 'is_partial_payment',
5092 'is_recur_installments',
5093 'is_recur_interval',
5094 'is_share',
5095 'max_amount',
5096 'min_amount',
5097 'min_initial_amount',
5098 'recur_frequency_unit',
5099 'start_date',
5100 'thankyou_footer',
5101 'thankyou_text',
5102 'thankyou_title',
5103
5104 ];
5105 foreach ($valuesToCopy as $valueToCopy) {
5106 if (isset($contributionPageValues[$valueToCopy])) {
5107 $values[$valueToCopy] = $contributionPageValues[$valueToCopy];
5108 }
5109 }
5110 return $values;
5111 }
5112
5113 /**
5114 * Get values of CiviContribute Settings
5115 * and check if its enabled or not.
5116 * Note: The CiviContribute settings are stored as single entry in civicrm_setting
5117 * in serialized form. Usually this should be stored as flat settings for each form fields
5118 * as per CiviCRM standards. Since this would take more effort to change the current behaviour of CiviContribute
5119 * settings we will live with an inconsistency because it's too hard to change for now.
5120 * https://github.com/civicrm/civicrm-core/pull/8562#issuecomment-227874245
5121 *
5122 *
5123 * @param string $name
5124 * @param bool $checkInvoicing
5125 * @return string
5126 *
5127 */
5128 public static function checkContributeSettings($name = NULL, $checkInvoicing = FALSE) {
5129 $contributeSettings = Civi::settings()->get('contribution_invoice_settings');
5130
5131 if ($checkInvoicing && !CRM_Utils_Array::value('invoicing', $contributeSettings)) {
5132 return NULL;
5133 }
5134
5135 if ($name) {
5136 return CRM_Utils_Array::value($name, $contributeSettings);
5137 }
5138 return $contributeSettings;
5139 }
5140
5141 /**
5142 * This function process contribution related objects.
5143 *
5144 * @param int $contributionId
5145 * @param int $statusId
5146 * @param int|null $previousStatusId
5147 *
5148 * @param string $receiveDate
5149 *
5150 * @return null|string
5151 */
5152 public static function transitionComponentWithReturnMessage($contributionId, $statusId, $previousStatusId = NULL, $receiveDate = NULL) {
5153 $statusMsg = NULL;
5154 if (!$contributionId || !$statusId) {
5155 return $statusMsg;
5156 }
5157
5158 $params = [
5159 'contribution_id' => $contributionId,
5160 'contribution_status_id' => $statusId,
5161 'previous_contribution_status_id' => $previousStatusId,
5162 'receive_date' => $receiveDate,
5163 ];
5164
5165 $updateResult = CRM_Contribute_BAO_Contribution::transitionComponents($params);
5166
5167 if (!is_array($updateResult) ||
5168 !($updatedComponents = CRM_Utils_Array::value('updatedComponents', $updateResult)) ||
5169 !is_array($updatedComponents) ||
5170 empty($updatedComponents)
5171 ) {
5172 return $statusMsg;
5173 }
5174
5175 // get the user display name.
5176 $sql = "
5177 SELECT display_name as displayName
5178 FROM civicrm_contact
5179 LEFT JOIN civicrm_contribution on (civicrm_contribution.contact_id = civicrm_contact.id )
5180 WHERE civicrm_contribution.id = {$contributionId}";
5181 $userDisplayName = CRM_Core_DAO::singleValueQuery($sql);
5182
5183 // get the status message for user.
5184 foreach ($updatedComponents as $componentName => $updatedStatusId) {
5185
5186 if ($componentName == 'CiviMember') {
5187 $updatedStatusName = CRM_Utils_Array::value($updatedStatusId,
5188 CRM_Member_PseudoConstant::membershipStatus()
5189 );
5190
5191 $statusNameMsgPart = 'updated';
5192 switch ($updatedStatusName) {
5193 case 'Cancelled':
5194 case 'Expired':
5195 $statusNameMsgPart = $updatedStatusName;
5196 break;
5197 }
5198
5199 $statusMsg .= "<br />" . ts("Membership for %1 has been %2.", [
5200 1 => $userDisplayName,
5201 2 => $statusNameMsgPart,
5202 ]);
5203 }
5204
5205 if ($componentName == 'CiviEvent') {
5206 $updatedStatusName = CRM_Utils_Array::value($updatedStatusId,
5207 CRM_Event_PseudoConstant::participantStatus()
5208 );
5209 if ($updatedStatusName == 'Cancelled') {
5210 $statusMsg .= "<br />" . ts("Event Registration for %1 has been Cancelled.", [1 => $userDisplayName]);
5211 }
5212 elseif ($updatedStatusName == 'Registered') {
5213 $statusMsg .= "<br />" . ts("Event Registration for %1 has been updated.", [1 => $userDisplayName]);
5214 }
5215 }
5216
5217 if ($componentName == 'CiviPledge') {
5218 $updatedStatusName = CRM_Utils_Array::value($updatedStatusId,
5219 CRM_Contribute_PseudoConstant::contributionStatus(NULL, 'name')
5220 );
5221 if ($updatedStatusName == 'Cancelled') {
5222 $statusMsg .= "<br />" . ts("Pledge Payment for %1 has been Cancelled.", [1 => $userDisplayName]);
5223 }
5224 elseif ($updatedStatusName == 'Failed') {
5225 $statusMsg .= "<br />" . ts("Pledge Payment for %1 has been Failed.", [1 => $userDisplayName]);
5226 }
5227 elseif ($updatedStatusName == 'Completed') {
5228 $statusMsg .= "<br />" . ts("Pledge Payment for %1 has been updated.", [1 => $userDisplayName]);
5229 }
5230 }
5231 }
5232
5233 return $statusMsg;
5234 }
5235
5236 /**
5237 * Get the contribution as it is in the database before being updated.
5238 *
5239 * @param int $contributionID
5240 *
5241 * @return \CRM_Contribute_BAO_Contribution|null
5242 */
5243 private static function getOriginalContribution($contributionID) {
5244 return self::getValues(['id' => $contributionID]);
5245 }
5246
5247 /**
5248 * Get the amount for the financial item row.
5249 *
5250 * Helper function to start to break down recordFinancialTransactions for readability.
5251 *
5252 * The logic is more historical than .. logical. Paths other than the deprecated one are tested.
5253 *
5254 * Codewise, several somewhat disimmilar things have been squished into recordFinancialAccounts
5255 * for historical reasons. Going forwards we can hope to add tests & improve readibility
5256 * of that function
5257 *
5258 * @param array $params
5259 * Params as passed to contribution.create
5260 *
5261 * @param string $context
5262 * changeFinancialType| changedAmount
5263 * @param array $lineItemDetails
5264 * Line items.
5265 * @param bool $isARefund
5266 * Is this a refund / negative transaction.
5267 * @param int $previousLineItemTotal
5268 *
5269 * @return float
5270 * @todo move recordFinancialAccounts & helper functions to their own class?
5271 *
5272 */
5273 protected static function getFinancialItemAmountFromParams($params, $context, $lineItemDetails, $isARefund, $previousLineItemTotal) {
5274 if ($context == 'changedAmount') {
5275 $lineTotal = $lineItemDetails['line_total'];
5276 if ($lineTotal != $previousLineItemTotal) {
5277 $lineTotal -= $previousLineItemTotal;
5278 }
5279 return $lineTotal;
5280 }
5281 elseif ($context == 'changeFinancialType') {
5282 return -$lineItemDetails['line_total'];
5283 }
5284 elseif ($context == 'changedStatus') {
5285 $cancelledTaxAmount = 0;
5286 if ($isARefund) {
5287 $cancelledTaxAmount = CRM_Utils_Array::value('tax_amount', $lineItemDetails, '0.00');
5288 }
5289 return self::getMultiplier($params['contribution']->contribution_status_id, $context) * ((float) $lineItemDetails['line_total'] + (float) $cancelledTaxAmount);
5290 }
5291 elseif ($context === NULL) {
5292 // erm, yes because? but, hey, it's tested.
5293 return $lineItemDetails['line_total'];
5294 }
5295 elseif (empty($lineItemDetails['line_total'])) {
5296 // follow legacy code path
5297 Civi::log()
5298 ->warning('Deprecated bit of code, please log a ticket explaining how you got here!', ['civi.tag' => 'deprecated']);
5299 return $params['total_amount'];
5300 }
5301 else {
5302 return self::getMultiplier($params['contribution']->contribution_status_id, $context) * ((float) $lineItemDetails['line_total']);
5303 }
5304 }
5305
5306 /**
5307 * Get the multiplier for adjusting rows.
5308 *
5309 * If we are dealing with a refund or cancellation then it will be a negative
5310 * amount to reflect the negative transaction.
5311 *
5312 * If we are changing Financial Type it will be a negative amount to
5313 * adjust down the old type.
5314 *
5315 * @param int $contribution_status_id
5316 * @param string $context
5317 *
5318 * @return int
5319 */
5320 protected static function getMultiplier($contribution_status_id, $context) {
5321 if ($context == 'changeFinancialType' || self::isContributionStatusNegative($contribution_status_id)) {
5322 return -1;
5323 }
5324 return 1;
5325 }
5326
5327 /**
5328 * Does this transaction reflect a payment instrument change.
5329 *
5330 * @param array $params
5331 * @param array $pendingStatuses
5332 *
5333 * @return bool
5334 */
5335 protected static function isPaymentInstrumentChange(&$params, $pendingStatuses) {
5336 $contributionStatus = CRM_Core_PseudoConstant::getName('CRM_Contribute_BAO_Contribution', 'contribution_status_id', $params['contribution']->contribution_status_id);
5337
5338 if (array_key_exists('payment_instrument_id', $params)) {
5339 if (CRM_Utils_System::isNull($params['prevContribution']->payment_instrument_id) &&
5340 !CRM_Utils_System::isNull($params['payment_instrument_id'])
5341 ) {
5342 //check if status is changed from Pending to Completed
5343 // do not update payment instrument changes for Pending to Completed
5344 if (!($contributionStatus == 'Completed' &&
5345 in_array($params['prevContribution']->contribution_status_id, $pendingStatuses))
5346 ) {
5347 return TRUE;
5348 }
5349 }
5350 elseif ((!CRM_Utils_System::isNull($params['payment_instrument_id']) &&
5351 !CRM_Utils_System::isNull($params['prevContribution']->payment_instrument_id)) &&
5352 $params['payment_instrument_id'] != $params['prevContribution']->payment_instrument_id
5353 ) {
5354 return TRUE;
5355 }
5356 elseif (!CRM_Utils_System::isNull($params['contribution']->check_number) &&
5357 $params['contribution']->check_number != $params['prevContribution']->check_number
5358 ) {
5359 // another special case when check number is changed, create new financial records
5360 // create financial trxn with negative amount
5361 return TRUE;
5362 }
5363 }
5364 return FALSE;
5365 }
5366
5367 /**
5368 * Update the memberships associated with a contribution if it has been completed.
5369 *
5370 * Note that the way in which $memberships are loaded as objects is pretty messy & I think we could just
5371 * load them in this function. Code clean up would compensate for any minor performance implication.
5372 *
5373 * @param \CRM_Contribute_BAO_Contribution $contribution
5374 * @param int $primaryContributionID
5375 * @param string $changeDate
5376 *
5377 * @throws \CRM_Core_Exception
5378 * @throws \CiviCRM_API3_Exception
5379 */
5380 public static function updateMembershipBasedOnCompletionOfContribution($contribution, $primaryContributionID, $changeDate) {
5381 $memberships = self::getRelatedMemberships($contribution->id);
5382 foreach ($memberships as $membership) {
5383 $membershipParams = [
5384 'id' => $membership['id'],
5385 'contact_id' => $membership['contact_id'],
5386 'is_test' => $membership['is_test'],
5387 'membership_type_id' => $membership['membership_type_id'],
5388 'membership_activity_status' => 'Completed',
5389 ];
5390
5391 $currentMembership = CRM_Member_BAO_Membership::getContactMembership($membershipParams['contact_id'],
5392 $membershipParams['membership_type_id'],
5393 $membershipParams['is_test'],
5394 $membershipParams['id']
5395 );
5396
5397 // CRM-8141 update the membership type with the value recorded in log when membership created/renewed
5398 // this picks up membership type changes during renewals
5399 // @todo this is almost certainly an obsolete sql call, the pre-change
5400 // membership is accessible via $this->_relatedObjects
5401 $sql = "
5402 SELECT membership_type_id
5403 FROM civicrm_membership_log
5404 WHERE membership_id={$membershipParams['id']}
5405 ORDER BY id DESC
5406 LIMIT 1;";
5407 $dao = CRM_Core_DAO::executeQuery($sql);
5408 if ($dao->fetch()) {
5409 if (!empty($dao->membership_type_id)) {
5410 $membershipParams['membership_type_id'] = $dao->membership_type_id;
5411 }
5412 }
5413
5414 $membershipParams['num_terms'] = $contribution->getNumTermsByContributionAndMembershipType(
5415 $membershipParams['membership_type_id'],
5416 $primaryContributionID
5417 );
5418 // @todo remove all this stuff in favour of letting the api call further down handle in
5419 // (it is a duplication of what the api does).
5420 $dates = array_fill_keys([
5421 'join_date',
5422 'start_date',
5423 'end_date',
5424 ], NULL);
5425 if ($currentMembership) {
5426 /*
5427 * Fixed FOR CRM-4433
5428 * In BAO/Membership.php(renewMembership function), we skip the extend membership date and status
5429 * when Contribution mode is notify and membership is for renewal )
5430 */
5431 CRM_Member_BAO_Membership::fixMembershipStatusBeforeRenew($currentMembership, $changeDate);
5432
5433 // @todo - we should pass membership_type_id instead of null here but not
5434 // adding as not sure of testing
5435 $dates = CRM_Member_BAO_MembershipType::getRenewalDatesForMembershipType($membershipParams['id'],
5436 $changeDate, NULL, $membershipParams['num_terms']
5437 );
5438 $dates['join_date'] = $currentMembership['join_date'];
5439 }
5440
5441 //get the status for membership.
5442 $calcStatus = CRM_Member_BAO_MembershipStatus::getMembershipStatusByDate($dates['start_date'],
5443 $dates['end_date'],
5444 $dates['join_date'],
5445 'today',
5446 TRUE,
5447 $membershipParams['membership_type_id'],
5448 $membershipParams
5449 );
5450
5451 unset($dates['end_date']);
5452 $membershipParams['status_id'] = CRM_Utils_Array::value('id', $calcStatus, 'New');
5453 //we might be renewing membership,
5454 //so make status override false.
5455 $membershipParams['is_override'] = FALSE;
5456 $membershipParams['status_override_end_date'] = 'null';
5457
5458 //CRM-17723 - reset static $relatedContactIds array()
5459 // @todo move it to Civi Statics.
5460 $var = TRUE;
5461 CRM_Member_BAO_Membership::createRelatedMemberships($var, $var, TRUE);
5462 civicrm_api3('Membership', 'create', $membershipParams);
5463 }
5464 }
5465
5466 /**
5467 * Get payment links as they relate to a contribution.
5468 *
5469 * If a payment can be made then include a payment link & if a refund is appropriate
5470 * then a refund link.
5471 *
5472 * @param int $id
5473 * @param float $balance
5474 * @param string $contributionStatus
5475 *
5476 * @return array
5477 * $actionLinks Links array containing:
5478 * -url
5479 * -title
5480 */
5481 protected static function getContributionPaymentLinks($id, $balance, $contributionStatus) {
5482 if ($contributionStatus === 'Failed' || !CRM_Core_Permission::check('edit contributions')) {
5483 // In general the balance is the best way to determine if a payment can be added or not,
5484 // but not for Failed contributions, where we don't accept additional payments at the moment.
5485 // (in some cases the contribution is 'Pending' and only the payment is failed. In those we
5486 // do accept more payments agains them.
5487 return [];
5488 }
5489 $actionLinks = [];
5490 if ((int) $balance > 0) {
5491 if (CRM_Core_Config::isEnabledBackOfficeCreditCardPayments()) {
5492 $actionLinks[] = [
5493 'url' => CRM_Utils_System::url('civicrm/payment', [
5494 'action' => 'add',
5495 'reset' => 1,
5496 'id' => $id,
5497 'mode' => 'live',
5498 ]),
5499 'title' => ts('Submit Credit Card payment'),
5500 ];
5501 }
5502 $actionLinks[] = [
5503 'url' => CRM_Utils_System::url('civicrm/payment', [
5504 'action' => 'add',
5505 'reset' => 1,
5506 'id' => $id,
5507 ]),
5508 'title' => ts('Record Payment'),
5509 ];
5510 }
5511 elseif ((int) $balance < 0) {
5512 $actionLinks[] = [
5513 'url' => CRM_Utils_System::url('civicrm/payment', [
5514 'action' => 'add',
5515 'reset' => 1,
5516 'id' => $id,
5517 ]),
5518 'title' => ts('Record Refund'),
5519 ];
5520 }
5521 return $actionLinks;
5522 }
5523
5524 /**
5525 * Get a query to determine the amount donated by the contact/s in the current financial year.
5526 *
5527 * @param array $contactIDs
5528 *
5529 * @return string
5530 */
5531 public static function getAnnualQuery($contactIDs) {
5532 $contactIDs = implode(',', $contactIDs);
5533 $config = CRM_Core_Config::singleton();
5534 $currentMonth = date('m');
5535 $currentDay = date('d');
5536 if (
5537 (int) $config->fiscalYearStart['M'] > $currentMonth ||
5538 (
5539 (int) $config->fiscalYearStart['M'] == $currentMonth &&
5540 (int) $config->fiscalYearStart['d'] > $currentDay
5541 )
5542 ) {
5543 $year = date('Y') - 1;
5544 }
5545 else {
5546 $year = date('Y');
5547 }
5548 $nextYear = $year + 1;
5549
5550 if ($config->fiscalYearStart) {
5551 $newFiscalYearStart = $config->fiscalYearStart;
5552 if ($newFiscalYearStart['M'] < 10) {
5553 // This is just a clumsy way of adding padding.
5554 // @todo next round look for a nicer way.
5555 $newFiscalYearStart['M'] = '0' . $newFiscalYearStart['M'];
5556 }
5557 if ($newFiscalYearStart['d'] < 10) {
5558 // This is just a clumsy way of adding padding.
5559 // @todo next round look for a nicer way.
5560 $newFiscalYearStart['d'] = '0' . $newFiscalYearStart['d'];
5561 }
5562 $config->fiscalYearStart = $newFiscalYearStart;
5563 $monthDay = $config->fiscalYearStart['M'] . $config->fiscalYearStart['d'];
5564 }
5565 else {
5566 // First of January.
5567 $monthDay = '0101';
5568 }
5569 $startDate = "$year$monthDay";
5570 $endDate = "$nextYear$monthDay";
5571
5572 $whereClauses = [
5573 'contact_id' => 'IN (' . $contactIDs . ')',
5574 'is_test' => ' = 0',
5575 'receive_date' => ['>=' . $startDate, '< ' . $endDate],
5576 ];
5577 $havingClause = 'contribution_status_id = ' . (int) CRM_Core_PseudoConstant::getKey('CRM_Contribute_BAO_Contribution', 'contribution_status_id', 'Completed');
5578 CRM_Financial_BAO_FinancialType::addACLClausesToWhereClauses($whereClauses);
5579
5580 $clauses = [];
5581 foreach ($whereClauses as $key => $clause) {
5582 $clauses[] = 'b.' . $key . " " . implode(' AND b.' . $key, (array) $clause);
5583 }
5584 $whereClauseString = implode(' AND ', $clauses);
5585
5586 // See https://github.com/civicrm/civicrm-core/pull/13512 for discussion of how
5587 // this group by + having on contribution_status_id improves performance
5588 $query = "
5589 SELECT COUNT(*) as count,
5590 SUM(total_amount) as amount,
5591 AVG(total_amount) as average,
5592 currency
5593 FROM civicrm_contribution b
5594 WHERE " . $whereClauseString . "
5595 GROUP BY currency, contribution_status_id
5596 HAVING $havingClause
5597 ";
5598 return $query;
5599 }
5600
5601 /**
5602 * Assign Test Value.
5603 *
5604 * @param string $fieldName
5605 * @param array $fieldDef
5606 * @param int $counter
5607 */
5608 protected function assignTestValue($fieldName, &$fieldDef, $counter) {
5609 if ($fieldName == 'tax_amount') {
5610 $this->{$fieldName} = "0.00";
5611 }
5612 elseif ($fieldName == 'net_amount') {
5613 $this->{$fieldName} = "2.00";
5614 }
5615 elseif ($fieldName == 'total_amount') {
5616 $this->{$fieldName} = "3.00";
5617 }
5618 elseif ($fieldName == 'fee_amount') {
5619 $this->{$fieldName} = "1.00";
5620 }
5621 else {
5622 parent::assignTestValues($fieldName, $fieldDef, $counter);
5623 }
5624 }
5625
5626 /**
5627 * Check if contribution has participant/membership payment.
5628 *
5629 * @param int $contributionId
5630 * Contribution ID
5631 *
5632 * @return bool
5633 */
5634 public static function allowUpdateRevenueRecognitionDate($contributionId) {
5635 // get line item for contribution
5636 $lineItems = CRM_Price_BAO_LineItem::getLineItemsByContributionID($contributionId);
5637 // check if line item is for membership or participant
5638 foreach ($lineItems as $items) {
5639 if ($items['entity_table'] == 'civicrm_participant') {
5640 $flag = FALSE;
5641 break;
5642 }
5643 elseif ($items['entity_table'] == 'civicrm_membership') {
5644 $flag = FALSE;
5645 }
5646 else {
5647 $flag = TRUE;
5648 break;
5649 }
5650 }
5651 return $flag;
5652 }
5653
5654 /**
5655 * Create Accounts Receivable financial trxn entry for Completed Contribution.
5656 *
5657 * @param array $trxnParams
5658 * Financial trxn params
5659 * @param array $contributionParams
5660 * Contribution Params
5661 *
5662 * @return null
5663 */
5664 public static function recordAlwaysAccountsReceivable(&$trxnParams, $contributionParams) {
5665 if (!Civi::settings()->get('always_post_to_accounts_receivable')) {
5666 return NULL;
5667 }
5668 $statusId = $contributionParams['contribution']->contribution_status_id;
5669 $contributionStatuses = CRM_Contribute_PseudoConstant::contributionStatus(NULL, 'name');
5670 $contributionStatus = empty($statusId) ? NULL : $contributionStatuses[$statusId];
5671 $previousContributionStatus = empty($contributionParams['prevContribution']) ? NULL : $contributionStatuses[$contributionParams['prevContribution']->contribution_status_id];
5672 // Return if contribution status is not completed.
5673 if (!($contributionStatus == 'Completed' && (empty($previousContributionStatus)
5674 || (!empty($previousContributionStatus) && $previousContributionStatus == 'Pending'
5675 && $contributionParams['prevContribution']->is_pay_later == 0
5676 )))
5677 ) {
5678 return NULL;
5679 }
5680
5681 $params = $trxnParams;
5682 $financialTypeID = CRM_Utils_Array::value('financial_type_id', $contributionParams) ? $contributionParams['financial_type_id'] : $contributionParams['prevContribution']->financial_type_id;
5683 $arAccountId = CRM_Contribute_PseudoConstant::getRelationalFinancialAccount($financialTypeID, 'Accounts Receivable Account is');
5684 $params['to_financial_account_id'] = $arAccountId;
5685 $params['status_id'] = array_search('Pending', $contributionStatuses);
5686 $params['is_payment'] = FALSE;
5687 $trxn = CRM_Core_BAO_FinancialTrxn::create($params);
5688 self::$_trxnIDs[] = $trxn->id;
5689 $trxnParams['from_financial_account_id'] = $params['to_financial_account_id'];
5690 }
5691
5692 /**
5693 * Calculate financial item amount when contribution is updated.
5694 *
5695 * @param array $params
5696 * contribution params
5697 * @param array $amountParams
5698 *
5699 * @param string $context
5700 *
5701 * @return float
5702 */
5703 public static function calculateFinancialItemAmount($params, $amountParams, $context) {
5704 if (!empty($params['is_quick_config'])) {
5705 $amount = $amountParams['item_amount'];
5706 if (!$amount) {
5707 $amount = $params['total_amount'];
5708 if ($context === NULL) {
5709 $amount -= CRM_Utils_Array::value('tax_amount', $params, 0);
5710 }
5711 }
5712 }
5713 else {
5714 $amount = $amountParams['line_total'];
5715 if ($context == 'changedAmount') {
5716 $amount -= $amountParams['previous_line_total'];
5717 }
5718 $amount *= $amountParams['diff'];
5719 }
5720 return $amount;
5721 }
5722
5723 /**
5724 * Retrieve Sales Tax Financial Accounts.
5725 *
5726 *
5727 * @return array
5728 *
5729 */
5730 public static function getSalesTaxFinancialAccounts() {
5731 $query = "SELECT cfa.id FROM civicrm_entity_financial_account ce
5732 INNER JOIN civicrm_financial_account cfa ON ce.financial_account_id = cfa.id
5733 WHERE `entity_table` = 'civicrm_financial_type' AND cfa.is_tax = 1 AND ce.account_relationship = %1 GROUP BY cfa.id";
5734 $accountRel = key(CRM_Core_PseudoConstant::accountOptionValues('account_relationship', NULL, " AND v.name LIKE 'Sales Tax Account is' "));
5735 $queryParams = [1 => [$accountRel, 'Integer']];
5736 $dao = CRM_Core_DAO::executeQuery($query, $queryParams);
5737 $financialAccount = [];
5738 while ($dao->fetch()) {
5739 $financialAccount[$dao->id] = $dao->id;
5740 }
5741 return $financialAccount;
5742 }
5743
5744 /**
5745 * Create tax entry in civicrm_entity_financial_trxn table.
5746 *
5747 * @param array $entityParams
5748 *
5749 * @param array $eftParams
5750 *
5751 * @throws \CiviCRM_API3_Exception
5752 */
5753 public static function createProportionalEntry($entityParams, $eftParams) {
5754 $paid = 0;
5755 if ($entityParams['contribution_total_amount'] != 0) {
5756 $paid = $entityParams['line_item_amount'] * ($entityParams['trxn_total_amount'] / $entityParams['contribution_total_amount']);
5757 }
5758 // Record Entity Financial Trxn; CRM-20145
5759 $eftParams['amount'] = CRM_Contribute_BAO_Contribution_Utils::formatAmount($paid);
5760 civicrm_api3('EntityFinancialTrxn', 'create', $eftParams);
5761 }
5762
5763 /**
5764 * Create array of last financial item id's.
5765 *
5766 * @param int $contributionId
5767 *
5768 * @return array
5769 */
5770 public static function getLastFinancialItemIds($contributionId) {
5771 $sql = "SELECT fi.id, li.price_field_value_id, li.tax_amount, fi.financial_account_id
5772 FROM civicrm_financial_item fi
5773 INNER JOIN civicrm_line_item li ON li.id = fi.entity_id and fi.entity_table = 'civicrm_line_item'
5774 WHERE li.contribution_id = %1";
5775 $dao = CRM_Core_DAO::executeQuery($sql, [
5776 1 => [
5777 $contributionId,
5778 'Integer',
5779 ],
5780 ]);
5781 $ftIds = $taxItems = [];
5782 $salesTaxFinancialAccount = self::getSalesTaxFinancialAccounts();
5783 while ($dao->fetch()) {
5784 /* if sales tax item*/
5785 if (in_array($dao->financial_account_id, $salesTaxFinancialAccount)) {
5786 $taxItems[$dao->price_field_value_id] = [
5787 'financial_item_id' => $dao->id,
5788 'amount' => $dao->tax_amount,
5789 ];
5790 }
5791 else {
5792 $ftIds[$dao->price_field_value_id] = $dao->id;
5793 }
5794 }
5795 return [$ftIds, $taxItems];
5796 }
5797
5798 /**
5799 * Create proportional entries in civicrm_entity_financial_trxn.
5800 *
5801 * @param array $entityParams
5802 *
5803 * @param array $lineItems
5804 *
5805 * @param array $ftIds
5806 *
5807 * @param array $taxItems
5808 *
5809 * @throws \CiviCRM_API3_Exception
5810 */
5811 public static function createProportionalFinancialEntries($entityParams, $lineItems, $ftIds, $taxItems) {
5812 $eftParams = [
5813 'entity_table' => 'civicrm_financial_item',
5814 'financial_trxn_id' => $entityParams['trxn_id'],
5815 ];
5816 foreach ($lineItems as $key => $value) {
5817 if ($value['qty'] == 0) {
5818 continue;
5819 }
5820 $eftParams['entity_id'] = $ftIds[$value['price_field_value_id']];
5821 $entityParams['line_item_amount'] = $value['line_total'];
5822 self::createProportionalEntry($entityParams, $eftParams);
5823 if (array_key_exists($value['price_field_value_id'], $taxItems)) {
5824 $entityParams['line_item_amount'] = $taxItems[$value['price_field_value_id']]['amount'];
5825 $eftParams['entity_id'] = $taxItems[$value['price_field_value_id']]['financial_item_id'];
5826 self::createProportionalEntry($entityParams, $eftParams);
5827 }
5828 }
5829 }
5830
5831 /**
5832 * Load entities related to the contribution into $this->_relatedObjects.
5833 *
5834 * @param array $ids
5835 *
5836 * @throws \CRM_Core_Exception
5837 */
5838 protected function loadRelatedEntitiesByID($ids) {
5839 $entities = [
5840 'contact' => 'CRM_Contact_BAO_Contact',
5841 'contributionRecur' => 'CRM_Contribute_BAO_ContributionRecur',
5842 'contributionType' => 'CRM_Financial_BAO_FinancialType',
5843 'financialType' => 'CRM_Financial_BAO_FinancialType',
5844 'contributionPage' => 'CRM_Contribute_BAO_ContributionPage',
5845 ];
5846 foreach ($entities as $entity => $bao) {
5847 if (!empty($ids[$entity])) {
5848 $this->_relatedObjects[$entity] = new $bao();
5849 $this->_relatedObjects[$entity]->id = $ids[$entity];
5850 if (!$this->_relatedObjects[$entity]->find(TRUE)) {
5851 throw new CRM_Core_Exception($entity . ' could not be loaded');
5852 }
5853 }
5854 }
5855 }
5856
5857 /**
5858 * Should an email receipt be sent for this contribution when complete.
5859 *
5860 * @param array $input
5861 *
5862 * @return mixed
5863 */
5864 protected function isEmailReceipt($input) {
5865 if (isset($input['is_email_receipt'])) {
5866 return $input['is_email_receipt'];
5867 }
5868 if (!empty($this->_relatedObjects['contribution_page_id'])) {
5869 return $this->_relatedObjects['contribution_page_id']->is_email_receipt;
5870 }
5871 return TRUE;
5872 }
5873
5874 /**
5875 * Function to replace contribution tokens.
5876 *
5877 * @param array $contributionIds
5878 *
5879 * @param string $subject
5880 *
5881 * @param array $subjectToken
5882 *
5883 * @param string $text
5884 *
5885 * @param string $html
5886 *
5887 * @param array $messageToken
5888 *
5889 * @param bool $escapeSmarty
5890 *
5891 * @return array
5892 * @throws \CiviCRM_API3_Exception
5893 */
5894 public static function replaceContributionTokens(
5895 $contributionIds,
5896 $subject,
5897 $subjectToken,
5898 $text,
5899 $html,
5900 $messageToken,
5901 $escapeSmarty
5902 ) {
5903 if (empty($contributionIds)) {
5904 return [];
5905 }
5906 $contributionDetails = [];
5907 foreach ($contributionIds as $id) {
5908 $result = civicrm_api3('Contribution', 'get', ['id' => $id]);
5909 $contributionDetails[$result['values'][$result['id']]['contact_id']]['subject'] = CRM_Utils_Token::replaceContributionTokens($subject, $result, FALSE, $subjectToken, FALSE, $escapeSmarty);
5910 $contributionDetails[$result['values'][$result['id']]['contact_id']]['text'] = CRM_Utils_Token::replaceContributionTokens($text, $result, FALSE, $messageToken, FALSE, $escapeSmarty);
5911 $contributionDetails[$result['values'][$result['id']]['contact_id']]['html'] = CRM_Utils_Token::replaceContributionTokens($html, $result, FALSE, $messageToken, FALSE, $escapeSmarty);
5912 }
5913 return $contributionDetails;
5914 }
5915
5916 /**
5917 * Get invoice_number for contribution.
5918 *
5919 * @param int $contributionID
5920 *
5921 * @return string
5922 */
5923 public static function getInvoiceNumber($contributionID) {
5924 if ($invoicePrefix = self::checkContributeSettings('invoice_prefix', TRUE)) {
5925 return $invoicePrefix . $contributionID;
5926 }
5927
5928 return NULL;
5929 }
5930
5931 }