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