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