Merge pull request #19505 from mattwire/remotememrelated
[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\ContributionPage;
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 $contributionPageID
1262 * @param int $recurringContributionID
1263 *
1264 * @return bool
1265 * @throws \API_Exception
1266 * @throws \Civi\API\Exception\UnauthorizedException
1267 */
1268 protected static function isEmailReceipt(array $input, $contributionPageID, $recurringContributionID): bool {
1269 if (isset($input['is_email_receipt'])) {
1270 return (bool) $input['is_email_receipt'];
1271 }
1272 if ($recurringContributionID) {
1273 //CRM-13273 - is_email_receipt setting on recurring contribution should take precedence over contribution page setting
1274 // but CRM-16124 if $input['is_email_receipt'] is set then that should not be overridden.
1275 // 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
1276 // Instance that had the table added via an upgrade in 4.1
1277 // see also https://github.com/civicrm/civicrm-svn/commit/7f39befd60bc735408d7866b02b3ac7fff1d4eea#diff-9ad8e290180451a2d6eacbd3d1ca7966R354
1278 // https://lab.civicrm.org/dev/core/issues/1245
1279 return (bool) ContributionRecur::get(FALSE)->addWhere('id', '=', $recurringContributionID)->addSelect('is_email_receipt')->execute()->first()['is_email_receipt'];
1280 }
1281 if ($contributionPageID) {
1282 return (bool) ContributionPage::get(FALSE)->addWhere('id', '=', $contributionPageID)->addSelect('is_email_receipt')->execute()->first()['is_email_receipt'];
1283 }
1284 // This would be the case for backoffice (where is_email_receipt is not passed in) or events, where Event::sendMail will filter
1285 // again anyway.
1286 return TRUE;
1287 }
1288
1289 /**
1290 * Disconnect pledge payments from cancelled or failed contributions.
1291 *
1292 * If the contribution has been cancelled or has failed check to
1293 * see if it is linked to a pledge and unlink it.
1294 *
1295 * @param int $pledgePaymentID
1296 * @param string $contributionStatus
1297 *
1298 * @throws \API_Exception
1299 * @throws \Civi\API\Exception\UnauthorizedException
1300 */
1301 protected static function disconnectPledgePaymentsIfCancelled(int $pledgePaymentID, $contributionStatus): void {
1302 if (!in_array($contributionStatus, ['Failed', 'Cancelled'], TRUE)) {
1303 return;
1304 }
1305 // Check first since just doing an update could be locking under load.
1306 $pledgePayment = PledgePayment::get(FALSE)
1307 ->addWhere('contribution_id', '=', $pledgePaymentID)
1308 ->setSelect(['id', 'pledge_id', 'scheduled_date', 'scheduled_amount'])
1309 ->execute()
1310 ->first();
1311 if (!empty($pledgePayment)) {
1312 PledgePayment::update(FALSE)->setValues([
1313 'contribution_id' => NULL,
1314 'actual_amount' => NULL,
1315 'status_id:name' => 'Pending',
1316 // We need to set these fields for now because the PledgePayment::create
1317 // function doesn't handled updates well at the moment. Test cover
1318 // in testCancelOrderWithPledge.
1319 'scheduled_date' => $pledgePayment['scheduled_date'],
1320 'installment_amount' => $pledgePayment['scheduled_amount'],
1321 'installments' => 1,
1322 'pledge_id' => $pledgePayment['pledge_id'],
1323 ])->addWhere('id', '=', $pledgePayment['id'])->execute();
1324 }
1325 }
1326
1327 /**
1328 * @inheritDoc
1329 */
1330 public function addSelectWhereClause() {
1331 $whereClauses = parent::addSelectWhereClause();
1332 if ($whereClauses !== []) {
1333 // In this case permisssions have been applied & we assume the
1334 // financialaclreport is applying these
1335 // https://github.com/JMAConsulting/biz.jmaconsulting.financialaclreport/blob/master/financialaclreport.php#L107
1336 return $whereClauses;
1337 }
1338
1339 if (!CRM_Financial_BAO_FinancialType::isACLFinancialTypeStatus()) {
1340 return $whereClauses;
1341 }
1342 $types = CRM_Financial_BAO_FinancialType::getAllEnabledAvailableFinancialTypes();
1343 if (empty($types)) {
1344 $whereClauses['financial_type_id'] = 'IN (0)';
1345 }
1346 else {
1347 $whereClauses['financial_type_id'] = [
1348 'IN (' . implode(',', array_keys($types)) . ')',
1349 ];
1350 }
1351 return $whereClauses;
1352 }
1353
1354 /**
1355 * @param null $status
1356 * @param null $startDate
1357 * @param null $endDate
1358 *
1359 * @return array|null
1360 */
1361 public static function getTotalAmountAndCount($status = NULL, $startDate = NULL, $endDate = NULL) {
1362 $where = [];
1363 switch ($status) {
1364 case 'Valid':
1365 $where[] = 'contribution_status_id = 1';
1366 break;
1367
1368 case 'Cancelled':
1369 $where[] = 'contribution_status_id = 3';
1370 break;
1371 }
1372
1373 if ($startDate) {
1374 $where[] = "receive_date >= '" . CRM_Utils_Type::escape($startDate, 'Timestamp') . "'";
1375 }
1376 if ($endDate) {
1377 $where[] = "receive_date <= '" . CRM_Utils_Type::escape($endDate, 'Timestamp') . "'";
1378 }
1379 $financialTypeACLJoin = '';
1380 if (CRM_Financial_BAO_FinancialType::isACLFinancialTypeStatus()) {
1381 $financialTypeACLJoin = " LEFT JOIN civicrm_line_item i ON (i.contribution_id = c.id AND i.entity_table = 'civicrm_contribution') ";
1382 $financialTypes = CRM_Contribute_PseudoConstant::financialType();
1383 CRM_Financial_BAO_FinancialType::getAvailableFinancialTypes($financialTypes);
1384 if ($financialTypes) {
1385 $where[] = "c.financial_type_id IN (" . implode(',', array_keys($financialTypes)) . ")";
1386 $where[] = "i.financial_type_id IN (" . implode(',', array_keys($financialTypes)) . ")";
1387 }
1388 else {
1389 $where[] = "c.financial_type_id IN (0)";
1390 }
1391 }
1392
1393 $whereCond = implode(' AND ', $where);
1394
1395 $query = "
1396 SELECT sum( total_amount ) as total_amount,
1397 count( c.id ) as total_count,
1398 currency
1399 FROM civicrm_contribution c
1400 INNER JOIN civicrm_contact contact ON ( contact.id = c.contact_id )
1401 $financialTypeACLJoin
1402 WHERE $whereCond
1403 AND ( is_test = 0 OR is_test IS NULL )
1404 AND contact.is_deleted = 0
1405 GROUP BY currency
1406 ";
1407
1408 $dao = CRM_Core_DAO::executeQuery($query);
1409 $amount = [];
1410 $count = 0;
1411 while ($dao->fetch()) {
1412 $count += $dao->total_count;
1413 $amount[] = CRM_Utils_Money::format($dao->total_amount, $dao->currency);
1414 }
1415 if ($count) {
1416 return [
1417 'amount' => implode(', ', $amount),
1418 'count' => $count,
1419 ];
1420 }
1421 return NULL;
1422 }
1423
1424 /**
1425 * Delete the indirect records associated with this contribution first.
1426 *
1427 * @param int $id
1428 *
1429 * @return mixed|null
1430 * $results no of deleted Contribution on success, false otherwise
1431 */
1432 public static function deleteContribution($id) {
1433 CRM_Utils_Hook::pre('delete', 'Contribution', $id);
1434
1435 $transaction = new CRM_Core_Transaction();
1436
1437 $results = NULL;
1438 //delete activity record
1439 $params = [
1440 'source_record_id' => $id,
1441 // activity type id for contribution
1442 'activity_type_id' => 6,
1443 ];
1444
1445 CRM_Activity_BAO_Activity::deleteActivity($params);
1446
1447 //delete billing address if exists for this contribution.
1448 self::deleteAddress($id);
1449
1450 //update pledge and pledge payment, CRM-3961
1451 CRM_Pledge_BAO_PledgePayment::resetPledgePayment($id);
1452
1453 // remove entry from civicrm_price_set_entity, CRM-5095
1454 if (CRM_Price_BAO_PriceSet::getFor('civicrm_contribution', $id)) {
1455 CRM_Price_BAO_PriceSet::removeFrom('civicrm_contribution', $id);
1456 }
1457 // cleanup line items.
1458 $participantId = CRM_Core_DAO::getFieldValue('CRM_Event_DAO_ParticipantPayment', $id, 'participant_id', 'contribution_id');
1459
1460 // delete any related entity_financial_trxn, financial_trxn and financial_item records.
1461 CRM_Core_BAO_FinancialTrxn::deleteFinancialTrxn($id);
1462
1463 if ($participantId) {
1464 CRM_Price_BAO_LineItem::deleteLineItems($participantId, 'civicrm_participant');
1465 }
1466 else {
1467 CRM_Price_BAO_LineItem::deleteLineItems($id, 'civicrm_contribution');
1468 }
1469
1470 //delete note.
1471 $note = CRM_Core_BAO_Note::getNote($id, 'civicrm_contribution');
1472 $noteId = key($note);
1473 if ($noteId) {
1474 CRM_Core_BAO_Note::del($noteId, FALSE);
1475 }
1476
1477 $dao = new CRM_Contribute_DAO_Contribution();
1478 $dao->id = $id;
1479
1480 $results = $dao->delete();
1481
1482 $transaction->commit();
1483
1484 CRM_Utils_Hook::post('delete', 'Contribution', $dao->id, $dao);
1485
1486 // delete the recently created Contribution
1487 $contributionRecent = [
1488 'id' => $id,
1489 'type' => 'Contribution',
1490 ];
1491 CRM_Utils_Recent::del($contributionRecent);
1492
1493 return $results;
1494 }
1495
1496 /**
1497 * React to a financial transaction (payment) failure.
1498 *
1499 * Prior to CRM-16417 these were simply removed from the database but it has been agreed that seeing attempted
1500 * payments is important for forensic and outreach reasons.
1501 *
1502 * @param int $contributionID
1503 * @param int $contactID
1504 * @param string $message
1505 *
1506 * @throws \CiviCRM_API3_Exception
1507 */
1508 public static function failPayment($contributionID, $contactID, $message) {
1509 civicrm_api3('activity', 'create', [
1510 'activity_type_id' => 'Failed Payment',
1511 'details' => $message,
1512 'subject' => ts('Payment failed at payment processor'),
1513 'source_record_id' => $contributionID,
1514 'source_contact_id' => CRM_Core_Session::getLoggedInContactID() ? CRM_Core_Session::getLoggedInContactID() : $contactID,
1515 ]);
1516
1517 // CRM-20336 Make sure that the contribution status is Failed, not Pending.
1518 civicrm_api3('contribution', 'create', [
1519 'id' => $contributionID,
1520 'contribution_status_id' => 'Failed',
1521 ]);
1522 }
1523
1524 /**
1525 * Check if there is a contribution with the same trxn_id or invoice_id.
1526 *
1527 * @param array $input
1528 * An assoc array of name/value pairs.
1529 * @param array $duplicates
1530 * (reference) store ids of duplicate contribs.
1531 * @param int $id
1532 *
1533 * @return bool
1534 * true if duplicate, false otherwise
1535 */
1536 public static function checkDuplicate($input, &$duplicates, $id = NULL) {
1537 if (!$id) {
1538 $id = $input['id'] ?? NULL;
1539 }
1540 $trxn_id = $input['trxn_id'] ?? NULL;
1541 $invoice_id = $input['invoice_id'] ?? NULL;
1542
1543 $clause = [];
1544 $input = [];
1545
1546 if ($trxn_id) {
1547 $clause[] = "trxn_id = %1";
1548 $input[1] = [$trxn_id, 'String'];
1549 }
1550
1551 if ($invoice_id) {
1552 $clause[] = "invoice_id = %2";
1553 $input[2] = [$invoice_id, 'String'];
1554 }
1555
1556 if (empty($clause)) {
1557 return FALSE;
1558 }
1559
1560 $clause = implode(' OR ', $clause);
1561 if ($id) {
1562 $clause = "( $clause ) AND id != %3";
1563 $input[3] = [$id, 'Integer'];
1564 }
1565
1566 $query = "SELECT id FROM civicrm_contribution WHERE $clause";
1567 $dao = CRM_Core_DAO::executeQuery($query, $input);
1568 $result = FALSE;
1569 while ($dao->fetch()) {
1570 $duplicates[] = $dao->id;
1571 $result = TRUE;
1572 }
1573 return $result;
1574 }
1575
1576 /**
1577 * Takes an associative array and creates a contribution_product object.
1578 *
1579 * the function extract all the params it needs to initialize the create a
1580 * contribution_product object. the params array could contain additional unused name/value
1581 * pairs
1582 *
1583 * @param array $params
1584 * (reference) an assoc array of name/value pairs.
1585 *
1586 * @return CRM_Contribute_DAO_ContributionProduct
1587 */
1588 public static function addPremium(&$params) {
1589 $contributionProduct = new CRM_Contribute_DAO_ContributionProduct();
1590 $contributionProduct->copyValues($params);
1591 return $contributionProduct->save();
1592 }
1593
1594 /**
1595 * Get list of contribution fields for profile.
1596 * For now we only allow custom contribution fields to be in
1597 * profile
1598 *
1599 * @param bool $addExtraFields
1600 * True if special fields needs to be added.
1601 *
1602 * @return array
1603 * the list of contribution fields
1604 */
1605 public static function getContributionFields($addExtraFields = TRUE) {
1606 $contributionFields = CRM_Contribute_DAO_Contribution::export();
1607 // @todo remove this - this line was added because payment_instrument_id was not
1608 // set to exportable - but now it is.
1609 $contributionFields = array_merge($contributionFields, CRM_Core_OptionValue::getFields($mode = 'contribute'));
1610
1611 if ($addExtraFields) {
1612 $contributionFields = array_merge($contributionFields, self::getSpecialContributionFields());
1613 }
1614
1615 $contributionFields = array_merge($contributionFields, CRM_Financial_DAO_FinancialType::export());
1616
1617 foreach ($contributionFields as $key => $var) {
1618 if ($key == 'contribution_contact_id') {
1619 continue;
1620 }
1621 elseif ($key == 'contribution_campaign_id') {
1622 $var['title'] = ts('Campaign');
1623 }
1624 $fields[$key] = $var;
1625 }
1626
1627 $fields = array_merge($fields, CRM_Core_BAO_CustomField::getFieldsForImport('Contribution'));
1628 return $fields;
1629 }
1630
1631 /**
1632 * Add extra fields specific to contribution.
1633 */
1634 public static function getSpecialContributionFields() {
1635 $extraFields = [
1636 'contribution_soft_credit_name' => [
1637 'name' => 'contribution_soft_credit_name',
1638 'title' => ts('Soft Credit Name'),
1639 'headerPattern' => '/^soft_credit_name$/i',
1640 'where' => 'civicrm_contact_d.display_name',
1641 ],
1642 'contribution_soft_credit_email' => [
1643 'name' => 'contribution_soft_credit_email',
1644 'title' => ts('Soft Credit Email'),
1645 'headerPattern' => '/^soft_credit_email$/i',
1646 'where' => 'soft_email.email',
1647 ],
1648 'contribution_soft_credit_phone' => [
1649 'name' => 'contribution_soft_credit_phone',
1650 'title' => ts('Soft Credit Phone'),
1651 'headerPattern' => '/^soft_credit_phone$/i',
1652 'where' => 'soft_phone.phone',
1653 ],
1654 'contribution_soft_credit_contact_id' => [
1655 'name' => 'contribution_soft_credit_contact_id',
1656 'title' => ts('Soft Credit Contact ID'),
1657 'headerPattern' => '/^soft_credit_contact_id$/i',
1658 'where' => 'civicrm_contribution_soft.contact_id',
1659 ],
1660 'contribution_pcp_title' => [
1661 'name' => 'contribution_pcp_title',
1662 'title' => ts('Personal Campaign Page Title'),
1663 'headerPattern' => '/^contribution_pcp_title$/i',
1664 'where' => 'contribution_pcp.title',
1665 ],
1666 ];
1667
1668 return $extraFields;
1669 }
1670
1671 /**
1672 * @param int $pageID
1673 *
1674 * @return array
1675 */
1676 public static function getCurrentandGoalAmount($pageID) {
1677 $query = "
1678 SELECT p.goal_amount as goal, sum( c.total_amount ) as total
1679 FROM civicrm_contribution_page p,
1680 civicrm_contribution c
1681 WHERE p.id = c.contribution_page_id
1682 AND p.id = %1
1683 AND c.cancel_date is null
1684 GROUP BY p.id
1685 ";
1686
1687 $config = CRM_Core_Config::singleton();
1688 $params = [1 => [$pageID, 'Integer']];
1689 $dao = CRM_Core_DAO::executeQuery($query, $params);
1690
1691 if ($dao->fetch()) {
1692 return [$dao->goal, $dao->total];
1693 }
1694 else {
1695 return [NULL, NULL];
1696 }
1697 }
1698
1699 /**
1700 * Get list of contributions which credit the passed in contact ID.
1701 *
1702 * The returned array provides details about the original contribution & donor.
1703 *
1704 * @param int $honorId
1705 * In Honor of Contact ID.
1706 *
1707 * @return array
1708 * list of contribution fields
1709 * @todo - this is a confusing function called from one place. It has a test. It would be
1710 * nice to deprecate it.
1711 *
1712 */
1713 public static function getHonorContacts($honorId) {
1714 $params = [];
1715 $honorDAO = new CRM_Contribute_DAO_ContributionSoft();
1716 $honorDAO->contact_id = $honorId;
1717 $honorDAO->find();
1718
1719 $type = CRM_Contribute_PseudoConstant::financialType();
1720
1721 while ($honorDAO->fetch()) {
1722 $contributionDAO = new CRM_Contribute_DAO_Contribution();
1723 $contributionDAO->id = $honorDAO->contribution_id;
1724
1725 if ($contributionDAO->find(TRUE)) {
1726 $params[$contributionDAO->id]['honor_type'] = CRM_Core_PseudoConstant::getLabel('CRM_Contribute_BAO_ContributionSoft', 'soft_credit_type_id', $honorDAO->soft_credit_type_id);
1727 $params[$contributionDAO->id]['honorId'] = $contributionDAO->contact_id;
1728 $params[$contributionDAO->id]['display_name'] = CRM_Core_DAO::getFieldValue('CRM_Contact_DAO_Contact', $contributionDAO->contact_id, 'display_name');
1729 $params[$contributionDAO->id]['type'] = $type[$contributionDAO->financial_type_id];
1730 $params[$contributionDAO->id]['type_id'] = $contributionDAO->financial_type_id;
1731 $params[$contributionDAO->id]['amount'] = CRM_Utils_Money::format($contributionDAO->total_amount, $contributionDAO->currency);
1732 $params[$contributionDAO->id]['source'] = $contributionDAO->source;
1733 $params[$contributionDAO->id]['receive_date'] = $contributionDAO->receive_date;
1734 $params[$contributionDAO->id]['contribution_status'] = CRM_Contribute_PseudoConstant::contributionStatus($contributionDAO->contribution_status_id, 'label');
1735 }
1736 }
1737
1738 return $params;
1739 }
1740
1741 /**
1742 * Get the sort name of a contact for a particular contribution.
1743 *
1744 * @param int $id
1745 * Id of the contribution.
1746 *
1747 * @return null|string
1748 * sort name of the contact if found
1749 */
1750 public static function sortName($id) {
1751 $id = CRM_Utils_Type::escape($id, 'Integer');
1752
1753 $query = "
1754 SELECT civicrm_contact.sort_name
1755 FROM civicrm_contribution, civicrm_contact
1756 WHERE civicrm_contribution.contact_id = civicrm_contact.id
1757 AND civicrm_contribution.id = {$id}
1758 ";
1759 return CRM_Core_DAO::singleValueQuery($query);
1760 }
1761
1762 /**
1763 * Generate summary of amount received in the current fiscal year to date from the contact or contacts.
1764 *
1765 * @param int|array $contactIDs
1766 *
1767 * @return array
1768 */
1769 public static function annual($contactIDs) {
1770 if (!is_array($contactIDs)) {
1771 // In practice I can't fine any evidence that this function is ever called with
1772 // anything other than a single contact id, but left like this due to .... fear.
1773 $contactIDs = explode(',', $contactIDs);
1774 }
1775
1776 $query = self::getAnnualQuery($contactIDs);
1777 $dao = CRM_Core_DAO::executeQuery($query);
1778 $count = 0;
1779 $amount = $average = [];
1780 while ($dao->fetch()) {
1781 if ($dao->count > 0 && $dao->amount > 0) {
1782 $count += $dao->count;
1783 $amount[] = CRM_Utils_Money::format($dao->amount, $dao->currency);
1784 $average[] = CRM_Utils_Money::format($dao->average, $dao->currency);
1785 }
1786 }
1787 if ($count > 0) {
1788 return [
1789 $count,
1790 implode(',&nbsp;', $amount),
1791 implode(',&nbsp;', $average),
1792 ];
1793 }
1794 return [0, 0, 0];
1795 }
1796
1797 /**
1798 * Check if there is a contribution with the params passed in.
1799 *
1800 * Used for trxn_id,invoice_id and contribution_id
1801 *
1802 * @param array $params
1803 * An assoc array of name/value pairs.
1804 *
1805 * @return array
1806 * contribution id if success else NULL
1807 */
1808 public static function checkDuplicateIds($params) {
1809 $dao = new CRM_Contribute_DAO_Contribution();
1810
1811 $clause = [];
1812 $input = [];
1813 foreach ($params as $k => $v) {
1814 if ($v) {
1815 $clause[] = "$k = '$v'";
1816 }
1817 }
1818 $clause = implode(' AND ', $clause);
1819 $query = "SELECT id FROM civicrm_contribution WHERE $clause";
1820 $dao = CRM_Core_DAO::executeQuery($query, $input);
1821
1822 while ($dao->fetch()) {
1823 $result = $dao->id;
1824 return $result;
1825 }
1826 return NULL;
1827 }
1828
1829 /**
1830 * Get the contribution details for component export.
1831 *
1832 * @param int $exportMode
1833 * Export mode.
1834 * @param array $componentIds
1835 * Component ids.
1836 *
1837 * @return array
1838 * associated array
1839 */
1840 public static function getContributionDetails($exportMode, $componentIds) {
1841 $paymentDetails = [];
1842 $componentClause = ' IN ( ' . implode(',', $componentIds) . ' ) ';
1843
1844 if ($exportMode == CRM_Export_Form_Select::EVENT_EXPORT) {
1845 $componentSelect = " civicrm_participant_payment.participant_id id";
1846 $additionalClause = "
1847 INNER JOIN civicrm_participant_payment ON (civicrm_contribution.id = civicrm_participant_payment.contribution_id
1848 AND civicrm_participant_payment.participant_id {$componentClause} )
1849 ";
1850 }
1851 elseif ($exportMode == CRM_Export_Form_Select::MEMBER_EXPORT) {
1852 $componentSelect = " civicrm_membership_payment.membership_id id";
1853 $additionalClause = "
1854 INNER JOIN civicrm_membership_payment ON (civicrm_contribution.id = civicrm_membership_payment.contribution_id
1855 AND civicrm_membership_payment.membership_id {$componentClause} )
1856 ";
1857 }
1858 elseif ($exportMode == CRM_Export_Form_Select::PLEDGE_EXPORT) {
1859 $componentSelect = " civicrm_pledge_payment.id id";
1860 $additionalClause = "
1861 INNER JOIN civicrm_pledge_payment ON (civicrm_contribution.id = civicrm_pledge_payment.contribution_id
1862 AND civicrm_pledge_payment.pledge_id {$componentClause} )
1863 ";
1864 }
1865
1866 $query = " SELECT total_amount, contribution_status.name as status_id, contribution_status.label as status, payment_instrument.name as payment_instrument, receive_date,
1867 trxn_id, {$componentSelect}
1868 FROM civicrm_contribution
1869 LEFT JOIN civicrm_option_group option_group_payment_instrument ON ( option_group_payment_instrument.name = 'payment_instrument')
1870 LEFT JOIN civicrm_option_value payment_instrument ON (civicrm_contribution.payment_instrument_id = payment_instrument.value
1871 AND option_group_payment_instrument.id = payment_instrument.option_group_id )
1872 LEFT JOIN civicrm_option_group option_group_contribution_status ON (option_group_contribution_status.name = 'contribution_status')
1873 LEFT JOIN civicrm_option_value contribution_status ON (civicrm_contribution.contribution_status_id = contribution_status.value
1874 AND option_group_contribution_status.id = contribution_status.option_group_id )
1875 {$additionalClause}
1876 ";
1877
1878 $dao = CRM_Core_DAO::executeQuery($query);
1879
1880 while ($dao->fetch()) {
1881 $paymentDetails[$dao->id] = [
1882 'total_amount' => $dao->total_amount,
1883 'contribution_status' => $dao->status,
1884 'receive_date' => $dao->receive_date,
1885 'pay_instru' => $dao->payment_instrument,
1886 'trxn_id' => $dao->trxn_id,
1887 ];
1888 }
1889
1890 return $paymentDetails;
1891 }
1892
1893 /**
1894 * Create address associated with contribution record.
1895 *
1896 * As long as there is one or more billing field in the parameters we will create the address.
1897 *
1898 * (historically the decision to create or not was based on the payment 'type' but these lines are greyer than once
1899 * thought).
1900 *
1901 * @param array $params
1902 * @param int $billingLocationTypeID
1903 *
1904 * @return int
1905 * address id
1906 */
1907 public static function createAddress($params, $billingLocationTypeID) {
1908 list($hasBillingField, $addressParams) = self::getBillingAddressParams($params, $billingLocationTypeID);
1909 if ($hasBillingField) {
1910 $address = CRM_Core_BAO_Address::add($addressParams, FALSE);
1911 return $address->id;
1912 }
1913 return NULL;
1914
1915 }
1916
1917 /**
1918 * Delete billing address record related contribution.
1919 *
1920 * @param int $contributionId
1921 * @param int $contactId
1922 */
1923 public static function deleteAddress($contributionId = NULL, $contactId = NULL) {
1924 $clauses = [];
1925 $contactJoin = NULL;
1926
1927 if ($contributionId) {
1928 $clauses[] = "cc.id = {$contributionId}";
1929 }
1930
1931 if ($contactId) {
1932 $clauses[] = "cco.id = {$contactId}";
1933 $contactJoin = "INNER JOIN civicrm_contact cco ON cc.contact_id = cco.id";
1934 }
1935
1936 if (empty($clauses)) {
1937 throw new CRM_Core_Exception('No Where clauses defined when deleting address');
1938 }
1939
1940 $condition = implode(' OR ', $clauses);
1941
1942 $query = "
1943 SELECT ca.id
1944 FROM civicrm_address ca
1945 INNER JOIN civicrm_contribution cc ON cc.address_id = ca.id
1946 $contactJoin
1947 WHERE $condition
1948 ";
1949 $dao = CRM_Core_DAO::executeQuery($query);
1950
1951 while ($dao->fetch()) {
1952 $params = ['id' => $dao->id];
1953 CRM_Core_BAO_Block::blockDelete('Address', $params);
1954 }
1955 }
1956
1957 /**
1958 * This function check online pending contribution associated w/
1959 * Online Event Registration or Online Membership signup.
1960 *
1961 * @param int $componentId
1962 * Participant/membership id.
1963 * @param string $componentName
1964 * Event/Membership.
1965 *
1966 * @return int
1967 * pending contribution id.
1968 */
1969 public static function checkOnlinePendingContribution($componentId, $componentName) {
1970 $contributionId = NULL;
1971 if (!$componentId ||
1972 !in_array($componentName, ['Event', 'Membership'])
1973 ) {
1974 return $contributionId;
1975 }
1976
1977 if ($componentName == 'Event') {
1978 $idName = 'participant_id';
1979 $componentTable = 'civicrm_participant';
1980 $paymentTable = 'civicrm_participant_payment';
1981 $source = ts('Online Event Registration');
1982 }
1983
1984 if ($componentName == 'Membership') {
1985 $idName = 'membership_id';
1986 $componentTable = 'civicrm_membership';
1987 $paymentTable = 'civicrm_membership_payment';
1988 $source = ts('Online Contribution');
1989 }
1990
1991 $pendingStatusId = array_search('Pending', CRM_Contribute_PseudoConstant::contributionStatus(NULL, 'name'));
1992
1993 $query = "
1994 SELECT component.id as {$idName},
1995 componentPayment.contribution_id as contribution_id,
1996 contribution.source source,
1997 contribution.contribution_status_id as contribution_status_id,
1998 contribution.is_pay_later as is_pay_later
1999 FROM $componentTable component
2000 LEFT JOIN $paymentTable componentPayment ON ( componentPayment.{$idName} = component.id )
2001 LEFT JOIN civicrm_contribution contribution ON ( componentPayment.contribution_id = contribution.id )
2002 WHERE component.id = {$componentId}";
2003
2004 $dao = CRM_Core_DAO::executeQuery($query);
2005
2006 while ($dao->fetch()) {
2007 if ($dao->contribution_id &&
2008 $dao->is_pay_later &&
2009 $dao->contribution_status_id == $pendingStatusId &&
2010 strpos($dao->source, $source) !== FALSE
2011 ) {
2012 $contributionId = $dao->contribution_id;
2013 }
2014 }
2015
2016 return $contributionId;
2017 }
2018
2019 /**
2020 * Update contribution as well as related objects.
2021 *
2022 * This function by-passes hooks - to address this - don't use this function.
2023 *
2024 * @param array $params
2025 *
2026 * @throws CRM_Core_Exception
2027 * @throws \CiviCRM_API3_Exception
2028 * @deprecated
2029 *
2030 * Use api contribute.completetransaction
2031 * For failures use failPayment (preferably exposing by api in the process).
2032 *
2033 */
2034 public static function transitionComponents($params) {
2035 // @todo fix the one place that calls this function to use Payment.create
2036 // remove this.
2037 // get minimum required values.
2038 $contactId = $params['contact_id'] ?? NULL;
2039 $componentId = $params['component_id'] ?? NULL;
2040 $componentName = $params['componentName'] ?? NULL;
2041 $contributionId = $params['contribution_id'] ?? NULL;
2042 $contributionStatusId = $params['contribution_status_id'] ?? NULL;
2043
2044 // if we already processed contribution object pass previous status id.
2045 $previousContriStatusId = $params['previous_contribution_status_id'] ?? NULL;
2046
2047 $contributionStatuses = CRM_Contribute_PseudoConstant::contributionStatus(NULL, 'name');
2048
2049 // we process only ( Completed, Cancelled, or Failed ) contributions.
2050 if (!$contributionId ||
2051 !in_array($contributionStatusId, [
2052 array_search('Completed', $contributionStatuses),
2053 ])
2054 ) {
2055 return;
2056 }
2057
2058 if (!$componentName || !$componentId) {
2059 // get the related component details.
2060 $componentDetails = self::getComponentDetails($contributionId);
2061 }
2062 else {
2063 $componentDetails['contact_id'] = $contactId;
2064 $componentDetails['component'] = $componentName;
2065
2066 if ($componentName == 'event') {
2067 $componentDetails['participant'] = $componentId;
2068 }
2069 else {
2070 $componentDetails['membership'] = $componentId;
2071 }
2072 }
2073
2074 if (!empty($componentDetails['contact_id'])) {
2075 $componentDetails['contact_id'] = CRM_Core_DAO::getFieldValue('CRM_Contribute_DAO_Contribution',
2076 $contributionId,
2077 'contact_id'
2078 );
2079 }
2080
2081 // do check for required ids.
2082 if (empty($componentDetails['membership']) && empty($componentDetails['participant']) && empty($componentDetails['pledge_payment']) || empty($componentDetails['contact_id'])) {
2083 return;
2084 }
2085
2086 $input = $ids = [];
2087
2088 $input['component'] = $componentDetails['component'] ?? NULL;
2089 $ids['contribution'] = $contributionId;
2090 $ids['contact'] = $componentDetails['contact_id'] ?? NULL;
2091 $ids['membership'] = $componentDetails['membership'] ?? NULL;
2092 $ids['participant'] = $componentDetails['participant'] ?? NULL;
2093 $ids['event'] = $componentDetails['event'] ?? NULL;
2094 $ids['pledge_payment'] = $componentDetails['pledge_payment'] ?? NULL;
2095 $ids['contributionRecur'] = NULL;
2096 $ids['contributionPage'] = NULL;
2097
2098 $contribution = new CRM_Contribute_BAO_Contribution();
2099 $contribution->id = $ids['contribution'];
2100 $contribution->find();
2101
2102 $contribution->loadRelatedObjects($input, $ids);
2103
2104 $memberships = $contribution->_relatedObjects['membership'] ?? [];
2105 $participant = $contribution->_relatedObjects['participant'] ?? [];
2106 $pledgePayment = $contribution->_relatedObjects['pledge_payment'] ?? [];
2107
2108 $pledgeID = $oldStatus = NULL;
2109 $pledgePaymentIDs = [];
2110 if ($pledgePayment) {
2111 foreach ($pledgePayment as $key => $object) {
2112 $pledgePaymentIDs[] = $object->id;
2113 }
2114 $pledgeID = $pledgePayment[0]->pledge_id;
2115 }
2116
2117 $membershipStatuses = CRM_Member_PseudoConstant::membershipStatus();
2118
2119 if ($participant) {
2120 $participantStatuses = CRM_Event_PseudoConstant::participantStatus();
2121 $oldStatus = CRM_Core_DAO::getFieldValue('CRM_Event_DAO_Participant',
2122 $participant->id,
2123 'status_id'
2124 );
2125 }
2126 if ($contributionStatusId == array_search('Completed', $contributionStatuses)) {
2127
2128 // only pending contribution related object processed.
2129 if ($previousContriStatusId &&
2130 !in_array($contributionStatuses[$previousContriStatusId], [
2131 'Pending',
2132 'Partially paid',
2133 ])
2134 ) {
2135 // this is case when we already processed contribution object.
2136 return;
2137 }
2138 elseif (!$previousContriStatusId &&
2139 !in_array($contributionStatuses[$contribution->contribution_status_id], [
2140 'Pending',
2141 'Partially paid',
2142 ])
2143 ) {
2144 // this is case when we are going to process contribution object later.
2145 return;
2146 }
2147
2148 if (is_array($memberships)) {
2149 foreach ($memberships as $membership) {
2150 if ($membership) {
2151 $format = '%Y%m%d';
2152
2153 //CRM-4523
2154 $currentMembership = CRM_Member_BAO_Membership::getContactMembership($membership->contact_id,
2155 $membership->membership_type_id,
2156 $membership->is_test, $membership->id
2157 );
2158
2159 // CRM-8141 update the membership type with the value recorded in log when membership created/renewed
2160 // this picks up membership type changes during renewals
2161 $sql = "
2162 SELECT membership_type_id
2163 FROM civicrm_membership_log
2164 WHERE membership_id=$membership->id
2165 ORDER BY id DESC
2166 LIMIT 1;";
2167 $dao = CRM_Core_DAO::executeQuery($sql);
2168 if ($dao->fetch()) {
2169 if (!empty($dao->membership_type_id)) {
2170 $membership->membership_type_id = $dao->membership_type_id;
2171 $membership->save();
2172 }
2173 }
2174 // else fall back to using current membership type
2175 // Figure out number of terms
2176 $numterms = 1;
2177 $lineitems = CRM_Price_BAO_LineItem::getLineItemsByContributionID($contributionId);
2178 foreach ($lineitems as $lineitem) {
2179 if ($membership->membership_type_id == ($lineitem['membership_type_id'] ?? NULL)) {
2180 $numterms = $lineitem['membership_num_terms'] ?? NULL;
2181
2182 // in case membership_num_terms comes through as null or zero
2183 $numterms = $numterms >= 1 ? $numterms : 1;
2184 break;
2185 }
2186 }
2187
2188 // CRM-15735-to update the membership status as per the contribution receive date
2189 $joinDate = NULL;
2190 $oldStatus = $membership->status_id;
2191 if (!empty($params['receive_date'])) {
2192 $joinDate = $params['receive_date'];
2193 $status = CRM_Member_BAO_MembershipStatus::getMembershipStatusByDate($membership->start_date,
2194 $membership->end_date,
2195 $membership->join_date,
2196 $params['receive_date'],
2197 FALSE,
2198 $membership->membership_type_id,
2199 (array) $membership
2200 );
2201 $membership->status_id = CRM_Utils_Array::value('id', $status, $membership->status_id);
2202 $membership->save();
2203 }
2204
2205 if ($currentMembership) {
2206 CRM_Member_BAO_Membership::fixMembershipStatusBeforeRenew($currentMembership, NULL);
2207 $dates = CRM_Member_BAO_MembershipType::getRenewalDatesForMembershipType($membership->id, NULL, NULL, $numterms);
2208 $dates['join_date'] = CRM_Utils_Date::customFormat($currentMembership['join_date'], $format);
2209 }
2210 else {
2211 $dates = CRM_Member_BAO_MembershipType::getDatesForMembershipType($membership->membership_type_id, $joinDate, NULL, NULL, $numterms);
2212 }
2213
2214 //get the status for membership.
2215 $calcStatus = CRM_Member_BAO_MembershipStatus::getMembershipStatusByDate($dates['start_date'],
2216 $dates['end_date'],
2217 $dates['join_date'],
2218 'now',
2219 TRUE,
2220 $membership->membership_type_id,
2221 (array) $membership
2222 );
2223
2224 $formattedParams = [
2225 'status_id' => CRM_Utils_Array::value('id', $calcStatus,
2226 array_search('Current', $membershipStatuses)
2227 ),
2228 'join_date' => CRM_Utils_Date::customFormat($dates['join_date'], $format),
2229 'start_date' => CRM_Utils_Date::customFormat($dates['start_date'], $format),
2230 'end_date' => CRM_Utils_Date::customFormat($dates['end_date'], $format),
2231 ];
2232
2233 CRM_Utils_Hook::pre('edit', 'Membership', $membership->id, $formattedParams);
2234
2235 $membership->copyValues($formattedParams);
2236 $membership->save();
2237
2238 //updating the membership log
2239 $membershipLog = [];
2240 $membershipLog = $formattedParams;
2241 $logStartDate = CRM_Utils_Date::customFormat($dates['log_start_date'] ?? NULL, $format);
2242 $logStartDate = ($logStartDate) ? CRM_Utils_Date::isoToMysql($logStartDate) : $formattedParams['start_date'];
2243
2244 $membershipLog['start_date'] = $logStartDate;
2245 $membershipLog['membership_id'] = $membership->id;
2246 $membershipLog['modified_id'] = $membership->contact_id;
2247 $membershipLog['modified_date'] = date('Ymd');
2248 $membershipLog['membership_type_id'] = $membership->membership_type_id;
2249
2250 CRM_Member_BAO_MembershipLog::add($membershipLog);
2251
2252 //update related Memberships.
2253 CRM_Member_BAO_Membership::updateRelatedMemberships($membership->id, $formattedParams);
2254
2255 foreach (['Membership Signup', 'Membership Renewal'] as $activityType) {
2256 $scheduledActivityID = CRM_Utils_Array::value('id',
2257 civicrm_api3('Activity', 'Get',
2258 [
2259 'source_record_id' => $membership->id,
2260 'activity_type_id' => $activityType,
2261 'status_id' => 'Scheduled',
2262 'options' => [
2263 'limit' => 1,
2264 'sort' => 'id DESC',
2265 ],
2266 ]
2267 )
2268 );
2269 // 1. Update Schedule Membership Signup/Renewal activity to completed on successful payment of pending membership
2270 // 2. OR Create renewal activity scheduled if its membership renewal will be paid later
2271 if ($scheduledActivityID) {
2272 CRM_Activity_BAO_Activity::addActivity($membership, $activityType, $membership->contact_id, ['id' => $scheduledActivityID]);
2273 break;
2274 }
2275 }
2276
2277 // track membership status change if any
2278 if (!empty($oldStatus) && $membership->status_id != $oldStatus) {
2279 $allStatus = CRM_Member_BAO_Membership::buildOptions('status_id', 'get');
2280 CRM_Activity_BAO_Activity::addActivity($membership,
2281 'Change Membership Status',
2282 NULL,
2283 [
2284 'subject' => "Status changed from {$allStatus[$oldStatus]} to {$allStatus[$membership->status_id]}",
2285 'source_contact_id' => $membershipLog['modified_id'],
2286 'priority_id' => 'Normal',
2287 ]
2288 );
2289 }
2290
2291 CRM_Utils_Hook::post('edit', 'Membership', $membership->id, $membership);
2292 }
2293 }
2294 }
2295
2296 if ($participant) {
2297 $updatedStatusId = array_search('Registered', $participantStatuses);
2298 CRM_Event_BAO_Participant::updateParticipantStatus($participant->id, $oldStatus, $updatedStatusId, TRUE);
2299 }
2300
2301 if ($pledgePayment) {
2302 CRM_Pledge_BAO_PledgePayment::updatePledgePaymentStatus($pledgeID, $pledgePaymentIDs, $contributionStatusId);
2303 }
2304 }
2305
2306 }
2307
2308 /**
2309 * Returns all contribution related object ids.
2310 *
2311 * @param $contributionId
2312 *
2313 * @return array
2314 */
2315 public static function getComponentDetails($contributionId) {
2316 $componentDetails = $pledgePayment = [];
2317 if (!$contributionId) {
2318 return $componentDetails;
2319 }
2320
2321 $query = "
2322 SELECT c.id as contribution_id,
2323 c.contact_id as contact_id,
2324 c.contribution_recur_id,
2325 mp.membership_id as membership_id,
2326 m.membership_type_id as membership_type_id,
2327 pp.participant_id as participant_id,
2328 p.event_id as event_id,
2329 pgp.id as pledge_payment_id
2330 FROM civicrm_contribution c
2331 LEFT JOIN civicrm_membership_payment mp ON mp.contribution_id = c.id
2332 LEFT JOIN civicrm_participant_payment pp ON pp.contribution_id = c.id
2333 LEFT JOIN civicrm_participant p ON pp.participant_id = p.id
2334 LEFT JOIN civicrm_membership m ON m.id = mp.membership_id
2335 LEFT JOIN civicrm_pledge_payment pgp ON pgp.contribution_id = c.id
2336 WHERE c.id = $contributionId";
2337
2338 $dao = CRM_Core_DAO::executeQuery($query);
2339 $componentDetails = [];
2340
2341 while ($dao->fetch()) {
2342 $componentDetails['component'] = $dao->participant_id ? 'event' : 'contribute';
2343 $componentDetails['contact_id'] = $dao->contact_id;
2344 if ($dao->event_id) {
2345 $componentDetails['event'] = $dao->event_id;
2346 }
2347 if ($dao->participant_id) {
2348 $componentDetails['participant'] = $dao->participant_id;
2349 }
2350 if ($dao->membership_id) {
2351 if (!isset($componentDetails['membership'])) {
2352 $componentDetails['membership'] = $componentDetails['membership_type'] = [];
2353 }
2354 $componentDetails['membership'][] = $dao->membership_id;
2355 $componentDetails['membership_type'][] = $dao->membership_type_id;
2356 }
2357 if ($dao->pledge_payment_id) {
2358 $pledgePayment[] = $dao->pledge_payment_id;
2359 }
2360 if ($dao->contribution_recur_id) {
2361 $componentDetails['contributionRecur'] = $dao->contribution_recur_id;
2362 }
2363 }
2364
2365 if ($pledgePayment) {
2366 $componentDetails['pledge_payment'] = $pledgePayment;
2367 }
2368
2369 return $componentDetails;
2370 }
2371
2372 /**
2373 * @param int $contactId
2374 * @param bool $includeSoftCredit
2375 *
2376 * @return null|string
2377 */
2378 public static function contributionCount($contactId, $includeSoftCredit = TRUE) {
2379 if (!$contactId) {
2380 return 0;
2381 }
2382 $financialTypes = CRM_Financial_BAO_FinancialType::getAllAvailableFinancialTypes();
2383 $additionalWhere = " AND contribution.financial_type_id IN (0)";
2384 $liWhere = " AND i.financial_type_id IN (0)";
2385 if (!empty($financialTypes)) {
2386 $additionalWhere = " AND contribution.financial_type_id IN (" . implode(',', array_keys($financialTypes)) . ")";
2387 $liWhere = " AND i.financial_type_id NOT IN (" . implode(',', array_keys($financialTypes)) . ")";
2388 }
2389 $contactContributionsSQL = "
2390 SELECT contribution.id AS id
2391 FROM civicrm_contribution contribution
2392 LEFT JOIN civicrm_line_item i ON i.contribution_id = contribution.id AND i.entity_table = 'civicrm_contribution' $liWhere
2393 WHERE contribution.is_test = 0 AND contribution.contact_id = {$contactId}
2394 $additionalWhere
2395 AND i.id IS NULL";
2396
2397 $contactSoftCreditContributionsSQL = "
2398 SELECT contribution.id
2399 FROM civicrm_contribution contribution INNER JOIN civicrm_contribution_soft softContribution
2400 ON ( contribution.id = softContribution.contribution_id )
2401 WHERE contribution.is_test = 0 AND softContribution.contact_id = {$contactId} ";
2402 $query = "SELECT count( x.id ) count FROM ( ";
2403 $query .= $contactContributionsSQL;
2404
2405 if ($includeSoftCredit) {
2406 $query .= " UNION ";
2407 $query .= $contactSoftCreditContributionsSQL;
2408 }
2409
2410 $query .= ") x";
2411
2412 return CRM_Core_DAO::singleValueQuery($query);
2413 }
2414
2415 /**
2416 * Repeat a transaction as part of a recurring series.
2417 *
2418 * The ideal flow is
2419 * 1) Processor calls contribution.repeattransaction with contribution_status_id = Pending
2420 * 2) The repeattransaction loads the 'template contribution' and calls a hook to allow altering of it .
2421 * 3) Repeat transaction calls order.create to create the pending contribution with correct line items
2422 * and associated entities.
2423 * 4) The calling code calls Payment.create which in turn calls CompleteOrder (if completing)
2424 * which updates the various entities and sends appropriate emails.
2425 *
2426 * Gaps in the above (@todo)
2427 * 1) many processors still call repeattransaction with contribution_status_id = Completed
2428 * 2) repeattransaction code is current munged into completeTransaction code for historical bad coding reasons
2429 * 3) Repeat transaction duplicates rather than calls Order.create
2430 * 4) Use of payment.create still limited - completetransaction is more common.
2431 * 5) the template transaction is tricky - historically we used the first contribution
2432 * linked to a recurring contribution. More recently that was changed to be the most recent.
2433 * Ideally it would be an actual template - not a contribution used as a template which
2434 * would give more appropriate flexibility. Note line_items have an entity so that table
2435 * could be used for the line item template - the difficulty is the custom fields...
2436 * 6) the determination of the membership to be linked is tricksy. The prioritised method is
2437 * to load the membership(s) referred to via line items in the template transactions. Any other
2438 * method is likely to lead to incorrect line items & related entities being created (as the line_item
2439 * link is a required part of 'correct data'). However there are 3 other methods to determine it
2440 * - membership_payment record
2441 * - civicrm_membership.contribution_recur_id
2442 * - input override.
2443 * Passing in an input override WILL ensure the membership is extended to prevent regressions
2444 * of historical processors since this has been handled 'forever' - specifically for paypal.
2445 * albeit by an even nastier mechanism than the current input override.
2446 * The count is out on how correct related entities wind up in this case.
2447 *
2448 * @param CRM_Contribute_BAO_Contribution $contribution
2449 * @param array $input
2450 * @param array $contributionParams
2451 *
2452 * @return bool|array
2453 * @throws CiviCRM_API3_Exception
2454 */
2455 protected static function repeatTransaction(&$contribution, $input, $contributionParams) {
2456 if (!empty($contribution->id)) {
2457 return FALSE;
2458 }
2459
2460 // Unclear why this would only be set for repeats.
2461 if (!empty($input['amount'])) {
2462 $contribution->total_amount = $contributionParams['total_amount'] = $input['amount'];
2463 }
2464
2465 $recurringContribution = civicrm_api3('ContributionRecur', 'getsingle', [
2466 'id' => $contributionParams['contribution_recur_id'],
2467 ]);
2468 if (!empty($recurringContribution['financial_type_id'])) {
2469 // CRM-17718 the campaign id on the contribution recur record should get precedence.
2470 $contributionParams['financial_type_id'] = $recurringContribution['financial_type_id'];
2471 }
2472 $templateContribution = CRM_Contribute_BAO_ContributionRecur::getTemplateContribution(
2473 $contributionParams['contribution_recur_id'],
2474 array_intersect_key($contributionParams, [
2475 'total_amount' => TRUE,
2476 'financial_type_id' => TRUE,
2477 ])
2478 );
2479 $input['line_item'] = $contributionParams['line_item'] = $templateContribution['line_item'];
2480 $contributionParams['status_id'] = 'Pending';
2481
2482 if (isset($contributionParams['financial_type_id']) && count($input['line_item']) === 1) {
2483 // We permit the financial type to be overridden for single line items.
2484 // More comments on this are in getTemplateTransaction.
2485 $contribution->financial_type_id = $contributionParams['financial_type_id'];
2486 }
2487 else {
2488 $contributionParams['financial_type_id'] = $templateContribution['financial_type_id'];
2489 }
2490 foreach (['contact_id', 'currency', 'source', 'amount_level', 'address_id', 'on_behalf', 'source_contact_id', 'tax_amount', 'contribution_page_id'] as $fieldName) {
2491 if (isset($templateContribution[$fieldName])) {
2492 $contributionParams[$fieldName] = $templateContribution[$fieldName];
2493 }
2494 }
2495 if (!empty($recurringContribution['campaign_id'])) {
2496 // CRM-17718 the campaign id on the contribution recur record should get precedence.
2497 $contributionParams['campaign_id'] = $recurringContribution['campaign_id'];
2498 }
2499 if (!isset($contributionParams['campaign_id']) && isset($templateContribution['campaign_id'])) {
2500 // Fall back on value from the previous contribution if not passed in as input
2501 // or loadable from the recurring contribution.
2502 $contributionParams['campaign_id'] = $templateContribution['campaign_id'];
2503 }
2504 $contributionParams['source'] = $contributionParams['source'] ?? ts('Recurring contribution');
2505
2506 //CRM-18805 -- Contribution page not recorded on recurring transactions, Recurring contribution payments
2507 //do not create CC or BCC emails or profile notifications.
2508 //The if is just to be safe. Not sure if we can ever arrive with this unset
2509 // but per CRM-19478 it seems it can be 'null'
2510 if (isset($contribution->contribution_page_id) && is_numeric($contribution->contribution_page_id)) {
2511 $contributionParams['contribution_page_id'] = $contribution->contribution_page_id;
2512 }
2513
2514 $createContribution = civicrm_api3('Contribution', 'create', $contributionParams);
2515 $contribution->id = $createContribution['id'];
2516 $contribution->copyCustomFields($templateContribution['id'], $contribution->id);
2517 self::handleMembershipIDOverride($contribution->id, $input);
2518 // Add new soft credit against current $contribution.
2519 CRM_Contribute_BAO_ContributionRecur::addrecurSoftCredit($contributionParams['contribution_recur_id'], $createContribution['id']);
2520 return $createContribution;
2521 }
2522
2523 /**
2524 * Get individual id for onbehalf contribution.
2525 *
2526 * @param int $contributionId
2527 * Contribution id.
2528 * @param int $contributorId
2529 * Contributor id.
2530 *
2531 * @return array
2532 * containing organization id and individual id
2533 */
2534 public static function getOnbehalfIds($contributionId, $contributorId = NULL) {
2535
2536 $ids = [];
2537
2538 if (!$contributionId) {
2539 return $ids;
2540 }
2541
2542 // fetch contributor id if null
2543 if (!$contributorId) {
2544 $contributorId = CRM_Core_DAO::getFieldValue('CRM_Contribute_DAO_Contribution',
2545 $contributionId, 'contact_id'
2546 );
2547 }
2548
2549 $activityTypeIds = CRM_Core_PseudoConstant::activityType(TRUE, FALSE, FALSE, 'name');
2550 $activityTypeId = array_search('Contribution', $activityTypeIds);
2551
2552 if ($activityTypeId && $contributorId) {
2553 $activityQuery = "
2554 SELECT civicrm_activity_contact.contact_id
2555 FROM civicrm_activity_contact
2556 INNER JOIN civicrm_activity ON civicrm_activity_contact.activity_id = civicrm_activity.id
2557 WHERE civicrm_activity.activity_type_id = %1
2558 AND civicrm_activity.source_record_id = %2
2559 AND civicrm_activity_contact.record_type_id = %3
2560 ";
2561
2562 $activityContacts = CRM_Activity_BAO_ActivityContact::buildOptions('record_type_id', 'validate');
2563 $sourceID = CRM_Utils_Array::key('Activity Source', $activityContacts);
2564
2565 $params = [
2566 1 => [$activityTypeId, 'Integer'],
2567 2 => [$contributionId, 'Integer'],
2568 3 => [$sourceID, 'Integer'],
2569 ];
2570
2571 $sourceContactId = CRM_Core_DAO::singleValueQuery($activityQuery, $params);
2572
2573 // for on behalf contribution source is individual and contributor is organization
2574 if ($sourceContactId && $sourceContactId != $contributorId) {
2575 $relationshipTypeIds = CRM_Core_PseudoConstant::relationshipType('name');
2576 // get rel type id for employee of relation
2577 foreach ($relationshipTypeIds as $id => $typeVals) {
2578 if ($typeVals['name_a_b'] == 'Employee of') {
2579 $relationshipTypeId = $id;
2580 break;
2581 }
2582 }
2583
2584 $rel = new CRM_Contact_DAO_Relationship();
2585 $rel->relationship_type_id = $relationshipTypeId;
2586 $rel->contact_id_a = $sourceContactId;
2587 $rel->contact_id_b = $contributorId;
2588 if ($rel->find(TRUE)) {
2589 $ids['individual_id'] = $rel->contact_id_a;
2590 $ids['organization_id'] = $rel->contact_id_b;
2591 }
2592 }
2593 }
2594
2595 return $ids;
2596 }
2597
2598 /**
2599 * @return array
2600 */
2601 public static function getContributionDates() {
2602 $config = CRM_Core_Config::singleton();
2603 $currentMonth = date('m');
2604 $currentDay = date('d');
2605 if ((int ) $config->fiscalYearStart['M'] > $currentMonth ||
2606 ((int ) $config->fiscalYearStart['M'] == $currentMonth &&
2607 (int ) $config->fiscalYearStart['d'] > $currentDay
2608 )
2609 ) {
2610 $year = date('Y') - 1;
2611 }
2612 else {
2613 $year = date('Y');
2614 }
2615 $year = ['Y' => $year];
2616 $yearDate = $config->fiscalYearStart;
2617 $yearDate = array_merge($year, $yearDate);
2618 $yearDate = CRM_Utils_Date::format($yearDate);
2619
2620 $monthDate = date('Ym') . '01';
2621
2622 $now = date('Ymd');
2623
2624 return [
2625 'now' => $now,
2626 'yearDate' => $yearDate,
2627 'monthDate' => $monthDate,
2628 ];
2629 }
2630
2631 /**
2632 * Load objects relations to contribution object.
2633 * Objects are stored in the $_relatedObjects property
2634 * In the first instance we are just moving functionality from BASEIpn -
2635 *
2636 * @see http://issues.civicrm.org/jira/browse/CRM-9996
2637 *
2638 * Note that the unit test for the BaseIPN class tests this function
2639 *
2640 * @param array $input
2641 * Input as delivered from Payment Processor.
2642 * @param array $ids
2643 * Ids as Loaded by Payment Processor.
2644 * @param bool $loadAll
2645 * Load all related objects - even where id not passed in? (allows API to call this).
2646 *
2647 * @return bool
2648 * @throws CRM_Core_Exception
2649 */
2650 public function loadRelatedObjects($input, &$ids, $loadAll = FALSE) {
2651 // @todo deprecate this function - the steps should be
2652 // 1) add additional functions like 'getRelatedMemberships'
2653 // 2) switch all calls that refer to ->_relatedObjects to
2654 // using the helper functions
2655 // 3) make ->_relatedObjects noisy in some way (deprecation won't work for properties - hmm
2656 // 4) make ->_relatedObjects protected
2657 // 5) hone up the individual functions to not use rely on this having been called
2658 // 6) deprecate like mad
2659 if ($loadAll) {
2660 $ids = array_merge($this->getComponentDetails($this->id), $ids);
2661 if (empty($ids['contact']) && isset($this->contact_id)) {
2662 $ids['contact'] = $this->contact_id;
2663 }
2664 }
2665 if (empty($this->_component)) {
2666 if (!empty($ids['event'])) {
2667 $this->_component = 'event';
2668 }
2669 else {
2670 $this->_component = strtolower(CRM_Utils_Array::value('component', $input, 'contribute'));
2671 }
2672 }
2673
2674 // If the object is not fully populated then make sure it is - this is a more about legacy paths & cautious
2675 // refactoring than anything else, and has unit test coverage.
2676 if (empty($this->financial_type_id)) {
2677 $this->find(TRUE);
2678 }
2679
2680 $paymentProcessorID = CRM_Utils_Array::value('payment_processor_id', $input, CRM_Utils_Array::value(
2681 'paymentProcessor',
2682 $ids
2683 ));
2684
2685 if (!isset($input['payment_processor_id']) && !$paymentProcessorID && $this->contribution_page_id) {
2686 $paymentProcessorID = CRM_Core_DAO::getFieldValue('CRM_Contribute_DAO_ContributionPage',
2687 $this->contribution_page_id,
2688 'payment_processor'
2689 );
2690 if ($paymentProcessorID) {
2691 $intentionalEnotice = $CRM16923AnUnreliableMethodHasBeenUserToDeterminePaymentProcessorFromContributionPage;
2692 }
2693 }
2694
2695 $ids['contributionType'] = $this->financial_type_id;
2696 $ids['financialType'] = $this->financial_type_id;
2697 if ($this->contribution_page_id) {
2698 $ids['contributionPage'] = $this->contribution_page_id;
2699 }
2700
2701 $this->loadRelatedEntitiesByID($ids);
2702
2703 if (!empty($ids['contributionRecur']) && !$paymentProcessorID) {
2704 $paymentProcessorID = $this->_relatedObjects['contributionRecur']->payment_processor_id;
2705 }
2706
2707 if (!empty($ids['pledge_payment'])) {
2708 foreach ($ids['pledge_payment'] as $key => $paymentID) {
2709 if (empty($paymentID)) {
2710 continue;
2711 }
2712 $payment = new CRM_Pledge_BAO_PledgePayment();
2713 $payment->id = $paymentID;
2714 if (!$payment->find(TRUE)) {
2715 throw new CRM_Core_Exception("Could not find pledge payment record: " . $paymentID);
2716 }
2717 $this->_relatedObjects['pledge_payment'][] = $payment;
2718 }
2719 }
2720
2721 // These are probably no longer accessed from anywhere
2722 // @todo remove this line, after ensuring not used.
2723 $ids = $this->loadRelatedMembershipObjects($ids);
2724
2725 if ($this->_component != 'contribute') {
2726 // we are in event mode
2727 // make sure event exists and is valid
2728 $event = new CRM_Event_BAO_Event();
2729 $event->id = $ids['event'];
2730 if ($ids['event'] &&
2731 !$event->find(TRUE)
2732 ) {
2733 throw new CRM_Core_Exception("Could not find event: " . $ids['event']);
2734 }
2735
2736 $this->_relatedObjects['event'] = &$event;
2737
2738 $participant = new CRM_Event_BAO_Participant();
2739 $participant->id = $ids['participant'];
2740 if ($ids['participant'] &&
2741 !$participant->find(TRUE)
2742 ) {
2743 throw new CRM_Core_Exception("Could not find participant: " . $ids['participant']);
2744 }
2745 $participant->register_date = CRM_Utils_Date::isoToMysql($participant->register_date);
2746
2747 $this->_relatedObjects['participant'] = &$participant;
2748
2749 // get the payment processor id from event - this is inaccurate see CRM-16923
2750 // in future we should look at throwing an exception here rather than an dubious guess.
2751 if (!$paymentProcessorID) {
2752 $paymentProcessorID = $this->_relatedObjects['event']->payment_processor;
2753 if ($paymentProcessorID) {
2754 $intentionalEnotice = $CRM16923AnUnreliableMethodHasBeenUserToDeterminePaymentProcessorFromEvent;
2755 }
2756 }
2757 }
2758
2759 $relatedContact = CRM_Contribute_BAO_Contribution::getOnbehalfIds($this->id);
2760 if (!empty($relatedContact['individual_id'])) {
2761 $ids['related_contact'] = $relatedContact['individual_id'];
2762 }
2763
2764 if ($paymentProcessorID) {
2765 $paymentProcessor = CRM_Financial_BAO_PaymentProcessor::getPayment($paymentProcessorID,
2766 $this->is_test ? 'test' : 'live'
2767 );
2768 $ids['paymentProcessor'] = $paymentProcessorID;
2769 $this->_relatedObjects['paymentProcessor'] = $paymentProcessor;
2770 }
2771
2772 // Add contribution id to $ids. CRM-20401
2773 $ids['contribution'] = $this->id;
2774 return TRUE;
2775 }
2776
2777 /**
2778 * Create array of message information - ie. return html version, txt version, to field
2779 *
2780 * @param array $input
2781 * Incoming information.
2782 * - is_recur - should this be treated as recurring (not sure why you wouldn't
2783 * just check presence of recur object but maintaining legacy approach
2784 * to be careful)
2785 * @param array $ids
2786 * IDs of related objects.
2787 * @param array $values
2788 * Any values that may have already been compiled by calling process.
2789 * This is augmented by values 'gathered' by gatherMessageValues
2790 * @param bool $returnMessageText
2791 * Distinguishes between whether to send message or return.
2792 * message text. We are working towards this function ALWAYS returning message text & calling
2793 * function doing emails / pdfs with it
2794 *
2795 * @return array
2796 * messages
2797 * @throws Exception
2798 */
2799 public function composeMessageArray(&$input, &$ids, &$values, $returnMessageText = TRUE) {
2800 $this->loadRelatedObjects($input, $ids, TRUE);
2801
2802 if (empty($this->_component)) {
2803 $this->_component = $input['component'] ?? NULL;
2804 }
2805
2806 //not really sure what params might be passed in but lets merge em into values
2807 $values = array_merge($this->_gatherMessageValues($input, $values, $ids), $values);
2808 $values['is_email_receipt'] = !$returnMessageText;
2809 foreach (['receipt_date', 'cc_receipt', 'bcc_receipt', 'receipt_from_name', 'receipt_from_email', 'receipt_text', 'pay_later_receipt'] as $fld) {
2810 if (!empty($input[$fld])) {
2811 $values[$fld] = $input[$fld];
2812 }
2813 }
2814
2815 $template = $this->_assignMessageVariablesToTemplate($values, $input, $returnMessageText);
2816 //what does recur 'mean here - to do with payment processor return functionality but
2817 // what is the importance
2818 if (!empty($this->contribution_recur_id) && !empty($this->_relatedObjects['paymentProcessor'])) {
2819 $paymentObject = Civi\Payment\System::singleton()->getByProcessor($this->_relatedObjects['paymentProcessor']);
2820
2821 $entityID = $entity = NULL;
2822 if (isset($ids['contribution'])) {
2823 $entity = 'contribution';
2824 $entityID = $ids['contribution'];
2825 }
2826 if (!empty($ids['membership'])) {
2827 //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
2828 // 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
2829 // line having loaded an array
2830 $ids['membership'] = (array) $ids['membership'];
2831 $entity = 'membership';
2832 $entityID = $ids['membership'][0];
2833 }
2834
2835 $template->assign('cancelSubscriptionUrl', $paymentObject->subscriptionURL($entityID, $entity, 'cancel'));
2836 $template->assign('updateSubscriptionBillingUrl', $paymentObject->subscriptionURL($entityID, $entity, 'billing'));
2837 $template->assign('updateSubscriptionUrl', $paymentObject->subscriptionURL($entityID, $entity, 'update'));
2838
2839 if ($this->_relatedObjects['paymentProcessor']['billing_mode'] & CRM_Core_Payment::BILLING_MODE_FORM) {
2840 //direct mode showing billing block, so use directIPN for temporary
2841 $template->assign('contributeMode', 'directIPN');
2842 }
2843 }
2844 // todo remove strtolower - check consistency
2845 if (strtolower($this->_component) == 'event') {
2846 $eventParams = ['id' => $this->_relatedObjects['participant']->event_id];
2847 $values['event'] = [];
2848
2849 CRM_Event_BAO_Event::retrieve($eventParams, $values['event']);
2850
2851 //get location details
2852 $locationParams = [
2853 'entity_id' => $this->_relatedObjects['participant']->event_id,
2854 'entity_table' => 'civicrm_event',
2855 ];
2856 $values['location'] = CRM_Core_BAO_Location::getValues($locationParams);
2857
2858 $ufJoinParams = [
2859 'entity_table' => 'civicrm_event',
2860 'entity_id' => $ids['event'],
2861 'module' => 'CiviEvent',
2862 ];
2863
2864 list($custom_pre_id,
2865 $custom_post_ids
2866 ) = CRM_Core_BAO_UFJoin::getUFGroupIds($ufJoinParams);
2867
2868 $values['custom_pre_id'] = $custom_pre_id;
2869 $values['custom_post_id'] = $custom_post_ids;
2870 //for tasks 'Change Participant Status' and 'Update multiple Contributions' case
2871 //and cases involving status updation through ipn
2872 // whatever that means!
2873 // total_amount appears to be the preferred input param & it is unclear why we support amount here
2874 // perhaps we should throw an e-notice if amount is set & force total_amount?
2875 if (!empty($input['amount'])) {
2876 $values['totalAmount'] = $input['amount'];
2877 }
2878 // @todo set this in is_email_receipt, based on $this->_relatedObjects.
2879 if ($values['event']['is_email_confirm']) {
2880 $values['is_email_receipt'] = 1;
2881 }
2882
2883 if (!empty($ids['contribution'])) {
2884 $values['contributionId'] = $ids['contribution'];
2885 }
2886
2887 return CRM_Event_BAO_Event::sendMail($ids['contact'], $values,
2888 $this->_relatedObjects['participant']->id, $this->is_test, $returnMessageText
2889 );
2890 }
2891 else {
2892 $values['contribution_id'] = $this->id;
2893 if (!empty($ids['related_contact'])) {
2894 $values['related_contact'] = $ids['related_contact'];
2895 if (isset($ids['onbehalf_dupe_alert'])) {
2896 $values['onbehalf_dupe_alert'] = $ids['onbehalf_dupe_alert'];
2897 }
2898 $entityBlock = [
2899 'contact_id' => $ids['contact'],
2900 'location_type_id' => CRM_Core_DAO::getFieldValue('CRM_Core_DAO_LocationType',
2901 'Home', 'id', 'name'
2902 ),
2903 ];
2904 $address = CRM_Core_BAO_Address::getValues($entityBlock);
2905 $template->assign('onBehalfAddress', $address[$entityBlock['location_type_id']]['display'] ?? NULL);
2906 }
2907 $isTest = FALSE;
2908 if ($this->is_test) {
2909 $isTest = TRUE;
2910 }
2911 if (!empty($this->_relatedObjects['membership'])) {
2912 foreach ($this->_relatedObjects['membership'] as $membership) {
2913 if ($membership->id) {
2914 $values['membership_id'] = $membership->id;
2915 $values['isMembership'] = TRUE;
2916 $values['membership_assign'] = TRUE;
2917
2918 // need to set the membership values here
2919 $template->assign('membership_name',
2920 CRM_Member_PseudoConstant::membershipType($membership->membership_type_id)
2921 );
2922 $template->assign('mem_start_date', $membership->start_date);
2923 $template->assign('mem_join_date', $membership->join_date);
2924 $template->assign('mem_end_date', $membership->end_date);
2925 $membership_status = CRM_Member_PseudoConstant::membershipStatus($membership->status_id, NULL, 'label');
2926 $template->assign('mem_status', $membership_status);
2927 if ($membership_status == 'Pending' && $membership->is_pay_later == 1) {
2928 $values['is_pay_later'] = 1;
2929 }
2930 // Pass amount to floatval as string '0.00' is considered a
2931 // valid amount and includes Fee section in the mail.
2932 if (isset($values['amount'])) {
2933 $values['amount'] = floatval($values['amount']);
2934 }
2935
2936 if (!empty($this->contribution_recur_id) && $paymentObject) {
2937 $url = $paymentObject->subscriptionURL($membership->id, 'membership', 'cancel');
2938 $template->assign('cancelSubscriptionUrl', $url);
2939 $url = $paymentObject->subscriptionURL($membership->id, 'membership', 'billing');
2940 $template->assign('updateSubscriptionBillingUrl', $url);
2941 $url = $paymentObject->subscriptionURL($entityID, $entity, 'update');
2942 $template->assign('updateSubscriptionUrl', $url);
2943 }
2944
2945 $result = CRM_Contribute_BAO_ContributionPage::sendMail($ids['contact'], $values, $isTest, $returnMessageText);
2946
2947 return $result;
2948 // otherwise if its about sending emails, continue sending without return, as we
2949 // don't want to exit the loop.
2950 }
2951 }
2952 }
2953 else {
2954 return CRM_Contribute_BAO_ContributionPage::sendMail($ids['contact'], $values, $isTest, $returnMessageText);
2955 }
2956 }
2957 }
2958
2959 /**
2960 * Gather values for contribution mail - this function has been created
2961 * as part of CRM-9996 refactoring as a step towards simplifying the composeMessage function
2962 * Values related to the contribution in question are gathered
2963 *
2964 * @param array $input
2965 * Input into function (probably from payment processor).
2966 * @param array $values
2967 * @param array $ids
2968 * The set of ids related to the input.
2969 *
2970 * @return array
2971 * @throws \CRM_Core_Exception
2972 */
2973 public function _gatherMessageValues($input, &$values, $ids = []) {
2974 // set display address of contributor
2975 $values['billingName'] = '';
2976 if ($this->address_id) {
2977 $addressDetails = CRM_Core_BAO_Address::getValues(['id' => $this->address_id], FALSE, 'id');
2978 $addressDetails = reset($addressDetails);
2979 $values['billingName'] = $addressDetails['name'] ?? '';
2980 }
2981 // Else we assign the billing address of the contribution contact.
2982 else {
2983 $addressDetails = (array) CRM_Core_BAO_Address::getValues(['contact_id' => $this->contact_id, 'is_billing' => 1]);
2984 $addressDetails = reset($addressDetails);
2985 }
2986 $values['address'] = $addressDetails['display'] ?? '';
2987
2988 if ($this->_component === 'contribute') {
2989 //get soft contributions
2990 $softContributions = CRM_Contribute_BAO_ContributionSoft::getSoftContribution($this->id, TRUE);
2991 if (!empty($softContributions)) {
2992 // For pcp soft credit, there is no 'soft_credit' member it comes
2993 // back in different array members, but shortly after returning from
2994 // this function it calls _assignMessageVariablesToTemplate which does
2995 // its own lookup of any pcp soft credit, so we can skip it here.
2996 $values['softContributions'] = $softContributions['soft_credit'] ?? NULL;
2997 }
2998 if (isset($this->contribution_page_id)) {
2999 // This is a call we want to use less, in favour of loading related objects.
3000 $values = $this->addContributionPageValuesToValuesHeavyHandedly($values);
3001 if ($this->contribution_page_id) {
3002 // This is precautionary as there are some legacy flows, but it should really be
3003 // loaded by now.
3004 if (!isset($this->_relatedObjects['contributionPage'])) {
3005 $this->loadRelatedEntitiesByID(['contributionPage' => $this->contribution_page_id]);
3006 }
3007 CRM_Contribute_BAO_Contribution_Utils::overrideDefaultCurrency($values);
3008 }
3009 }
3010 // no contribution page -probably back office
3011 else {
3012 // Handle re-print receipt for offline contributions (call from PDF.php - no contribution_page_id)
3013 $values['title'] = 'Contribution';
3014 }
3015 // set lineItem for contribution
3016 if ($this->id) {
3017 $lineItems = CRM_Price_BAO_LineItem::getLineItemsByContributionID($this->id);
3018 if (!empty($lineItems)) {
3019 $firstLineItem = reset($lineItems);
3020 $priceSet = [];
3021 if (!empty($firstLineItem['price_set_id'])) {
3022 $priceSet = civicrm_api3('PriceSet', 'getsingle', [
3023 'id' => $firstLineItem['price_set_id'],
3024 'return' => 'is_quick_config, id',
3025 ]);
3026 $values['priceSetID'] = $priceSet['id'];
3027 }
3028 foreach ($lineItems as &$eachItem) {
3029 if (isset($this->_relatedObjects['membership'])
3030 && is_array($this->_relatedObjects['membership'])
3031 && array_key_exists($eachItem['entity_id'] . '_' . $eachItem['membership_type_id'], $this->_relatedObjects['membership'])) {
3032 $eachItem['join_date'] = CRM_Utils_Date::customFormat($this->_relatedObjects['membership'][$eachItem['entity_id'] . '_' . $eachItem['membership_type_id']]->join_date);
3033 $eachItem['start_date'] = CRM_Utils_Date::customFormat($this->_relatedObjects['membership'][$eachItem['entity_id'] . '_' . $eachItem['membership_type_id']]->start_date);
3034 $eachItem['end_date'] = CRM_Utils_Date::customFormat($this->_relatedObjects['membership'][$eachItem['entity_id'] . '_' . $eachItem['membership_type_id']]->end_date);
3035 }
3036 // This is actually used in conjunction with is_quick_config in the template & we should deprecate it.
3037 // However, that does create upgrade pain so would be better to be phased in.
3038 $values['useForMember'] = empty($priceSet['is_quick_config']);
3039 }
3040 $values['lineItem'][0] = $lineItems;
3041 }
3042 }
3043
3044 $relatedContact = CRM_Contribute_BAO_Contribution::getOnbehalfIds(
3045 $this->id,
3046 $this->contact_id
3047 );
3048 // if this is onbehalf of contribution then set related contact
3049 if (!empty($relatedContact['individual_id'])) {
3050 $values['related_contact'] = $ids['related_contact'] = $relatedContact['individual_id'];
3051 }
3052 }
3053 else {
3054 $values = array_merge($values, $this->loadEventMessageTemplateParams((int) $ids['event'], (int) $this->_relatedObjects['participant']->id, $this->id));
3055 }
3056
3057 $groupTree = CRM_Core_BAO_CustomGroup::getTree('Contribution', NULL, $this->id);
3058
3059 $customGroup = [];
3060 foreach ($groupTree as $key => $group) {
3061 if ($key === 'info') {
3062 continue;
3063 }
3064
3065 foreach ($group['fields'] as $k => $customField) {
3066 $groupLabel = $group['title'];
3067 if (!empty($customField['customValue'])) {
3068 foreach ($customField['customValue'] as $customFieldValues) {
3069 $customGroup[$groupLabel][$customField['label']] = $customFieldValues['data'] ?? NULL;
3070 }
3071 }
3072 }
3073 }
3074 $values['customGroup'] = $customGroup;
3075
3076 $values['is_pay_later'] = $this->is_pay_later;
3077
3078 return $values;
3079 }
3080
3081 /**
3082 * Assign message variables to template but try to break the habit.
3083 *
3084 * In order to get away from leaky variables it is better to ensure variables are set in values and assign them
3085 * from the send function. Otherwise smarty variables can leak if this is called more than once - e.g. processing
3086 * multiple recurring payments for processors like IATS that use tokens.
3087 *
3088 * Apply variables for message to smarty template - this function is part of analysing what is in the huge
3089 * function & breaking it down into manageable chunks. Eventually it will be refactored into something else
3090 * Note we send directly from this function in some cases because it is only partly refactored.
3091 *
3092 * Don't call this function directly as the signature will change.
3093 *
3094 * @param $values
3095 * @param $input
3096 * @param bool $returnMessageText
3097 *
3098 * @return mixed
3099 */
3100 public function _assignMessageVariablesToTemplate(&$values, $input, $returnMessageText = TRUE) {
3101 // @todo - this should have a better separation of concerns - ie.
3102 // gatherMessageValues should build an array of values to be assigned to the template
3103 // and this function should assign them (assigning null if not set).
3104 // the way the pcpParams & honor Params section works is a baby-step towards this.
3105 $template = CRM_Core_Smarty::singleton();
3106 $template->assign('first_name', $this->_relatedObjects['contact']->first_name);
3107 $template->assign('last_name', $this->_relatedObjects['contact']->last_name);
3108 $template->assign('displayName', $this->_relatedObjects['contact']->display_name);
3109 $template->assign('billingName', $values['billingName']);
3110
3111 // For some unit tests contribution cannot contain paymentProcessor information
3112 $billingMode = empty($this->_relatedObjects['paymentProcessor']) ? CRM_Core_Payment::BILLING_MODE_NOTIFY : $this->_relatedObjects['paymentProcessor']['billing_mode'];
3113 $template->assign('contributeMode', CRM_Core_SelectValues::contributeMode()[$billingMode] ?? NULL);
3114
3115 //assign honor information to receipt message
3116 $softRecord = CRM_Contribute_BAO_ContributionSoft::getSoftContribution($this->id);
3117
3118 $honorParams = [
3119 'soft_credit_type' => NULL,
3120 'honor_block_is_active' => NULL,
3121 ];
3122 if (isset($softRecord['soft_credit'])) {
3123 //if id of contribution page is present
3124 if (!empty($values['id'])) {
3125 $values['honor'] = [
3126 'honor_profile_values' => [],
3127 'honor_profile_id' => CRM_Core_DAO::getFieldValue('CRM_Core_DAO_UFJoin', $values['id'], 'uf_group_id', 'entity_id'),
3128 'honor_id' => $softRecord['soft_credit'][1]['contact_id'],
3129 ];
3130
3131 $honorParams['soft_credit_type'] = $softRecord['soft_credit'][1]['soft_credit_type_label'];
3132 $honorParams['honor_block_is_active'] = CRM_Core_DAO::getFieldValue('CRM_Core_DAO_UFJoin', $values['id'], 'is_active', 'entity_id');
3133 }
3134 else {
3135 //offline contribution
3136 $softCreditTypes = $softCredits = [];
3137 foreach ($softRecord['soft_credit'] as $key => $softCredit) {
3138 $softCreditTypes[$key] = $softCredit['soft_credit_type_label'];
3139 $softCredits[$key] = [
3140 'Name' => $softCredit['contact_name'],
3141 'Amount' => CRM_Utils_Money::format($softCredit['amount'], $softCredit['currency']),
3142 ];
3143 }
3144 $template->assign('softCreditTypes', $softCreditTypes);
3145 $template->assign('softCredits', $softCredits);
3146 }
3147 }
3148
3149 $dao = new CRM_Contribute_DAO_ContributionProduct();
3150 $dao->contribution_id = $this->id;
3151 if ($dao->find(TRUE)) {
3152 $premiumId = $dao->product_id;
3153 $template->assign('option', $dao->product_option);
3154
3155 $productDAO = new CRM_Contribute_DAO_Product();
3156 $productDAO->id = $premiumId;
3157 $productDAO->find(TRUE);
3158 $template->assign('selectPremium', TRUE);
3159 $template->assign('product_name', $productDAO->name);
3160 $template->assign('price', $productDAO->price);
3161 $template->assign('sku', $productDAO->sku);
3162 }
3163 $template->assign('title', $values['title'] ?? NULL);
3164 $values['amount'] = CRM_Utils_Array::value('total_amount', $input, (CRM_Utils_Array::value('amount', $input)), NULL);
3165 if (!$values['amount'] && isset($this->total_amount)) {
3166 $values['amount'] = $this->total_amount;
3167 }
3168
3169 $pcpParams = [
3170 'pcpBlock' => NULL,
3171 'pcp_display_in_roll' => NULL,
3172 'pcp_roll_nickname' => NULL,
3173 'pcp_personal_note' => NULL,
3174 'title' => NULL,
3175 ];
3176
3177 if (strtolower($this->_component) == 'contribute') {
3178 //PCP Info
3179 $softDAO = new CRM_Contribute_DAO_ContributionSoft();
3180 $softDAO->contribution_id = $this->id;
3181 if ($softDAO->find(TRUE)) {
3182 $pcpParams['pcpBlock'] = TRUE;
3183 $pcpParams['pcp_display_in_roll'] = $softDAO->pcp_display_in_roll;
3184 $pcpParams['pcp_roll_nickname'] = $softDAO->pcp_roll_nickname;
3185 $pcpParams['pcp_personal_note'] = $softDAO->pcp_personal_note;
3186
3187 //assign the pcp page title for email subject
3188 $pcpDAO = new CRM_PCP_DAO_PCP();
3189 $pcpDAO->id = $softDAO->pcp_id;
3190 if ($pcpDAO->find(TRUE)) {
3191 $pcpParams['title'] = $pcpDAO->title;
3192 }
3193 }
3194 }
3195 foreach (array_merge($honorParams, $pcpParams) as $templateKey => $templateValue) {
3196 $template->assign($templateKey, $templateValue);
3197 }
3198
3199 if ($this->financial_type_id) {
3200 $values['financial_type_id'] = $this->financial_type_id;
3201 }
3202
3203 $template->assign('trxn_id', $this->trxn_id);
3204 $template->assign('receive_date',
3205 CRM_Utils_Date::processDate($this->receive_date)
3206 );
3207 $values['receipt_date'] = (empty($this->receipt_date) ? NULL : $this->receipt_date);
3208 $template->assign('action', $this->is_test ? 1024 : 1);
3209 $template->assign('receipt_text', $values['receipt_text'] ?? NULL);
3210 $template->assign('is_monetary', 1);
3211 $template->assign('is_recur', !empty($this->contribution_recur_id));
3212 $template->assign('currency', $this->currency);
3213 $template->assign('address', CRM_Utils_Address::format($input));
3214 if (!empty($values['customGroup'])) {
3215 $template->assign('customGroup', $values['customGroup']);
3216 }
3217 if (!empty($values['softContributions'])) {
3218 $template->assign('softContributions', $values['softContributions']);
3219 }
3220 if ($this->_component == 'event') {
3221 $template->assign('title', $values['event']['title']);
3222 $participantRoles = CRM_Event_PseudoConstant::participantRole();
3223 $viewRoles = [];
3224 foreach (explode(CRM_Core_DAO::VALUE_SEPARATOR, $this->_relatedObjects['participant']->role_id) as $k => $v) {
3225 $viewRoles[] = $participantRoles[$v];
3226 }
3227 $values['event']['participant_role'] = implode(', ', $viewRoles);
3228 $template->assign('event', $values['event']);
3229 $template->assign('participant', $values['participant']);
3230 $template->assign('location', $values['location']);
3231 $template->assign('customPre', $values['custom_pre_id']);
3232 $template->assign('customPost', $values['custom_post_id']);
3233
3234 $isTest = FALSE;
3235 if ($this->_relatedObjects['participant']->is_test) {
3236 $isTest = TRUE;
3237 }
3238
3239 $values['params'] = [];
3240 //to get email of primary participant.
3241 $primaryEmail = CRM_Core_DAO::getFieldValue('CRM_Core_DAO_Email', $this->_relatedObjects['participant']->contact_id, 'email', 'contact_id');
3242 $primaryAmount[] = [
3243 'label' => $this->_relatedObjects['participant']->fee_level . ' - ' . $primaryEmail,
3244 'amount' => $this->_relatedObjects['participant']->fee_amount,
3245 ];
3246 //build an array of cId/pId of participants
3247 $additionalIDs = CRM_Event_BAO_Event::buildCustomProfile($this->_relatedObjects['participant']->id, NULL, $this->_relatedObjects['contact']->id, $isTest, TRUE);
3248 unset($additionalIDs[$this->_relatedObjects['participant']->id]);
3249 //send receipt to additional participant if exists
3250 if (count($additionalIDs)) {
3251 $template->assign('isPrimary', 0);
3252 $template->assign('customProfile', NULL);
3253 //set additionalParticipant true
3254 $values['params']['additionalParticipant'] = TRUE;
3255 foreach ($additionalIDs as $pId => $cId) {
3256 $amount = [];
3257 //to change the status pending to completed
3258 $additional = new CRM_Event_DAO_Participant();
3259 $additional->id = $pId;
3260 $additional->contact_id = $cId;
3261 $additional->find(TRUE);
3262 $additional->register_date = $this->_relatedObjects['participant']->register_date;
3263 $additional->status_id = 1;
3264 $additionalParticipantInfo = CRM_Core_DAO::getFieldValue('CRM_Core_DAO_Email', $additional->contact_id, 'email', 'contact_id');
3265 //if additional participant dont have email
3266 //use display name.
3267 if (!$additionalParticipantInfo) {
3268 $additionalParticipantInfo = CRM_Contact_BAO_Contact::displayName($additional->contact_id);
3269 }
3270 $amount[0] = [
3271 'label' => $additional->fee_level,
3272 'amount' => $additional->fee_amount,
3273 ];
3274 $primaryAmount[] = [
3275 'label' => $additional->fee_level . ' - ' . $additionalParticipantInfo,
3276 'amount' => $additional->fee_amount,
3277 ];
3278 $additional->save();
3279 $template->assign('amount', $amount);
3280 CRM_Event_BAO_Event::sendMail($cId, $values, $pId, $isTest, $returnMessageText);
3281 }
3282 }
3283
3284 //build an array of custom profile and assigning it to template
3285 $customProfile = CRM_Event_BAO_Event::buildCustomProfile($this->_relatedObjects['participant']->id, $values, NULL, $isTest);
3286
3287 if (count($customProfile)) {
3288 $template->assign('customProfile', $customProfile);
3289 }
3290
3291 // for primary contact
3292 $values['params']['additionalParticipant'] = FALSE;
3293 $template->assign('isPrimary', 1);
3294 $template->assign('amount', $primaryAmount);
3295 $template->assign('register_date', CRM_Utils_Date::isoToMysql($this->_relatedObjects['participant']->register_date));
3296 if ($this->payment_instrument_id) {
3297 $paymentInstrument = CRM_Contribute_PseudoConstant::paymentInstrument();
3298 $template->assign('paidBy', $paymentInstrument[$this->payment_instrument_id]);
3299 }
3300 // carry paylater, since we did not created billing,
3301 // so need to pull email from primary location, CRM-4395
3302 $values['params']['is_pay_later'] = $this->_relatedObjects['participant']->is_pay_later;
3303 }
3304 return $template;
3305 }
3306
3307 /**
3308 * Check whether payment processor supports
3309 * cancellation of contribution subscription
3310 *
3311 * @param int $contributionId
3312 * Contribution id.
3313 *
3314 * @param bool $isNotCancelled
3315 *
3316 * @return bool
3317 */
3318 public static function isCancelSubscriptionSupported($contributionId, $isNotCancelled = TRUE) {
3319 $cacheKeyString = "$contributionId";
3320 $cacheKeyString .= $isNotCancelled ? '_1' : '_0';
3321
3322 static $supportsCancel = [];
3323
3324 if (!array_key_exists($cacheKeyString, $supportsCancel)) {
3325 $supportsCancel[$cacheKeyString] = FALSE;
3326 $isCancelled = FALSE;
3327
3328 if ($isNotCancelled) {
3329 $isCancelled = self::isSubscriptionCancelled($contributionId);
3330 }
3331
3332 $paymentObject = CRM_Financial_BAO_PaymentProcessor::getProcessorForEntity($contributionId, 'contribute', 'obj');
3333 if (!empty($paymentObject)) {
3334 $supportsCancel[$cacheKeyString] = $paymentObject->supports('cancelRecurring') && !$isCancelled;
3335 }
3336 }
3337 return $supportsCancel[$cacheKeyString];
3338 }
3339
3340 /**
3341 * Check whether subscription is already cancelled.
3342 *
3343 * @param int $contributionId
3344 * Contribution id.
3345 *
3346 * @return string
3347 * contribution status
3348 */
3349 public static function isSubscriptionCancelled($contributionId) {
3350 $sql = "
3351 SELECT cr.contribution_status_id
3352 FROM civicrm_contribution_recur cr
3353 LEFT JOIN civicrm_contribution con ON ( cr.id = con.contribution_recur_id )
3354 WHERE con.id = %1 LIMIT 1";
3355 $params = [1 => [$contributionId, 'Integer']];
3356 $statusId = CRM_Core_DAO::singleValueQuery($sql, $params);
3357 $status = CRM_Contribute_PseudoConstant::contributionStatus($statusId, 'name');
3358 if ($status == 'Cancelled') {
3359 return TRUE;
3360 }
3361 return FALSE;
3362 }
3363
3364 /**
3365 * Create all financial accounts entry.
3366 *
3367 * @param array $params
3368 * Contribution object, line item array and params for trxn.
3369 *
3370 *
3371 * @param array $financialTrxnValues
3372 *
3373 * @return null|\CRM_Core_BAO_FinancialTrxn
3374 */
3375 public static function recordFinancialAccounts(&$params, $financialTrxnValues = NULL) {
3376 $skipRecords = $update = $return = $isRelatedId = FALSE;
3377 $isUpdate = !empty($params['prevContribution']);
3378
3379 $additionalParticipantId = [];
3380 $contributionStatuses = CRM_Contribute_PseudoConstant::contributionStatus(NULL, 'name');
3381 $contributionStatus = empty($params['contribution_status_id']) ? NULL : $contributionStatuses[$params['contribution_status_id']];
3382
3383 if (CRM_Utils_Array::value('contribution_mode', $params) == 'participant') {
3384 $entityId = $params['participant_id'];
3385 $entityTable = 'civicrm_participant';
3386 $additionalParticipantId = CRM_Event_BAO_Participant::getAdditionalParticipantIds($entityId);
3387 }
3388 elseif (!empty($params['membership_id'])) {
3389 //so far $params['membership_id'] should only be set coming in from membershipBAO::create so the situation where multiple memberships
3390 // are created off one contribution should be handled elsewhere
3391 $entityId = $params['membership_id'];
3392 $entityTable = 'civicrm_membership';
3393 }
3394 else {
3395 $entityId = $params['contribution']->id;
3396 $entityTable = 'civicrm_contribution';
3397 }
3398
3399 if (CRM_Utils_Array::value('contribution_mode', $params) == 'membership') {
3400 $isRelatedId = TRUE;
3401 }
3402
3403 $entityID[] = $entityId;
3404 if (!empty($additionalParticipantId)) {
3405 $entityID += $additionalParticipantId;
3406 }
3407 // prevContribution appears to mean - original contribution object- ie copy of contribution from before the update started that is being updated
3408 if (empty($params['prevContribution'])) {
3409 $entityID = NULL;
3410 }
3411
3412 $statusId = $params['contribution']->contribution_status_id;
3413
3414 // build line item array if its not set in $params
3415 if (empty($params['line_item']) || $additionalParticipantId) {
3416 CRM_Price_BAO_LineItem::getLineItemArray($params, $entityID, str_replace('civicrm_', '', $entityTable), $isRelatedId);
3417 }
3418
3419 if ($contributionStatus != 'Failed' &&
3420 !($contributionStatus == 'Pending' && !$params['contribution']->is_pay_later)
3421 ) {
3422 $skipRecords = TRUE;
3423 $pendingStatus = [
3424 'Pending',
3425 'In Progress',
3426 ];
3427 if (in_array($contributionStatus, $pendingStatus)) {
3428 $params['to_financial_account_id'] = CRM_Financial_BAO_FinancialAccount::getFinancialAccountForFinancialTypeByRelationship(
3429 $params['financial_type_id'],
3430 'Accounts Receivable Account is'
3431 );
3432 }
3433 elseif (!empty($params['payment_processor'])) {
3434 $params['to_financial_account_id'] = CRM_Contribute_PseudoConstant::getRelationalFinancialAccount($params['payment_processor'], NULL, 'civicrm_payment_processor');
3435 $params['payment_instrument_id'] = civicrm_api3('PaymentProcessor', 'getvalue', [
3436 'id' => $params['payment_processor'],
3437 'return' => 'payment_instrument_id',
3438 ]);
3439 }
3440 elseif (!empty($params['payment_instrument_id'])) {
3441 $params['to_financial_account_id'] = CRM_Financial_BAO_FinancialTypeAccount::getInstrumentFinancialAccount($params['payment_instrument_id']);
3442 }
3443 // dev/financial#160 - If this is a contribution update, also check for an existing payment_instrument_id.
3444 elseif ($isUpdate && $params['prevContribution']->payment_instrument_id) {
3445 $params['to_financial_account_id'] = CRM_Financial_BAO_FinancialTypeAccount::getInstrumentFinancialAccount((int) $params['prevContribution']->payment_instrument_id);
3446 }
3447 else {
3448 $relationTypeId = key(CRM_Core_PseudoConstant::accountOptionValues('financial_account_type', NULL, " AND v.name LIKE 'Asset' "));
3449 $queryParams = [1 => [$relationTypeId, 'Integer']];
3450 $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);
3451 }
3452
3453 $totalAmount = $params['total_amount'] ?? NULL;
3454 if (!isset($totalAmount) && !empty($params['prevContribution'])) {
3455 $totalAmount = $params['total_amount'] = $params['prevContribution']->total_amount;
3456 }
3457 //build financial transaction params
3458 $trxnParams = [
3459 'contribution_id' => $params['contribution']->id,
3460 'to_financial_account_id' => $params['to_financial_account_id'],
3461 'trxn_date' => !empty($params['contribution']->receive_date) ? $params['contribution']->receive_date : date('YmdHis'),
3462 'total_amount' => $totalAmount,
3463 'fee_amount' => $params['fee_amount'] ?? NULL,
3464 'net_amount' => CRM_Utils_Array::value('net_amount', $params, $totalAmount),
3465 'currency' => $params['contribution']->currency,
3466 'trxn_id' => $params['contribution']->trxn_id,
3467 // @todo - this is getting the status id from the contribution - that is BAD - ie the contribution could be partially
3468 // paid but each payment is completed. The work around is to pass in the status_id in the trxn_params but
3469 // this should really default to completed (after discussion).
3470 'status_id' => $statusId,
3471 'payment_instrument_id' => CRM_Utils_Array::value('payment_instrument_id', $params, $params['contribution']->payment_instrument_id),
3472 'check_number' => $params['check_number'] ?? NULL,
3473 'pan_truncation' => $params['pan_truncation'] ?? NULL,
3474 'card_type_id' => $params['card_type_id'] ?? NULL,
3475 ];
3476 if ($contributionStatus == 'Refunded' || $contributionStatus == 'Chargeback' || $contributionStatus == 'Cancelled') {
3477 $trxnParams['trxn_date'] = !empty($params['contribution']->cancel_date) ? $params['contribution']->cancel_date : date('YmdHis');
3478 if (isset($params['refund_trxn_id'])) {
3479 // CRM-17751 allow a separate trxn_id for the refund to be passed in via api & form.
3480 $trxnParams['trxn_id'] = $params['refund_trxn_id'];
3481 }
3482 }
3483 //CRM-16259, set is_payment flag for non pending status
3484 if (!in_array($contributionStatus, $pendingStatus)) {
3485 $trxnParams['is_payment'] = 1;
3486 }
3487 if (!empty($params['payment_processor'])) {
3488 $trxnParams['payment_processor_id'] = $params['payment_processor'];
3489 }
3490
3491 if (isset($fromFinancialAccountId)) {
3492 $trxnParams['from_financial_account_id'] = $fromFinancialAccountId;
3493 }
3494
3495 // consider external values passed for recording transaction entry
3496 if (!empty($financialTrxnValues)) {
3497 $trxnParams = array_merge($trxnParams, $financialTrxnValues);
3498 }
3499 if (empty($trxnParams['payment_processor_id'])) {
3500 unset($trxnParams['payment_processor_id']);
3501 }
3502
3503 $params['trxnParams'] = $trxnParams;
3504
3505 if ($isUpdate) {
3506 $updated = FALSE;
3507 $params['trxnParams']['total_amount'] = $trxnParams['total_amount'] = $params['total_amount'] = $params['prevContribution']->total_amount;
3508 $params['trxnParams']['fee_amount'] = $params['prevContribution']->fee_amount;
3509 $params['trxnParams']['net_amount'] = $params['prevContribution']->net_amount;
3510 if (!isset($params['trxnParams']['trxn_id'])) {
3511 // Actually I have no idea why we are overwriting any values from the previous contribution.
3512 // (filling makes sense to me). However, only protecting this value as I really really know we
3513 // don't want this one overwritten.
3514 // CRM-17751.
3515 $params['trxnParams']['trxn_id'] = $params['prevContribution']->trxn_id;
3516 }
3517 $params['trxnParams']['status_id'] = $params['prevContribution']->contribution_status_id;
3518
3519 if (!(($params['prevContribution']->contribution_status_id == array_search('Pending', $contributionStatuses)
3520 || $params['prevContribution']->contribution_status_id == array_search('In Progress', $contributionStatuses))
3521 && $params['contribution']->contribution_status_id == array_search('Completed', $contributionStatuses))
3522 ) {
3523 $params['trxnParams']['payment_instrument_id'] = $params['prevContribution']->payment_instrument_id;
3524 $params['trxnParams']['check_number'] = $params['prevContribution']->check_number;
3525 }
3526
3527 //if financial type is changed
3528 if (!empty($params['financial_type_id']) &&
3529 $params['contribution']->financial_type_id != $params['prevContribution']->financial_type_id
3530 ) {
3531 $accountRelationship = 'Income Account is';
3532 if (!empty($params['revenue_recognition_date']) || $params['prevContribution']->revenue_recognition_date) {
3533 $accountRelationship = 'Deferred Revenue Account is';
3534 }
3535 $oldFinancialAccount = CRM_Financial_BAO_FinancialAccount::getFinancialAccountForFinancialTypeByRelationship($params['prevContribution']->financial_type_id, $accountRelationship);
3536 $newFinancialAccount = CRM_Financial_BAO_FinancialAccount::getFinancialAccountForFinancialTypeByRelationship($params['financial_type_id'], $accountRelationship);
3537 if ($oldFinancialAccount != $newFinancialAccount) {
3538 $params['total_amount'] = 0;
3539 // If we have a fee amount set reverse this as well.
3540 if (isset($params['fee_amount'])) {
3541 $params['trxnParams']['fee_amount'] = 0 - $params['fee_amount'];
3542 }
3543 if (in_array($params['contribution']->contribution_status_id, $pendingStatus)) {
3544 $params['trxnParams']['to_financial_account_id'] = CRM_Financial_BAO_FinancialAccount::getFinancialAccountForFinancialTypeByRelationship(
3545 $params['prevContribution']->financial_type_id, $accountRelationship);
3546 }
3547 else {
3548 $lastFinancialTrxnId = CRM_Core_BAO_FinancialTrxn::getFinancialTrxnId($params['prevContribution']->id, 'DESC');
3549 if (!empty($lastFinancialTrxnId['financialTrxnId'])) {
3550 $params['trxnParams']['to_financial_account_id'] = CRM_Core_DAO::getFieldValue('CRM_Financial_DAO_FinancialTrxn', $lastFinancialTrxnId['financialTrxnId'], 'to_financial_account_id');
3551 }
3552 }
3553 self::updateFinancialAccounts($params, 'changeFinancialType');
3554 $params['skipLineItem'] = FALSE;
3555 foreach ($params['line_item'] as &$lineItems) {
3556 foreach ($lineItems as &$line) {
3557 $line['financial_type_id'] = $params['financial_type_id'];
3558 }
3559 }
3560 CRM_Core_BAO_FinancialTrxn::createDeferredTrxn(CRM_Utils_Array::value('line_item', $params), $params['contribution'], TRUE, 'changeFinancialType');
3561 /* $params['trxnParams']['to_financial_account_id'] = $trxnParams['to_financial_account_id']; */
3562 $params['financial_account_id'] = $newFinancialAccount;
3563 $params['total_amount'] = $params['trxnParams']['total_amount'] = $params['trxnParams']['net_amount'] = $trxnParams['total_amount'];
3564 // Set the transaction fee amount back to the original value for creating the new positive financial trxn.
3565 if (isset($params['fee_amount'])) {
3566 $params['trxnParams']['fee_amount'] = $params['fee_amount'];
3567 }
3568 self::updateFinancialAccounts($params);
3569 CRM_Core_BAO_FinancialTrxn::createDeferredTrxn(CRM_Utils_Array::value('line_item', $params), $params['contribution'], TRUE);
3570 $params['trxnParams']['to_financial_account_id'] = $trxnParams['to_financial_account_id'];
3571 $updated = TRUE;
3572 $params['deferred_financial_account_id'] = $newFinancialAccount;
3573 }
3574 }
3575
3576 //Update contribution status
3577 $params['trxnParams']['status_id'] = $params['contribution']->contribution_status_id;
3578 if (!isset($params['refund_trxn_id'])) {
3579 // CRM-17751 This has previously been deliberately set. No explanation as to why one variant
3580 // gets preference over another so I am only 'protecting' a very specific tested flow
3581 // and letting natural justice take care of the rest.
3582 $params['trxnParams']['trxn_id'] = $params['contribution']->trxn_id;
3583 }
3584 if (!empty($params['contribution_status_id']) &&
3585 $params['prevContribution']->contribution_status_id != $params['contribution']->contribution_status_id
3586 ) {
3587 //Update Financial Records
3588 $callUpdateFinancialAccounts = self::updateFinancialAccountsOnContributionStatusChange($params);
3589 if ($callUpdateFinancialAccounts) {
3590 self::updateFinancialAccounts($params, 'changedStatus');
3591 CRM_Core_BAO_FinancialTrxn::createDeferredTrxn(CRM_Utils_Array::value('line_item', $params), $params['contribution'], TRUE, 'changedStatus');
3592 }
3593 $updated = TRUE;
3594 }
3595
3596 // change Payment Instrument for a Completed contribution
3597 // first handle special case when contribution is changed from Pending to Completed status when initial payment
3598 // instrument is null and now new payment instrument is added along with the payment
3599 if (!$params['contribution']->payment_instrument_id) {
3600 $params['contribution']->find(TRUE);
3601 }
3602 $params['trxnParams']['payment_instrument_id'] = $params['contribution']->payment_instrument_id;
3603 $params['trxnParams']['check_number'] = $params['check_number'] ?? NULL;
3604
3605 if (self::isPaymentInstrumentChange($params, $pendingStatus)) {
3606 $updated = CRM_Core_BAO_FinancialTrxn::updateFinancialAccountsOnPaymentInstrumentChange($params);
3607 }
3608
3609 //if Change contribution amount
3610 $params['trxnParams']['fee_amount'] = $params['fee_amount'] ?? NULL;
3611 $params['trxnParams']['net_amount'] = $params['net_amount'] ?? NULL;
3612 $params['trxnParams']['total_amount'] = $trxnParams['total_amount'] = $params['total_amount'] = $totalAmount;
3613 $params['trxnParams']['trxn_id'] = $params['contribution']->trxn_id;
3614 if (isset($totalAmount) &&
3615 $totalAmount != $params['prevContribution']->total_amount
3616 ) {
3617 //Update Financial Records
3618 $params['trxnParams']['from_financial_account_id'] = NULL;
3619 self::updateFinancialAccounts($params, 'changedAmount');
3620 CRM_Core_BAO_FinancialTrxn::createDeferredTrxn(CRM_Utils_Array::value('line_item', $params), $params['contribution'], TRUE, 'changedAmount');
3621 $updated = TRUE;
3622 }
3623
3624 if (!$updated) {
3625 // Looks like we might have a data correction update.
3626 // This would be a case where a transaction id has been entered but it is incorrect &
3627 // the person goes back in & fixes it, as opposed to a new transaction.
3628 // Currently the UI doesn't support multiple refunds against a single transaction & we are only supporting
3629 // the data fix scenario.
3630 // CRM-17751.
3631 if (isset($params['refund_trxn_id'])) {
3632 $refundIDs = CRM_Core_BAO_FinancialTrxn::getRefundTransactionIDs($params['id']);
3633 if (!empty($refundIDs['financialTrxnId']) && $refundIDs['trxn_id'] != $params['refund_trxn_id']) {
3634 civicrm_api3('FinancialTrxn', 'create', [
3635 'id' => $refundIDs['financialTrxnId'],
3636 'trxn_id' => $params['refund_trxn_id'],
3637 ]);
3638 }
3639 }
3640 $cardType = $params['card_type_id'] ?? NULL;
3641 $panTruncation = $params['pan_truncation'] ?? NULL;
3642 CRM_Core_BAO_FinancialTrxn::updateCreditCardDetails($params['contribution']->id, $panTruncation, $cardType);
3643 }
3644 }
3645
3646 else {
3647 // records finanical trxn and entity financial trxn
3648 // also make it available as return value
3649 self::recordAlwaysAccountsReceivable($trxnParams, $params);
3650 $trxnParams['pan_truncation'] = $params['pan_truncation'] ?? NULL;
3651 $trxnParams['card_type_id'] = $params['card_type_id'] ?? NULL;
3652 $return = $financialTxn = CRM_Core_BAO_FinancialTrxn::create($trxnParams);
3653 $params['entity_id'] = $financialTxn->id;
3654 if (empty($params['partial_payment_total']) && empty($params['partial_amount_to_pay'])) {
3655 self::$_trxnIDs[] = $financialTxn->id;
3656 }
3657 }
3658 }
3659 // record line items and financial items
3660 if (empty($params['skipLineItem'])) {
3661 CRM_Price_BAO_LineItem::processPriceSet($entityId, CRM_Utils_Array::value('line_item', $params), $params['contribution'], $entityTable, $isUpdate);
3662 }
3663
3664 // create batch entry if batch_id is passed and
3665 // ensure no batch entry is been made on 'Pending' or 'Failed' contribution, CRM-16611
3666 if (!empty($params['batch_id']) && !empty($financialTxn)) {
3667 $entityParams = [
3668 'batch_id' => $params['batch_id'],
3669 'entity_table' => 'civicrm_financial_trxn',
3670 'entity_id' => $financialTxn->id,
3671 ];
3672 CRM_Batch_BAO_EntityBatch::create($entityParams);
3673 }
3674
3675 // when a fee is charged
3676 if (!empty($params['fee_amount']) && (empty($params['prevContribution']) || $params['contribution']->fee_amount != $params['prevContribution']->fee_amount) && $skipRecords) {
3677 CRM_Core_BAO_FinancialTrxn::recordFees($params);
3678 }
3679
3680 if (!empty($params['prevContribution']) && $entityTable == 'civicrm_participant'
3681 && $params['prevContribution']->contribution_status_id != $params['contribution']->contribution_status_id
3682 ) {
3683 $eventID = CRM_Core_DAO::getFieldValue('CRM_Event_DAO_Participant', $entityId, 'event_id');
3684 $feeLevel[] = str_replace('\ 1', '', $params['prevContribution']->amount_level);
3685 CRM_Event_BAO_Participant::createDiscountTrxn($eventID, $params, $feeLevel);
3686 }
3687 unset($params['line_item']);
3688 self::$_trxnIDs = NULL;
3689 return $return;
3690 }
3691
3692 /**
3693 * Update all financial accounts entry.
3694 *
3695 * @param array $params
3696 * Contribution object, line item array and params for trxn.
3697 *
3698 * @param string $context
3699 * Update scenarios.
3700 *
3701 * @todo stop passing $params by reference. It is unclear the purpose of doing this &
3702 * adds unpredictability.
3703 *
3704 */
3705 public static function updateFinancialAccounts(&$params, $context = NULL) {
3706 $trxnID = NULL;
3707 $inputParams = $params;
3708 $isARefund = self::isContributionUpdateARefund($params['prevContribution']->contribution_status_id, $params['contribution']->contribution_status_id);
3709
3710 if ($context == 'changedAmount' || $context == 'changeFinancialType') {
3711 // @todo we should stop passing $params by reference - splitting this out would be a step towards that.
3712 $params['trxnParams']['total_amount'] = $params['trxnParams']['net_amount'] = ($params['total_amount'] - $params['prevContribution']->total_amount);
3713 }
3714
3715 $trxn = CRM_Core_BAO_FinancialTrxn::create($params['trxnParams']);
3716 // @todo we should stop passing $params by reference - splitting this out would be a step towards that.
3717 $params['entity_id'] = $trxn->id;
3718
3719 $itemParams['entity_table'] = 'civicrm_line_item';
3720 $trxnIds['id'] = $params['entity_id'];
3721 $previousLineItems = CRM_Price_BAO_LineItem::getLineItemsByContributionID($params['contribution']->id);
3722 foreach ($params['line_item'] as $fieldId => $fields) {
3723 $params = self::createFinancialItemsForLine($params, $context, $fields, $previousLineItems, $inputParams, $isARefund, $trxnIds, $fieldId);
3724 }
3725 }
3726
3727 /**
3728 * Is this contribution status a reversal.
3729 *
3730 * If so we would expect to record a negative value in the financial_trxn table.
3731 *
3732 * @param int $status_id
3733 *
3734 * @return bool
3735 */
3736 public static function isContributionStatusNegative($status_id) {
3737 $reversalStatuses = ['Cancelled', 'Chargeback', 'Refunded'];
3738 return in_array(CRM_Core_PseudoConstant::getName('CRM_Contribute_BAO_Contribution', 'contribution_status_id', $status_id), $reversalStatuses, TRUE);
3739 }
3740
3741 /**
3742 * Check status validation on update of a contribution.
3743 *
3744 * @param array $values
3745 * Previous form values before submit.
3746 *
3747 * @param array $fields
3748 * The input form values.
3749 *
3750 * @param array $errors
3751 * List of errors.
3752 *
3753 * @return bool
3754 */
3755 public static function checkStatusValidation($values, &$fields, &$errors) {
3756 if (CRM_Utils_System::isNull($values) && !empty($fields['id'])) {
3757 $values['contribution_status_id'] = CRM_Core_DAO::getFieldValue('CRM_Contribute_DAO_Contribution', $fields['id'], 'contribution_status_id');
3758 if ($values['contribution_status_id'] == $fields['contribution_status_id']) {
3759 return FALSE;
3760 }
3761 }
3762 $contributionStatuses = CRM_Contribute_PseudoConstant::contributionStatus(NULL, 'name');
3763 $checkStatus = [
3764 'Cancelled' => ['Completed', 'Refunded'],
3765 'Completed' => ['Cancelled', 'Refunded', 'Chargeback'],
3766 'Pending' => ['Cancelled', 'Completed', 'Failed', 'Partially paid'],
3767 'In Progress' => ['Cancelled', 'Completed', 'Failed'],
3768 'Refunded' => ['Cancelled', 'Completed'],
3769 'Partially paid' => ['Completed'],
3770 'Pending refund' => ['Completed', 'Refunded'],
3771 'Failed' => ['Pending'],
3772 ];
3773
3774 if (!in_array($contributionStatuses[$fields['contribution_status_id']],
3775 CRM_Utils_Array::value($contributionStatuses[$values['contribution_status_id']], $checkStatus, []))
3776 ) {
3777 $errors['contribution_status_id'] = ts("Cannot change contribution status from %1 to %2.", [
3778 1 => $contributionStatuses[$values['contribution_status_id']],
3779 2 => $contributionStatuses[$fields['contribution_status_id']],
3780 ]);
3781 }
3782 }
3783
3784 /**
3785 * Delete contribution of contact.
3786 *
3787 * @see https://issues.civicrm.org/jira/browse/CRM-12155
3788 *
3789 * @param int $contactId
3790 * Contact id.
3791 *
3792 */
3793 public static function deleteContactContribution($contactId) {
3794 $contribution = new CRM_Contribute_DAO_Contribution();
3795 $contribution->contact_id = $contactId;
3796 $contribution->find();
3797 while ($contribution->fetch()) {
3798 self::deleteContribution($contribution->id);
3799 }
3800 }
3801
3802 /**
3803 * Get options for a given contribution field.
3804 *
3805 * @param string $fieldName
3806 * @param string $context see CRM_Core_DAO::buildOptionsContext.
3807 * @param array $props whatever is known about this dao object.
3808 *
3809 * @return array|bool
3810 * @see CRM_Core_DAO::buildOptions
3811 *
3812 */
3813 public static function buildOptions($fieldName, $context = NULL, $props = []) {
3814 $className = __CLASS__;
3815 $params = [];
3816 if (isset($props['orderColumn'])) {
3817 $params['orderColumn'] = $props['orderColumn'];
3818 }
3819 switch ($fieldName) {
3820 // This field is not part of this object but the api supports it
3821 case 'payment_processor':
3822 $className = 'CRM_Contribute_BAO_ContributionPage';
3823 // Filter results by contribution page
3824 if (!empty($props['contribution_page_id'])) {
3825 $page = civicrm_api('contribution_page', 'getsingle', [
3826 'version' => 3,
3827 'id' => ($props['contribution_page_id']),
3828 ]);
3829 $types = (array) CRM_Utils_Array::value('payment_processor', $page, 0);
3830 $params['condition'] = 'id IN (' . implode(',', $types) . ')';
3831 }
3832 break;
3833
3834 // CRM-13981 This field was combined with soft_credits in 4.5 but the api still supports it
3835 case 'honor_type_id':
3836 $className = 'CRM_Contribute_BAO_ContributionSoft';
3837 $fieldName = 'soft_credit_type_id';
3838 $params['condition'] = "v.name IN ('in_honor_of','in_memory_of')";
3839 break;
3840
3841 case 'contribution_status_id':
3842 if ($context !== 'validate') {
3843 $params['condition'] = "v.name <> 'Template'";
3844 }
3845 }
3846 return CRM_Core_PseudoConstant::get($className, $fieldName, $params, $context);
3847 }
3848
3849 /**
3850 * Validate financial type.
3851 *
3852 * @see https://issues.civicrm.org/jira/browse/CRM-13231
3853 *
3854 * @param int $financialTypeId
3855 * Financial Type id.
3856 *
3857 * @param string $relationName
3858 *
3859 * @return array|bool
3860 */
3861 public static function validateFinancialType($financialTypeId, $relationName = 'Expense Account is') {
3862 $financialAccount = CRM_Contribute_PseudoConstant::getRelationalFinancialAccount($financialTypeId, $relationName);
3863
3864 if (!$financialAccount) {
3865 return CRM_Contribute_PseudoConstant::financialType($financialTypeId);
3866 }
3867 return FALSE;
3868 }
3869
3870 /**
3871 * @param int $targetCid
3872 * @param $activityType
3873 * @param string $title
3874 * @param int $contributionId
3875 * @param string $totalAmount
3876 * @param string $currency
3877 * @param string $trxn_date
3878 *
3879 * @throws \CRM_Core_Exception
3880 * @throws \CiviCRM_API3_Exception
3881 */
3882 public static function addActivityForPayment($targetCid, $activityType, $title, $contributionId, $totalAmount, $currency, $trxn_date) {
3883 $paymentAmount = CRM_Utils_Money::format($totalAmount, $currency);
3884 $subject = "{$paymentAmount} - Offline {$activityType} for {$title}";
3885 $date = CRM_Utils_Date::isoToMysql($trxn_date);
3886 // source record id would be the contribution id
3887 $srcRecId = $contributionId;
3888
3889 // activity params
3890 $activityParams = [
3891 'source_contact_id' => $targetCid,
3892 'source_record_id' => $srcRecId,
3893 'activity_type_id' => CRM_Core_PseudoConstant::getKey('CRM_Activity_BAO_Activity', 'activity_type_id', $activityType),
3894 'subject' => $subject,
3895 'activity_date_time' => $date,
3896 'status_id' => CRM_Core_PseudoConstant::getKey('CRM_Activity_BAO_Activity', 'activity_status_id', 'Completed'),
3897 'skipRecentView' => TRUE,
3898 ];
3899
3900 // create activity with target contacts
3901 $session = CRM_Core_Session::singleton();
3902 $id = $session->get('userID');
3903 if ($id) {
3904 $activityParams['source_contact_id'] = $id;
3905 $activityParams['target_contact_id'][] = $targetCid;
3906 }
3907 civicrm_api3('Activity', 'create', $activityParams);
3908 }
3909
3910 /**
3911 * Get list of payments displayed by Contribute_Page_PaymentInfo.
3912 *
3913 * @param int $id
3914 * @param string $component
3915 * @param bool $getTrxnInfo
3916 *
3917 * @return mixed
3918 *
3919 * @throws \CRM_Core_Exception
3920 * @throws \CiviCRM_API3_Exception
3921 */
3922 public static function getPaymentInfo($id, $component = 'contribution', $getTrxnInfo = FALSE) {
3923 // @todo deprecate passing in component - always call with contribution.
3924 if ($component == 'event') {
3925 $contributionId = CRM_Core_DAO::getFieldValue('CRM_Event_BAO_ParticipantPayment', $id, 'contribution_id', 'participant_id');
3926
3927 if (!$contributionId) {
3928 if ($primaryParticipantId = CRM_Core_DAO::getFieldValue('CRM_Event_BAO_Participant', $id, 'registered_by_id')) {
3929 $contributionId = CRM_Core_DAO::getFieldValue('CRM_Event_BAO_ParticipantPayment', $primaryParticipantId, 'contribution_id', 'participant_id');
3930 $id = $primaryParticipantId;
3931 }
3932 if (!$contributionId) {
3933 return;
3934 }
3935 }
3936 }
3937 elseif ($component == 'membership') {
3938 $contributionId = CRM_Core_DAO::getFieldValue('CRM_Member_DAO_MembershipPayment', $id, 'contribution_id', 'membership_id');
3939 }
3940 else {
3941 $contributionId = $id;
3942 }
3943
3944 // The balance used to be calculated this way - we really want to remove this 'oldCalculation'
3945 // but need to unpick the whole trxn_id it's returning first.
3946 $oldCalculation = CRM_Core_BAO_FinancialTrxn::getBalanceTrxnAmt($contributionId);
3947 $baseTrxnId = !empty($oldCalculation['trxn_id']) ? $oldCalculation['trxn_id'] : NULL;
3948 if (!$baseTrxnId) {
3949 $baseTrxnId = CRM_Core_BAO_FinancialTrxn::getFinancialTrxnId($contributionId);
3950 $baseTrxnId = $baseTrxnId['financialTrxnId'];
3951 }
3952 $total = CRM_Price_BAO_LineItem::getLineTotal($contributionId);
3953
3954 $paymentBalance = CRM_Contribute_BAO_Contribution::getContributionBalance($contributionId, $total);
3955
3956 $contribution = civicrm_api3('Contribution', 'getsingle', [
3957 'id' => $contributionId,
3958 'return' => [
3959 'currency',
3960 'is_pay_later',
3961 'contribution_status_id',
3962 'financial_type_id',
3963 ],
3964 ]);
3965
3966 $info['payLater'] = $contribution['is_pay_later'];
3967 $info['contribution_status'] = $contribution['contribution_status'];
3968 $info['currency'] = $contribution['currency'];
3969
3970 $info['total'] = $total;
3971 $info['paid'] = $total - $paymentBalance;
3972 $info['balance'] = $paymentBalance;
3973 $info['id'] = $id;
3974 $info['component'] = $component;
3975 if ($getTrxnInfo && $baseTrxnId) {
3976 $info['transaction'] = self::getContributionTransactionInformation($contributionId, $contribution['financial_type_id']);
3977 }
3978
3979 $info['payment_links'] = self::getContributionPaymentLinks($id, $paymentBalance, $info['contribution_status']);
3980 return $info;
3981 }
3982
3983 /**
3984 * Get the outstanding balance on a contribution.
3985 *
3986 * @param int $contributionId
3987 * @param float $contributionTotal
3988 * Optional amount to override the saved amount paid (e.g if calculating what it WILL be).
3989 *
3990 * @return float
3991 */
3992 public static function getContributionBalance($contributionId, $contributionTotal = NULL) {
3993 if ($contributionTotal === NULL) {
3994 $contributionTotal = CRM_Price_BAO_LineItem::getLineTotal($contributionId);
3995 }
3996
3997 return (float) CRM_Utils_Money::subtractCurrencies(
3998 $contributionTotal,
3999 CRM_Core_BAO_FinancialTrxn::getTotalPayments($contributionId, TRUE),
4000 CRM_Core_DAO::getFieldValue('CRM_Contribute_DAO_Contribution', $contributionId, 'currency')
4001 );
4002 }
4003
4004 /**
4005 * Get the tax amount (misnamed function).
4006 *
4007 * @param array $params
4008 *
4009 * @return array
4010 * @throws \CiviCRM_API3_Exception
4011 */
4012 protected static function checkTaxAmount($params) {
4013 $taxRates = CRM_Core_PseudoConstant::getTaxRates();
4014
4015 // Update contribution.
4016 if (!empty($params['id'])) {
4017 // CRM-19126 and CRM-19152 If neither total or financial_type_id are set on an update
4018 // there are no tax implications - early return.
4019 if (!isset($params['total_amount']) && !isset($params['financial_type_id'])) {
4020 return $params;
4021 }
4022 if (empty($params['prevContribution'])) {
4023 $params['prevContribution'] = self::getOriginalContribution($params['id']);
4024 }
4025
4026 foreach (['total_amount', 'financial_type_id', 'fee_amount'] as $field) {
4027 if (!isset($params[$field])) {
4028 if ($field == 'total_amount' && $params['prevContribution']->tax_amount) {
4029 // Tax amount gets added back on later....
4030 $params['total_amount'] = $params['prevContribution']->total_amount -
4031 $params['prevContribution']->tax_amount;
4032 }
4033 else {
4034 $params[$field] = $params['prevContribution']->$field;
4035 if ($params[$field] != $params['prevContribution']->$field) {
4036 }
4037 }
4038 }
4039 }
4040
4041 self::calculateMissingAmountParams($params, $params['id']);
4042 if (!array_key_exists($params['financial_type_id'], $taxRates)) {
4043 // Assign tax Amount on update of contribution
4044 if (!empty($params['prevContribution']->tax_amount)) {
4045 $params['tax_amount'] = 'null';
4046 foreach ($params['line_item'] as $setID => $priceField) {
4047 foreach ($priceField as $priceFieldID => $priceFieldValue) {
4048 $params['line_item'][$setID][$priceFieldID]['tax_amount'] = $params['tax_amount'];
4049 }
4050 }
4051 }
4052 }
4053 }
4054
4055 // New Contribution and update of contribution with tax rate financial type
4056 if (isset($params['financial_type_id']) && array_key_exists($params['financial_type_id'], $taxRates) &&
4057 empty($params['skipLineItem'])) {
4058 $taxRateParams = $taxRates[$params['financial_type_id']];
4059 $taxAmount = CRM_Contribute_BAO_Contribution_Utils::calculateTaxAmount(CRM_Utils_Array::value('total_amount', $params), $taxRateParams);
4060 $params['tax_amount'] = round($taxAmount['tax_amount'], 2);
4061
4062 foreach ($params['line_item'] as $setID => $priceField) {
4063 foreach ($priceField as $priceFieldID => $priceFieldValue) {
4064 $params['line_item'][$setID][$priceFieldID]['tax_amount'] = $params['tax_amount'];
4065 }
4066 }
4067 $params['total_amount'] = CRM_Utils_Array::value('total_amount', $params) + $params['tax_amount'];
4068 }
4069 elseif (isset($params['api.line_item.create'])) {
4070 // Update total amount of contribution using lineItem
4071 $taxAmountArray = [];
4072 foreach ($params['api.line_item.create'] as $key => $value) {
4073 if (isset($value['financial_type_id']) && array_key_exists($value['financial_type_id'], $taxRates)) {
4074 $taxRate = $taxRates[$value['financial_type_id']];
4075 $taxAmount = CRM_Contribute_BAO_Contribution_Utils::calculateTaxAmount($value['line_total'], $taxRate);
4076 $taxAmountArray[] = round($taxAmount['tax_amount'], 2);
4077 }
4078 }
4079 $params['tax_amount'] = array_sum($taxAmountArray);
4080 $params['total_amount'] = $params['total_amount'] + $params['tax_amount'];
4081 }
4082
4083 return $params;
4084 }
4085
4086 /**
4087 * Check financial type validation on update of a contribution.
4088 *
4089 * @param int $financialTypeId
4090 * Value of latest Financial Type.
4091 *
4092 * @param int $contributionId
4093 * Contribution Id.
4094 *
4095 * @param array $errors
4096 * List of errors.
4097 *
4098 * @return void
4099 */
4100 public static function checkFinancialTypeChange($financialTypeId, $contributionId, &$errors) {
4101 if (!empty($financialTypeId)) {
4102 $oldFinancialTypeId = CRM_Core_DAO::getFieldValue('CRM_Contribute_DAO_Contribution', $contributionId, 'financial_type_id');
4103 if ($oldFinancialTypeId == $financialTypeId) {
4104 return;
4105 }
4106 }
4107 $sql = 'SELECT financial_type_id FROM civicrm_line_item WHERE contribution_id = %1 GROUP BY financial_type_id;';
4108 $params = [
4109 '1' => [$contributionId, 'Integer'],
4110 ];
4111 $result = CRM_Core_DAO::executeQuery($sql, $params);
4112 if ($result->N > 1) {
4113 $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.');
4114 }
4115 }
4116
4117 /**
4118 * Update related pledge payment payments.
4119 *
4120 * This function has been refactored out of the back office contribution form and may
4121 * still overlap with other functions.
4122 *
4123 * @param string $action
4124 * @param int $pledgePaymentID
4125 * @param int $contributionID
4126 * @param bool $adjustTotalAmount
4127 * @param float $total_amount
4128 * @param float $original_total_amount
4129 * @param int $contribution_status_id
4130 * @param int $original_contribution_status_id
4131 */
4132 public static function updateRelatedPledge(
4133 $action,
4134 $pledgePaymentID,
4135 $contributionID,
4136 $adjustTotalAmount,
4137 $total_amount,
4138 $original_total_amount,
4139 $contribution_status_id,
4140 $original_contribution_status_id
4141 ) {
4142 if (!$pledgePaymentID && $action & CRM_Core_Action::ADD && !$contributionID) {
4143 return;
4144 }
4145
4146 if ($pledgePaymentID) {
4147 //store contribution id in payment record.
4148 CRM_Core_DAO::setFieldValue('CRM_Pledge_DAO_PledgePayment', $pledgePaymentID, 'contribution_id', $contributionID);
4149 }
4150 else {
4151 $pledgePaymentID = CRM_Core_DAO::getFieldValue('CRM_Pledge_DAO_PledgePayment',
4152 $contributionID,
4153 'id',
4154 'contribution_id'
4155 );
4156 }
4157
4158 if (!$pledgePaymentID) {
4159 return;
4160 }
4161 $pledgeID = CRM_Core_DAO::getFieldValue('CRM_Pledge_DAO_PledgePayment',
4162 $contributionID,
4163 'pledge_id',
4164 'contribution_id'
4165 );
4166
4167 $updatePledgePaymentStatus = FALSE;
4168
4169 // If either the status or the amount has changed we update the pledge status.
4170 if ($action & CRM_Core_Action::ADD) {
4171 $updatePledgePaymentStatus = TRUE;
4172 }
4173 elseif ($action & CRM_Core_Action::UPDATE && (($original_contribution_status_id != $contribution_status_id) ||
4174 ($original_total_amount != $total_amount))
4175 ) {
4176 $updatePledgePaymentStatus = TRUE;
4177 }
4178
4179 if ($updatePledgePaymentStatus) {
4180 CRM_Pledge_BAO_PledgePayment::updatePledgePaymentStatus($pledgeID,
4181 [$pledgePaymentID],
4182 $contribution_status_id,
4183 NULL,
4184 $total_amount,
4185 $adjustTotalAmount
4186 );
4187 }
4188 }
4189
4190 /**
4191 * Is there only one line item attached to the contribution.
4192 *
4193 * @param int $id
4194 * Contribution ID.
4195 *
4196 * @return bool
4197 * @throws \CiviCRM_API3_Exception
4198 */
4199 public static function isSingleLineItem($id) {
4200 $lineItemCount = civicrm_api3('LineItem', 'getcount', ['contribution_id' => $id]);
4201 return ($lineItemCount == 1);
4202 }
4203
4204 /**
4205 * Complete an order.
4206 *
4207 * Do not call this directly - use the contribution.completetransaction api as this function is being refactored.
4208 *
4209 * Currently overloaded to complete a transaction & repeat a transaction - fix!
4210 *
4211 * Moving it out of the BaseIPN class is just the first step.
4212 *
4213 * @param array $input
4214 * @param array $ids
4215 * @param \CRM_Contribute_BAO_Contribution $contribution
4216 * @param bool $isPostPaymentCreate
4217 * Is this being called from the payment.create api. If so the api has taken care of financial entities.
4218 * Note that our goal is that this would only ever be called from payment.create and never handle financials (only
4219 * transitioning related elements).
4220 *
4221 * @return array
4222 * @throws \CRM_Core_Exception
4223 * @throws \CiviCRM_API3_Exception
4224 */
4225 public static function completeOrder($input, $ids, $contribution, $isPostPaymentCreate = FALSE) {
4226 $transaction = new CRM_Core_Transaction();
4227 // @todo see if we even need this - it's used further down to create an activity
4228 // but the BAO layer should create that - we just need to add a test to cover it & can
4229 // maybe remove $ids altogether.
4230 $participantID = $ids['participant'];
4231 $recurringContributionID = $ids['contributionRecur'];
4232
4233 // Unset ids just to make it clear it's not used again.
4234 unset($ids);
4235 // The previous details are used when calculating line items so keep it before any code that 'does something'
4236 if (!empty($contribution->id)) {
4237 $input['prevContribution'] = CRM_Contribute_BAO_Contribution::getValues(['id' => $contribution->id]);
4238 }
4239 $inputContributionWhiteList = [
4240 'fee_amount',
4241 'net_amount',
4242 'trxn_id',
4243 'check_number',
4244 'payment_instrument_id',
4245 'is_test',
4246 'campaign_id',
4247 'receive_date',
4248 'receipt_date',
4249 'contribution_status_id',
4250 'card_type_id',
4251 'pan_truncation',
4252 'financial_type_id',
4253 ];
4254
4255 $paymentProcessorId = $input['payment_processor_id'] ?? NULL;
4256
4257 $completedContributionStatusID = CRM_Core_PseudoConstant::getKey('CRM_Contribute_BAO_Contribution', 'contribution_status_id', 'Completed');
4258
4259 $contributionParams = array_merge([
4260 'contribution_status_id' => $completedContributionStatusID,
4261 ], array_intersect_key($input, array_fill_keys($inputContributionWhiteList, 1)
4262 ));
4263
4264 $contributionParams['payment_processor'] = $paymentProcessorId;
4265
4266 if (empty($contributionParams['payment_instrument_id']) && $paymentProcessorId) {
4267 $contributionParams['payment_instrument_id'] = PaymentProcessor::get(FALSE)->addWhere('id', '=', $paymentProcessorId)->addSelect('payment_instrument_id')->execute()->first()['payment_instrument_id'];
4268 }
4269
4270 if ($recurringContributionID) {
4271 $contributionParams['contribution_recur_id'] = $recurringContributionID;
4272 }
4273 $changeDate = CRM_Utils_Array::value('trxn_date', $input, date('YmdHis'));
4274
4275 $contributionResult = self::repeatTransaction($contribution, $input, $contributionParams);
4276 $contributionID = (int) $contribution->id;
4277
4278 if ($input['component'] == 'contribute') {
4279 if ($contributionParams['contribution_status_id'] === $completedContributionStatusID) {
4280 self::updateMembershipBasedOnCompletionOfContribution(
4281 $contributionID,
4282 $changeDate
4283 );
4284 }
4285 }
4286 else {
4287 if (empty($input['IAmAHorribleNastyBeyondExcusableHackInTheCRMEventFORMTaskClassThatNeedsToBERemoved'])) {
4288 $participantParams['id'] = $participantID;
4289 $participantParams['status_id'] = 'Registered';
4290 civicrm_api3('Participant', 'create', $participantParams);
4291 }
4292 }
4293
4294 $contributionParams['id'] = $contributionID;
4295 $contributionParams['is_post_payment_create'] = $isPostPaymentCreate;
4296
4297 if (!$contributionResult) {
4298 $contributionResult = civicrm_api3('Contribution', 'create', $contributionParams);
4299 }
4300
4301 $contribution->contribution_status_id = $contributionParams['contribution_status_id'];
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, $contribution->contribution_page_id, $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 }