Merge pull request #16901 from eileenmcnaughton/settings
[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
3500 $additionalParticipantId = [];
3501 $contributionStatuses = CRM_Contribute_PseudoConstant::contributionStatus(NULL, 'name');
3502 $contributionStatus = empty($params['contribution_status_id']) ? NULL : $contributionStatuses[$params['contribution_status_id']];
3503
3504 if (CRM_Utils_Array::value('contribution_mode', $params) == 'participant') {
3505 $entityId = $params['participant_id'];
3506 $entityTable = 'civicrm_participant';
3507 $additionalParticipantId = CRM_Event_BAO_Participant::getAdditionalParticipantIds($entityId);
3508 }
3509 elseif (!empty($params['membership_id'])) {
3510 //so far $params['membership_id'] should only be set coming in from membershipBAO::create so the situation where multiple memberships
3511 // are created off one contribution should be handled elsewhere
3512 $entityId = $params['membership_id'];
3513 $entityTable = 'civicrm_membership';
3514 }
3515 else {
3516 $entityId = $params['contribution']->id;
3517 $entityTable = 'civicrm_contribution';
3518 }
3519
3520 if (CRM_Utils_Array::value('contribution_mode', $params) == 'membership') {
3521 $isRelatedId = TRUE;
3522 }
3523
3524 $entityID[] = $entityId;
3525 if (!empty($additionalParticipantId)) {
3526 $entityID += $additionalParticipantId;
3527 }
3528 // prevContribution appears to mean - original contribution object- ie copy of contribution from before the update started that is being updated
3529 if (empty($params['prevContribution'])) {
3530 $entityID = NULL;
3531 }
3532 else {
3533 $update = TRUE;
3534 }
3535
3536 $statusId = $params['contribution']->contribution_status_id;
3537 // CRM-13964 partial payment
3538 if ($contributionStatus == 'Partially paid'
3539 && !empty($params['partial_payment_total']) && !empty($params['partial_amount_to_pay'])
3540 ) {
3541 CRM_Core_Error::deprecatedFunctionWarning('partial_amount params are deprecated from Contribution.create - use Payment.create');
3542 $partialAmtPay = CRM_Utils_Rule::cleanMoney($params['partial_amount_to_pay']);
3543 $partialAmtTotal = CRM_Utils_Rule::cleanMoney($params['partial_payment_total']);
3544
3545 $fromFinancialAccountId = CRM_Financial_BAO_FinancialAccount::getFinancialAccountForFinancialTypeByRelationship($params['financial_type_id'], 'Accounts Receivable Account is');
3546 $statusId = CRM_Core_PseudoConstant::getKey('CRM_Contribute_BAO_Contribution', 'contribution_status_id', 'Completed');
3547 $params['total_amount'] = $partialAmtPay;
3548
3549 $balanceTrxnInfo = CRM_Core_BAO_FinancialTrxn::getBalanceTrxnAmt($params['contribution']->id, $params['financial_type_id']);
3550 if (empty($balanceTrxnInfo['trxn_id'])) {
3551 // create new balance transaction record
3552 $toFinancialAccount = CRM_Financial_BAO_FinancialAccount::getFinancialAccountForFinancialTypeByRelationship($params['financial_type_id'], 'Accounts Receivable Account is');
3553
3554 $balanceTrxnParams['total_amount'] = $partialAmtTotal;
3555 $balanceTrxnParams['to_financial_account_id'] = $toFinancialAccount;
3556 $balanceTrxnParams['contribution_id'] = $params['contribution']->id;
3557 $balanceTrxnParams['trxn_date'] = !empty($params['contribution']->receive_date) ? $params['contribution']->receive_date : date('YmdHis');
3558 $balanceTrxnParams['fee_amount'] = $params['fee_amount'] ?? NULL;
3559 $balanceTrxnParams['net_amount'] = $params['net_amount'] ?? NULL;
3560 $balanceTrxnParams['currency'] = $params['contribution']->currency;
3561 $balanceTrxnParams['trxn_id'] = $params['contribution']->trxn_id;
3562 $balanceTrxnParams['status_id'] = $statusId;
3563 $balanceTrxnParams['payment_instrument_id'] = $params['contribution']->payment_instrument_id;
3564 $balanceTrxnParams['check_number'] = $params['check_number'] ?? NULL;
3565 $balanceTrxnParams['pan_truncation'] = $params['pan_truncation'] ?? NULL;
3566 $balanceTrxnParams['card_type_id'] = $params['card_type_id'] ?? NULL;
3567 if (!empty($balanceTrxnParams['from_financial_account_id']) &&
3568 ($statusId == array_search('Completed', $contributionStatuses) || $statusId == array_search('Partially paid', $contributionStatuses))
3569 ) {
3570 $balanceTrxnParams['is_payment'] = 1;
3571 }
3572 if (!empty($params['payment_processor'])) {
3573 $balanceTrxnParams['payment_processor_id'] = $params['payment_processor'];
3574 }
3575 $financialTxn = CRM_Core_BAO_FinancialTrxn::create($balanceTrxnParams);
3576 }
3577 }
3578
3579 // build line item array if its not set in $params
3580 if (empty($params['line_item']) || $additionalParticipantId) {
3581 CRM_Price_BAO_LineItem::getLineItemArray($params, $entityID, str_replace('civicrm_', '', $entityTable), $isRelatedId);
3582 }
3583
3584 if ($contributionStatus != 'Failed' &&
3585 !($contributionStatus == 'Pending' && !$params['contribution']->is_pay_later)
3586 ) {
3587 $skipRecords = TRUE;
3588 $pendingStatus = [
3589 'Pending',
3590 'In Progress',
3591 ];
3592 if (in_array($contributionStatus, $pendingStatus)) {
3593 $params['to_financial_account_id'] = CRM_Financial_BAO_FinancialAccount::getFinancialAccountForFinancialTypeByRelationship(
3594 $params['financial_type_id'],
3595 'Accounts Receivable Account is'
3596 );
3597 }
3598 elseif (!empty($params['payment_processor'])) {
3599 $params['to_financial_account_id'] = CRM_Contribute_PseudoConstant::getRelationalFinancialAccount($params['payment_processor'], NULL, 'civicrm_payment_processor');
3600 $params['payment_instrument_id'] = civicrm_api3('PaymentProcessor', 'getvalue', [
3601 'id' => $params['payment_processor'],
3602 'return' => 'payment_instrument_id',
3603 ]);
3604 }
3605 elseif (!empty($params['payment_instrument_id'])) {
3606 $params['to_financial_account_id'] = CRM_Financial_BAO_FinancialTypeAccount::getInstrumentFinancialAccount($params['payment_instrument_id']);
3607 }
3608 else {
3609 $relationTypeId = key(CRM_Core_PseudoConstant::accountOptionValues('financial_account_type', NULL, " AND v.name LIKE 'Asset' "));
3610 $queryParams = [1 => [$relationTypeId, 'Integer']];
3611 $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);
3612 }
3613
3614 $totalAmount = $params['total_amount'] ?? NULL;
3615 if (!isset($totalAmount) && !empty($params['prevContribution'])) {
3616 $totalAmount = $params['total_amount'] = $params['prevContribution']->total_amount;
3617 }
3618 //build financial transaction params
3619 $trxnParams = [
3620 'contribution_id' => $params['contribution']->id,
3621 'to_financial_account_id' => $params['to_financial_account_id'],
3622 'trxn_date' => !empty($params['contribution']->receive_date) ? $params['contribution']->receive_date : date('YmdHis'),
3623 'total_amount' => $totalAmount,
3624 'fee_amount' => $params['fee_amount'] ?? NULL,
3625 'net_amount' => CRM_Utils_Array::value('net_amount', $params, $totalAmount),
3626 'currency' => $params['contribution']->currency,
3627 'trxn_id' => $params['contribution']->trxn_id,
3628 // @todo - this is getting the status id from the contribution - that is BAD - ie the contribution could be partially
3629 // paid but each payment is completed. The work around is to pass in the status_id in the trxn_params but
3630 // this should really default to completed (after discussion).
3631 'status_id' => $statusId,
3632 'payment_instrument_id' => CRM_Utils_Array::value('payment_instrument_id', $params, $params['contribution']->payment_instrument_id),
3633 'check_number' => $params['check_number'] ?? NULL,
3634 'pan_truncation' => $params['pan_truncation'] ?? NULL,
3635 'card_type_id' => $params['card_type_id'] ?? NULL,
3636 ];
3637 if ($contributionStatus == 'Refunded' || $contributionStatus == 'Chargeback' || $contributionStatus == 'Cancelled') {
3638 $trxnParams['trxn_date'] = !empty($params['contribution']->cancel_date) ? $params['contribution']->cancel_date : date('YmdHis');
3639 if (isset($params['refund_trxn_id'])) {
3640 // CRM-17751 allow a separate trxn_id for the refund to be passed in via api & form.
3641 $trxnParams['trxn_id'] = $params['refund_trxn_id'];
3642 }
3643 }
3644 //CRM-16259, set is_payment flag for non pending status
3645 if (!in_array($contributionStatus, $pendingStatus)) {
3646 $trxnParams['is_payment'] = 1;
3647 }
3648 if (!empty($params['payment_processor'])) {
3649 $trxnParams['payment_processor_id'] = $params['payment_processor'];
3650 }
3651
3652 if (isset($fromFinancialAccountId)) {
3653 $trxnParams['from_financial_account_id'] = $fromFinancialAccountId;
3654 }
3655
3656 // consider external values passed for recording transaction entry
3657 if (!empty($financialTrxnValues)) {
3658 $trxnParams = array_merge($trxnParams, $financialTrxnValues);
3659 }
3660 if (empty($trxnParams['payment_processor_id'])) {
3661 unset($trxnParams['payment_processor_id']);
3662 }
3663
3664 $params['trxnParams'] = $trxnParams;
3665
3666 if (!empty($params['prevContribution'])) {
3667 $updated = FALSE;
3668 $params['trxnParams']['total_amount'] = $trxnParams['total_amount'] = $params['total_amount'] = $params['prevContribution']->total_amount;
3669 $params['trxnParams']['fee_amount'] = $params['prevContribution']->fee_amount;
3670 $params['trxnParams']['net_amount'] = $params['prevContribution']->net_amount;
3671 if (!isset($params['trxnParams']['trxn_id'])) {
3672 // Actually I have no idea why we are overwriting any values from the previous contribution.
3673 // (filling makes sense to me). However, only protecting this value as I really really know we
3674 // don't want this one overwritten.
3675 // CRM-17751.
3676 $params['trxnParams']['trxn_id'] = $params['prevContribution']->trxn_id;
3677 }
3678 $params['trxnParams']['status_id'] = $params['prevContribution']->contribution_status_id;
3679
3680 if (!(($params['prevContribution']->contribution_status_id == array_search('Pending', $contributionStatuses)
3681 || $params['prevContribution']->contribution_status_id == array_search('In Progress', $contributionStatuses))
3682 && $params['contribution']->contribution_status_id == array_search('Completed', $contributionStatuses))
3683 ) {
3684 $params['trxnParams']['payment_instrument_id'] = $params['prevContribution']->payment_instrument_id;
3685 $params['trxnParams']['check_number'] = $params['prevContribution']->check_number;
3686 }
3687
3688 //if financial type is changed
3689 if (!empty($params['financial_type_id']) &&
3690 $params['contribution']->financial_type_id != $params['prevContribution']->financial_type_id
3691 ) {
3692 $accountRelationship = 'Income Account is';
3693 if (!empty($params['revenue_recognition_date']) || $params['prevContribution']->revenue_recognition_date) {
3694 $accountRelationship = 'Deferred Revenue Account is';
3695 }
3696 $oldFinancialAccount = CRM_Financial_BAO_FinancialAccount::getFinancialAccountForFinancialTypeByRelationship($params['prevContribution']->financial_type_id, $accountRelationship);
3697 $newFinancialAccount = CRM_Financial_BAO_FinancialAccount::getFinancialAccountForFinancialTypeByRelationship($params['financial_type_id'], $accountRelationship);
3698 if ($oldFinancialAccount != $newFinancialAccount) {
3699 $params['total_amount'] = 0;
3700 if (in_array($params['contribution']->contribution_status_id, $pendingStatus)) {
3701 $params['trxnParams']['to_financial_account_id'] = CRM_Financial_BAO_FinancialAccount::getFinancialAccountForFinancialTypeByRelationship(
3702 $params['prevContribution']->financial_type_id, $accountRelationship);
3703 }
3704 else {
3705 $lastFinancialTrxnId = CRM_Core_BAO_FinancialTrxn::getFinancialTrxnId($params['prevContribution']->id, 'DESC');
3706 if (!empty($lastFinancialTrxnId['financialTrxnId'])) {
3707 $params['trxnParams']['to_financial_account_id'] = CRM_Core_DAO::getFieldValue('CRM_Financial_DAO_FinancialTrxn', $lastFinancialTrxnId['financialTrxnId'], 'to_financial_account_id');
3708 }
3709 }
3710 self::updateFinancialAccounts($params, 'changeFinancialType');
3711 $params['skipLineItem'] = FALSE;
3712 foreach ($params['line_item'] as &$lineItems) {
3713 foreach ($lineItems as &$line) {
3714 $line['financial_type_id'] = $params['financial_type_id'];
3715 }
3716 }
3717 CRM_Core_BAO_FinancialTrxn::createDeferredTrxn(CRM_Utils_Array::value('line_item', $params), $params['contribution'], TRUE, 'changeFinancialType');
3718 /* $params['trxnParams']['to_financial_account_id'] = $trxnParams['to_financial_account_id']; */
3719 $params['financial_account_id'] = $newFinancialAccount;
3720 $params['total_amount'] = $params['trxnParams']['total_amount'] = $params['trxnParams']['net_amount'] = $trxnParams['total_amount'];
3721 self::updateFinancialAccounts($params);
3722 CRM_Core_BAO_FinancialTrxn::createDeferredTrxn(CRM_Utils_Array::value('line_item', $params), $params['contribution'], TRUE);
3723 $params['trxnParams']['to_financial_account_id'] = $trxnParams['to_financial_account_id'];
3724 $updated = TRUE;
3725 $params['deferred_financial_account_id'] = $newFinancialAccount;
3726 }
3727 }
3728
3729 //Update contribution status
3730 $params['trxnParams']['status_id'] = $params['contribution']->contribution_status_id;
3731 if (!isset($params['refund_trxn_id'])) {
3732 // CRM-17751 This has previously been deliberately set. No explanation as to why one variant
3733 // gets preference over another so I am only 'protecting' a very specific tested flow
3734 // and letting natural justice take care of the rest.
3735 $params['trxnParams']['trxn_id'] = $params['contribution']->trxn_id;
3736 }
3737 if (!empty($params['contribution_status_id']) &&
3738 $params['prevContribution']->contribution_status_id != $params['contribution']->contribution_status_id
3739 ) {
3740 //Update Financial Records
3741 $callUpdateFinancialAccounts = self::updateFinancialAccountsOnContributionStatusChange($params);
3742 if ($callUpdateFinancialAccounts) {
3743 self::updateFinancialAccounts($params, 'changedStatus');
3744 CRM_Core_BAO_FinancialTrxn::createDeferredTrxn(CRM_Utils_Array::value('line_item', $params), $params['contribution'], TRUE, 'changedStatus');
3745 }
3746 $updated = TRUE;
3747 }
3748
3749 // change Payment Instrument for a Completed contribution
3750 // first handle special case when contribution is changed from Pending to Completed status when initial payment
3751 // instrument is null and now new payment instrument is added along with the payment
3752 if (!$params['contribution']->payment_instrument_id) {
3753 $params['contribution']->find(TRUE);
3754 }
3755 $params['trxnParams']['payment_instrument_id'] = $params['contribution']->payment_instrument_id;
3756 $params['trxnParams']['check_number'] = $params['check_number'] ?? NULL;
3757
3758 if (self::isPaymentInstrumentChange($params, $pendingStatus)) {
3759 $updated = CRM_Core_BAO_FinancialTrxn::updateFinancialAccountsOnPaymentInstrumentChange($params);
3760 }
3761
3762 //if Change contribution amount
3763 $params['trxnParams']['fee_amount'] = $params['fee_amount'] ?? NULL;
3764 $params['trxnParams']['net_amount'] = $params['net_amount'] ?? NULL;
3765 $params['trxnParams']['total_amount'] = $trxnParams['total_amount'] = $params['total_amount'] = $totalAmount;
3766 $params['trxnParams']['trxn_id'] = $params['contribution']->trxn_id;
3767 if (isset($totalAmount) &&
3768 $totalAmount != $params['prevContribution']->total_amount
3769 ) {
3770 //Update Financial Records
3771 $params['trxnParams']['from_financial_account_id'] = NULL;
3772 self::updateFinancialAccounts($params, 'changedAmount');
3773 CRM_Core_BAO_FinancialTrxn::createDeferredTrxn(CRM_Utils_Array::value('line_item', $params), $params['contribution'], TRUE, 'changedAmount');
3774 $updated = TRUE;
3775 }
3776
3777 if (!$updated) {
3778 // Looks like we might have a data correction update.
3779 // This would be a case where a transaction id has been entered but it is incorrect &
3780 // the person goes back in & fixes it, as opposed to a new transaction.
3781 // Currently the UI doesn't support multiple refunds against a single transaction & we are only supporting
3782 // the data fix scenario.
3783 // CRM-17751.
3784 if (isset($params['refund_trxn_id'])) {
3785 $refundIDs = CRM_Core_BAO_FinancialTrxn::getRefundTransactionIDs($params['id']);
3786 if (!empty($refundIDs['financialTrxnId']) && $refundIDs['trxn_id'] != $params['refund_trxn_id']) {
3787 civicrm_api3('FinancialTrxn', 'create', [
3788 'id' => $refundIDs['financialTrxnId'],
3789 'trxn_id' => $params['refund_trxn_id'],
3790 ]);
3791 }
3792 }
3793 $cardType = $params['card_type_id'] ?? NULL;
3794 $panTruncation = $params['pan_truncation'] ?? NULL;
3795 CRM_Core_BAO_FinancialTrxn::updateCreditCardDetails($params['contribution']->id, $panTruncation, $cardType);
3796 }
3797 }
3798
3799 if (!$update) {
3800 // records finanical trxn and entity financial trxn
3801 // also make it available as return value
3802 self::recordAlwaysAccountsReceivable($trxnParams, $params);
3803 $trxnParams['pan_truncation'] = $params['pan_truncation'] ?? NULL;
3804 $trxnParams['card_type_id'] = $params['card_type_id'] ?? NULL;
3805 $return = $financialTxn = CRM_Core_BAO_FinancialTrxn::create($trxnParams);
3806 $params['entity_id'] = $financialTxn->id;
3807 if (empty($params['partial_payment_total']) && empty($params['partial_amount_to_pay'])) {
3808 self::$_trxnIDs[] = $financialTxn->id;
3809 }
3810 }
3811 }
3812 // record line items and financial items
3813 if (empty($params['skipLineItem'])) {
3814 CRM_Price_BAO_LineItem::processPriceSet($entityId, CRM_Utils_Array::value('line_item', $params), $params['contribution'], $entityTable, $update);
3815 }
3816
3817 // create batch entry if batch_id is passed and
3818 // ensure no batch entry is been made on 'Pending' or 'Failed' contribution, CRM-16611
3819 if (!empty($params['batch_id']) && !empty($financialTxn)) {
3820 $entityParams = [
3821 'batch_id' => $params['batch_id'],
3822 'entity_table' => 'civicrm_financial_trxn',
3823 'entity_id' => $financialTxn->id,
3824 ];
3825 CRM_Batch_BAO_EntityBatch::create($entityParams);
3826 }
3827
3828 // when a fee is charged
3829 if (!empty($params['fee_amount']) && (empty($params['prevContribution']) || $params['contribution']->fee_amount != $params['prevContribution']->fee_amount) && $skipRecords) {
3830 CRM_Core_BAO_FinancialTrxn::recordFees($params);
3831 }
3832
3833 if (!empty($params['prevContribution']) && $entityTable == 'civicrm_participant'
3834 && $params['prevContribution']->contribution_status_id != $params['contribution']->contribution_status_id
3835 ) {
3836 $eventID = CRM_Core_DAO::getFieldValue('CRM_Event_DAO_Participant', $entityId, 'event_id');
3837 $feeLevel[] = str_replace('\ 1', '', $params['prevContribution']->amount_level);
3838 CRM_Event_BAO_Participant::createDiscountTrxn($eventID, $params, $feeLevel);
3839 }
3840 unset($params['line_item']);
3841 self::$_trxnIDs = NULL;
3842 return $return;
3843 }
3844
3845 /**
3846 * Update all financial accounts entry.
3847 *
3848 * @param array $params
3849 * Contribution object, line item array and params for trxn.
3850 *
3851 * @param string $context
3852 * Update scenarios.
3853 *
3854 * @todo stop passing $params by reference. It is unclear the purpose of doing this &
3855 * adds unpredictability.
3856 *
3857 */
3858 public static function updateFinancialAccounts(&$params, $context = NULL) {
3859 $trxnID = NULL;
3860 $inputParams = $params;
3861 $isARefund = self::isContributionUpdateARefund($params['prevContribution']->contribution_status_id, $params['contribution']->contribution_status_id);
3862
3863 if ($context == 'changedAmount' || $context == 'changeFinancialType') {
3864 // @todo we should stop passing $params by reference - splitting this out would be a step towards that.
3865 $params['trxnParams']['total_amount'] = $params['trxnParams']['net_amount'] = ($params['total_amount'] - $params['prevContribution']->total_amount);
3866 }
3867
3868 $trxn = CRM_Core_BAO_FinancialTrxn::create($params['trxnParams']);
3869 // @todo we should stop passing $params by reference - splitting this out would be a step towards that.
3870 $params['entity_id'] = $trxn->id;
3871
3872 $itemParams['entity_table'] = 'civicrm_line_item';
3873 $trxnIds['id'] = $params['entity_id'];
3874 $previousLineItems = CRM_Price_BAO_LineItem::getLineItemsByContributionID($params['contribution']->id);
3875 foreach ($params['line_item'] as $fieldId => $fields) {
3876 $params = self::createFinancialItemsForLine($params, $context, $fields, $previousLineItems, $inputParams, $isARefund, $trxnIds, $fieldId);
3877 }
3878 }
3879
3880 /**
3881 * Is this contribution status a reversal.
3882 *
3883 * If so we would expect to record a negative value in the financial_trxn table.
3884 *
3885 * @param int $status_id
3886 *
3887 * @return bool
3888 */
3889 public static function isContributionStatusNegative($status_id) {
3890 $reversalStatuses = ['Cancelled', 'Chargeback', 'Refunded'];
3891 return in_array(CRM_Core_PseudoConstant::getName('CRM_Contribute_BAO_Contribution', 'contribution_status_id', $status_id), $reversalStatuses, TRUE);
3892 }
3893
3894 /**
3895 * Check status validation on update of a contribution.
3896 *
3897 * @param array $values
3898 * Previous form values before submit.
3899 *
3900 * @param array $fields
3901 * The input form values.
3902 *
3903 * @param array $errors
3904 * List of errors.
3905 *
3906 * @return bool
3907 */
3908 public static function checkStatusValidation($values, &$fields, &$errors) {
3909 if (CRM_Utils_System::isNull($values) && !empty($fields['id'])) {
3910 $values['contribution_status_id'] = CRM_Core_DAO::getFieldValue('CRM_Contribute_DAO_Contribution', $fields['id'], 'contribution_status_id');
3911 if ($values['contribution_status_id'] == $fields['contribution_status_id']) {
3912 return FALSE;
3913 }
3914 }
3915 $contributionStatuses = CRM_Contribute_PseudoConstant::contributionStatus(NULL, 'name');
3916 $checkStatus = [
3917 'Cancelled' => ['Completed', 'Refunded'],
3918 'Completed' => ['Cancelled', 'Refunded', 'Chargeback'],
3919 'Pending' => ['Cancelled', 'Completed', 'Failed', 'Partially paid'],
3920 'In Progress' => ['Cancelled', 'Completed', 'Failed'],
3921 'Refunded' => ['Cancelled', 'Completed'],
3922 'Partially paid' => ['Completed'],
3923 'Pending refund' => ['Completed', 'Refunded'],
3924 ];
3925
3926 if (!in_array($contributionStatuses[$fields['contribution_status_id']],
3927 CRM_Utils_Array::value($contributionStatuses[$values['contribution_status_id']], $checkStatus, []))
3928 ) {
3929 $errors['contribution_status_id'] = ts("Cannot change contribution status from %1 to %2.", [
3930 1 => $contributionStatuses[$values['contribution_status_id']],
3931 2 => $contributionStatuses[$fields['contribution_status_id']],
3932 ]);
3933 }
3934 }
3935
3936 /**
3937 * Delete contribution of contact.
3938 *
3939 * CRM-12155
3940 *
3941 * @param int $contactId
3942 * Contact id.
3943 *
3944 */
3945 public static function deleteContactContribution($contactId) {
3946 $contribution = new CRM_Contribute_DAO_Contribution();
3947 $contribution->contact_id = $contactId;
3948 $contribution->find();
3949 while ($contribution->fetch()) {
3950 self::deleteContribution($contribution->id);
3951 }
3952 }
3953
3954 /**
3955 * Get options for a given contribution field.
3956 *
3957 * @param string $fieldName
3958 * @param string $context see CRM_Core_DAO::buildOptionsContext.
3959 * @param array $props whatever is known about this dao object.
3960 *
3961 * @return array|bool
3962 * @see CRM_Core_DAO::buildOptions
3963 *
3964 */
3965 public static function buildOptions($fieldName, $context = NULL, $props = []) {
3966 $className = __CLASS__;
3967 $params = [];
3968 if (isset($props['orderColumn'])) {
3969 $params['orderColumn'] = $props['orderColumn'];
3970 }
3971 switch ($fieldName) {
3972 // This field is not part of this object but the api supports it
3973 case 'payment_processor':
3974 $className = 'CRM_Contribute_BAO_ContributionPage';
3975 // Filter results by contribution page
3976 if (!empty($props['contribution_page_id'])) {
3977 $page = civicrm_api('contribution_page', 'getsingle', [
3978 'version' => 3,
3979 'id' => ($props['contribution_page_id']),
3980 ]);
3981 $types = (array) CRM_Utils_Array::value('payment_processor', $page, 0);
3982 $params['condition'] = 'id IN (' . implode(',', $types) . ')';
3983 }
3984 break;
3985
3986 // CRM-13981 This field was combined with soft_credits in 4.5 but the api still supports it
3987 case 'honor_type_id':
3988 $className = 'CRM_Contribute_BAO_ContributionSoft';
3989 $fieldName = 'soft_credit_type_id';
3990 $params['condition'] = "v.name IN ('in_honor_of','in_memory_of')";
3991 break;
3992
3993 case 'contribution_status_id':
3994 if ($context !== 'validate') {
3995 $params['condition'] = "v.name <> 'Template'";
3996 }
3997 }
3998 return CRM_Core_PseudoConstant::get($className, $fieldName, $params, $context);
3999 }
4000
4001 /**
4002 * Validate financial type.
4003 *
4004 * CRM-13231
4005 *
4006 * @param int $financialTypeId
4007 * Financial Type id.
4008 *
4009 * @param string $relationName
4010 *
4011 * @return array|bool
4012 */
4013 public static function validateFinancialType($financialTypeId, $relationName = 'Expense Account is') {
4014 $financialAccount = CRM_Contribute_PseudoConstant::getRelationalFinancialAccount($financialTypeId, $relationName);
4015
4016 if (!$financialAccount) {
4017 return CRM_Contribute_PseudoConstant::financialType($financialTypeId);
4018 }
4019 return FALSE;
4020 }
4021
4022 /**
4023 * @param int $targetCid
4024 * @param $activityType
4025 * @param string $title
4026 * @param int $contributionId
4027 * @param string $totalAmount
4028 * @param string $currency
4029 * @param string $trxn_date
4030 *
4031 * @throws \CRM_Core_Exception
4032 * @throws \CiviCRM_API3_Exception
4033 */
4034 public static function addActivityForPayment($targetCid, $activityType, $title, $contributionId, $totalAmount, $currency, $trxn_date) {
4035 $paymentAmount = CRM_Utils_Money::format($totalAmount, $currency);
4036 $subject = "{$paymentAmount} - Offline {$activityType} for {$title}";
4037 $date = CRM_Utils_Date::isoToMysql($trxn_date);
4038 // source record id would be the contribution id
4039 $srcRecId = $contributionId;
4040
4041 // activity params
4042 $activityParams = [
4043 'source_contact_id' => $targetCid,
4044 'source_record_id' => $srcRecId,
4045 'activity_type_id' => CRM_Core_PseudoConstant::getKey('CRM_Activity_BAO_Activity', 'activity_type_id', $activityType),
4046 'subject' => $subject,
4047 'activity_date_time' => $date,
4048 'status_id' => CRM_Core_PseudoConstant::getKey('CRM_Activity_BAO_Activity', 'activity_status_id', 'Completed'),
4049 'skipRecentView' => TRUE,
4050 ];
4051
4052 // create activity with target contacts
4053 $session = CRM_Core_Session::singleton();
4054 $id = $session->get('userID');
4055 if ($id) {
4056 $activityParams['source_contact_id'] = $id;
4057 $activityParams['target_contact_id'][] = $targetCid;
4058 }
4059 civicrm_api3('Activity', 'create', $activityParams);
4060 }
4061
4062 /**
4063 * Get list of payments displayed by Contribute_Page_PaymentInfo.
4064 *
4065 * @param int $id
4066 * @param string $component
4067 * @param bool $getTrxnInfo
4068 *
4069 * @return mixed
4070 *
4071 * @throws \CRM_Core_Exception
4072 * @throws \CiviCRM_API3_Exception
4073 */
4074 public static function getPaymentInfo($id, $component = 'contribution', $getTrxnInfo = FALSE) {
4075 // @todo deprecate passing in component - always call with contribution.
4076 if ($component == 'event') {
4077 $contributionId = CRM_Core_DAO::getFieldValue('CRM_Event_BAO_ParticipantPayment', $id, 'contribution_id', 'participant_id');
4078
4079 if (!$contributionId) {
4080 if ($primaryParticipantId = CRM_Core_DAO::getFieldValue('CRM_Event_BAO_Participant', $id, 'registered_by_id')) {
4081 $contributionId = CRM_Core_DAO::getFieldValue('CRM_Event_BAO_ParticipantPayment', $primaryParticipantId, 'contribution_id', 'participant_id');
4082 $id = $primaryParticipantId;
4083 }
4084 if (!$contributionId) {
4085 return;
4086 }
4087 }
4088 }
4089 elseif ($component == 'membership') {
4090 $contributionId = CRM_Core_DAO::getFieldValue('CRM_Member_DAO_MembershipPayment', $id, 'contribution_id', 'membership_id');
4091 }
4092 else {
4093 $contributionId = $id;
4094 }
4095
4096 // The balance used to be calculated this way - we really want to remove this 'oldCalculation'
4097 // but need to unpick the whole trxn_id it's returning first.
4098 $oldCalculation = CRM_Core_BAO_FinancialTrxn::getBalanceTrxnAmt($contributionId);
4099 $baseTrxnId = !empty($oldCalculation['trxn_id']) ? $oldCalculation['trxn_id'] : NULL;
4100 if (!$baseTrxnId) {
4101 $baseTrxnId = CRM_Core_BAO_FinancialTrxn::getFinancialTrxnId($contributionId);
4102 $baseTrxnId = $baseTrxnId['financialTrxnId'];
4103 }
4104 $total = CRM_Price_BAO_LineItem::getLineTotal($contributionId);
4105
4106 $paymentBalance = CRM_Contribute_BAO_Contribution::getContributionBalance($contributionId, $total);
4107
4108 $contribution = civicrm_api3('Contribution', 'getsingle', [
4109 'id' => $contributionId,
4110 'return' => [
4111 'currency',
4112 'is_pay_later',
4113 'contribution_status_id',
4114 'financial_type_id',
4115 ],
4116 ]);
4117
4118 $info['payLater'] = $contribution['is_pay_later'];
4119 $info['contribution_status'] = $contribution['contribution_status'];
4120 $info['currency'] = $contribution['currency'];
4121
4122 $info['total'] = $total;
4123 $info['paid'] = $total - $paymentBalance;
4124 $info['balance'] = $paymentBalance;
4125 $info['id'] = $id;
4126 $info['component'] = $component;
4127 if ($getTrxnInfo && $baseTrxnId) {
4128 $info['transaction'] = self::getContributionTransactionInformation($contributionId, $contribution['financial_type_id']);
4129 }
4130
4131 $info['payment_links'] = self::getContributionPaymentLinks($id, $paymentBalance, $info['contribution_status']);
4132 return $info;
4133 }
4134
4135 /**
4136 * Get the outstanding balance on a contribution.
4137 *
4138 * @param int $contributionId
4139 * @param float $contributionTotal
4140 * Optional amount to override the saved amount paid (e.g if calculating what it WILL be).
4141 *
4142 * @return float
4143 */
4144 public static function getContributionBalance($contributionId, $contributionTotal = NULL) {
4145 if ($contributionTotal === NULL) {
4146 $contributionTotal = CRM_Price_BAO_LineItem::getLineTotal($contributionId);
4147 }
4148
4149 return (float) CRM_Utils_Money::subtractCurrencies(
4150 $contributionTotal,
4151 CRM_Core_BAO_FinancialTrxn::getTotalPayments($contributionId, TRUE),
4152 CRM_Core_DAO::getFieldValue('CRM_Contribute_DAO_Contribution', $contributionId, 'currency')
4153 );
4154 }
4155
4156 /**
4157 * Get the tax amount (misnamed function).
4158 *
4159 * @param array $params
4160 * @param bool $isLineItem
4161 *
4162 * @return array
4163 */
4164 public static function checkTaxAmount($params, $isLineItem = FALSE) {
4165 $taxRates = CRM_Core_PseudoConstant::getTaxRates();
4166
4167 // This function should be only called after standardisation (removal of
4168 // thousand separator & using a decimal point for cents separator.
4169 // However, we don't know if that is always true :-(
4170 // There is a deprecation notice tho :-)
4171 $unknownIfMoneyIsClean = empty($params['skipCleanMoney']) && !$isLineItem;
4172 // Update contribution.
4173 if (!empty($params['id'])) {
4174 // CRM-19126 and CRM-19152 If neither total or financial_type_id are set on an update
4175 // there are no tax implications - early return.
4176 if (!isset($params['total_amount']) && !isset($params['financial_type_id'])) {
4177 return $params;
4178 }
4179 if (empty($params['prevContribution'])) {
4180 $params['prevContribution'] = self::getOriginalContribution($params['id']);
4181 }
4182
4183 foreach (['total_amount', 'financial_type_id', 'fee_amount'] as $field) {
4184 if (!isset($params[$field])) {
4185 if ($field == 'total_amount' && $params['prevContribution']->tax_amount) {
4186 // Tax amount gets added back on later....
4187 $params['total_amount'] = $params['prevContribution']->total_amount -
4188 $params['prevContribution']->tax_amount;
4189 }
4190 else {
4191 $params[$field] = $params['prevContribution']->$field;
4192 if ($params[$field] != $params['prevContribution']->$field) {
4193 }
4194 }
4195 }
4196 }
4197
4198 self::calculateMissingAmountParams($params, $params['id']);
4199 if (!array_key_exists($params['financial_type_id'], $taxRates)) {
4200 // Assign tax Amount on update of contribution
4201 if (!empty($params['prevContribution']->tax_amount)) {
4202 $params['tax_amount'] = 'null';
4203 CRM_Price_BAO_LineItem::getLineItemArray($params, [$params['id']]);
4204 foreach ($params['line_item'] as $setID => $priceField) {
4205 foreach ($priceField as $priceFieldID => $priceFieldValue) {
4206 $params['line_item'][$setID][$priceFieldID]['tax_amount'] = $params['tax_amount'];
4207 }
4208 }
4209 }
4210 }
4211 }
4212
4213 // New Contribution and update of contribution with tax rate financial type
4214 if (isset($params['financial_type_id']) && array_key_exists($params['financial_type_id'], $taxRates) &&
4215 empty($params['skipLineItem']) && !$isLineItem
4216 ) {
4217 $taxRateParams = $taxRates[$params['financial_type_id']];
4218 $taxAmount = CRM_Contribute_BAO_Contribution_Utils::calculateTaxAmount(CRM_Utils_Array::value('total_amount', $params), $taxRateParams, $unknownIfMoneyIsClean);
4219 $params['tax_amount'] = round($taxAmount['tax_amount'], 2);
4220
4221 // Get Line Item on update of contribution
4222 if (isset($params['id'])) {
4223 CRM_Price_BAO_LineItem::getLineItemArray($params, [$params['id']]);
4224 }
4225 else {
4226 CRM_Price_BAO_LineItem::getLineItemArray($params);
4227 }
4228 foreach ($params['line_item'] as $setID => $priceField) {
4229 foreach ($priceField as $priceFieldID => $priceFieldValue) {
4230 $params['line_item'][$setID][$priceFieldID]['tax_amount'] = $params['tax_amount'];
4231 }
4232 }
4233 $params['total_amount'] = CRM_Utils_Array::value('total_amount', $params) + $params['tax_amount'];
4234 }
4235 elseif (isset($params['api.line_item.create'])) {
4236 // Update total amount of contribution using lineItem
4237 $taxAmountArray = [];
4238 foreach ($params['api.line_item.create'] as $key => $value) {
4239 if (isset($value['financial_type_id']) && array_key_exists($value['financial_type_id'], $taxRates)) {
4240 $taxRate = $taxRates[$value['financial_type_id']];
4241 $taxAmount = CRM_Contribute_BAO_Contribution_Utils::calculateTaxAmount($value['line_total'], $taxRate);
4242 $taxAmountArray[] = round($taxAmount['tax_amount'], 2);
4243 }
4244 }
4245 $params['tax_amount'] = array_sum($taxAmountArray);
4246 $params['total_amount'] = $params['total_amount'] + $params['tax_amount'];
4247 }
4248 else {
4249 // update line item of contrbution
4250 if (isset($params['financial_type_id']) && array_key_exists($params['financial_type_id'], $taxRates) && $isLineItem) {
4251 $taxRate = $taxRates[$params['financial_type_id']];
4252 $taxAmount = CRM_Contribute_BAO_Contribution_Utils::calculateTaxAmount($params['line_total'], $taxRate, $unknownIfMoneyIsClean);
4253 $params['tax_amount'] = round($taxAmount['tax_amount'], 2);
4254 }
4255 }
4256 return $params;
4257 }
4258
4259 /**
4260 * Check financial type validation on update of a contribution.
4261 *
4262 * @param int $financialTypeId
4263 * Value of latest Financial Type.
4264 *
4265 * @param int $contributionId
4266 * Contribution Id.
4267 *
4268 * @param array $errors
4269 * List of errors.
4270 *
4271 * @return void
4272 */
4273 public static function checkFinancialTypeChange($financialTypeId, $contributionId, &$errors) {
4274 if (!empty($financialTypeId)) {
4275 $oldFinancialTypeId = CRM_Core_DAO::getFieldValue('CRM_Contribute_DAO_Contribution', $contributionId, 'financial_type_id');
4276 if ($oldFinancialTypeId == $financialTypeId) {
4277 return;
4278 }
4279 }
4280 $sql = 'SELECT financial_type_id FROM civicrm_line_item WHERE contribution_id = %1 GROUP BY financial_type_id;';
4281 $params = [
4282 '1' => [$contributionId, 'Integer'],
4283 ];
4284 $result = CRM_Core_DAO::executeQuery($sql, $params);
4285 if ($result->N > 1) {
4286 $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.');
4287 }
4288 }
4289
4290 /**
4291 * Update related pledge payment payments.
4292 *
4293 * This function has been refactored out of the back office contribution form and may
4294 * still overlap with other functions.
4295 *
4296 * @param string $action
4297 * @param int $pledgePaymentID
4298 * @param int $contributionID
4299 * @param bool $adjustTotalAmount
4300 * @param float $total_amount
4301 * @param float $original_total_amount
4302 * @param int $contribution_status_id
4303 * @param int $original_contribution_status_id
4304 */
4305 public static function updateRelatedPledge(
4306 $action,
4307 $pledgePaymentID,
4308 $contributionID,
4309 $adjustTotalAmount,
4310 $total_amount,
4311 $original_total_amount,
4312 $contribution_status_id,
4313 $original_contribution_status_id
4314 ) {
4315 if (!$pledgePaymentID && $action & CRM_Core_Action::ADD && !$contributionID) {
4316 return;
4317 }
4318
4319 if ($pledgePaymentID) {
4320 //store contribution id in payment record.
4321 CRM_Core_DAO::setFieldValue('CRM_Pledge_DAO_PledgePayment', $pledgePaymentID, 'contribution_id', $contributionID);
4322 }
4323 else {
4324 $pledgePaymentID = CRM_Core_DAO::getFieldValue('CRM_Pledge_DAO_PledgePayment',
4325 $contributionID,
4326 'id',
4327 'contribution_id'
4328 );
4329 }
4330
4331 if (!$pledgePaymentID) {
4332 return;
4333 }
4334 $pledgeID = CRM_Core_DAO::getFieldValue('CRM_Pledge_DAO_PledgePayment',
4335 $contributionID,
4336 'pledge_id',
4337 'contribution_id'
4338 );
4339
4340 $updatePledgePaymentStatus = FALSE;
4341
4342 // If either the status or the amount has changed we update the pledge status.
4343 if ($action & CRM_Core_Action::ADD) {
4344 $updatePledgePaymentStatus = TRUE;
4345 }
4346 elseif ($action & CRM_Core_Action::UPDATE && (($original_contribution_status_id != $contribution_status_id) ||
4347 ($original_total_amount != $total_amount))
4348 ) {
4349 $updatePledgePaymentStatus = TRUE;
4350 }
4351
4352 if ($updatePledgePaymentStatus) {
4353 CRM_Pledge_BAO_PledgePayment::updatePledgePaymentStatus($pledgeID,
4354 [$pledgePaymentID],
4355 $contribution_status_id,
4356 NULL,
4357 $total_amount,
4358 $adjustTotalAmount
4359 );
4360 }
4361 }
4362
4363 /**
4364 * Compute the stats values
4365 *
4366 * @param string $stat either 'mode' or 'median'
4367 * @param string $sql
4368 * @param string $alias of civicrm_contribution
4369 *
4370 * @return array|null
4371 * @deprecated
4372 *
4373 */
4374 public static function computeStats($stat, $sql, $alias = NULL) {
4375 CRM_Core_Error::deprecatedFunctionWarning('computeStats is now deprecated');
4376 return [];
4377 }
4378
4379 /**
4380 * Is there only one line item attached to the contribution.
4381 *
4382 * @param int $id
4383 * Contribution ID.
4384 *
4385 * @return bool
4386 * @throws \CiviCRM_API3_Exception
4387 */
4388 public static function isSingleLineItem($id) {
4389 $lineItemCount = civicrm_api3('LineItem', 'getcount', ['contribution_id' => $id]);
4390 return ($lineItemCount == 1);
4391 }
4392
4393 /**
4394 * Complete an order.
4395 *
4396 * Do not call this directly - use the contribution.completetransaction api as this function is being refactored.
4397 *
4398 * Currently overloaded to complete a transaction & repeat a transaction - fix!
4399 *
4400 * Moving it out of the BaseIPN class is just the first step.
4401 *
4402 * @param array $input
4403 * @param array $ids
4404 * @param array $objects
4405 * @param CRM_Core_Transaction $transaction
4406 * @param CRM_Contribute_BAO_Contribution $contribution
4407 * @param bool $isPostPaymentCreate
4408 * Is this being called from the payment.create api. If so the api has taken care of financial entities.
4409 * Note that our goal is that this would only ever be called from payment.create and never handle financials (only
4410 * transitioning related elements).
4411 *
4412 * @return array
4413 * @throws \CRM_Core_Exception
4414 * @throws \CiviCRM_API3_Exception
4415 */
4416 public static function completeOrder($input, &$ids, $objects, $transaction, $contribution, $isPostPaymentCreate = FALSE) {
4417 $primaryContributionID = $contribution->id ?? $objects['first_contribution']->id;
4418 // The previous details are used when calculating line items so keep it before any code that 'does something'
4419 if (!empty($contribution->id)) {
4420 $input['prevContribution'] = CRM_Contribute_BAO_Contribution::getValues(['id' => $contribution->id]);
4421 }
4422 $inputContributionWhiteList = [
4423 'fee_amount',
4424 'net_amount',
4425 'trxn_id',
4426 'check_number',
4427 'payment_instrument_id',
4428 'is_test',
4429 'campaign_id',
4430 'receive_date',
4431 'receipt_date',
4432 'contribution_status_id',
4433 'card_type_id',
4434 'pan_truncation',
4435 ];
4436 if (self::isSingleLineItem($primaryContributionID)) {
4437 $inputContributionWhiteList[] = 'financial_type_id';
4438 }
4439
4440 $participant = $objects['participant'] ?? NULL;
4441 $recurContrib = $objects['contributionRecur'] ?? NULL;
4442 $recurringContributionID = (empty($recurContrib->id)) ? NULL : $recurContrib->id;
4443 $event = $objects['event'] ?? NULL;
4444
4445 $paymentProcessorId = '';
4446 if (isset($objects['paymentProcessor'])) {
4447 if (is_array($objects['paymentProcessor'])) {
4448 $paymentProcessorId = $objects['paymentProcessor']['id'];
4449 }
4450 else {
4451 $paymentProcessorId = $objects['paymentProcessor']->id;
4452 }
4453 }
4454
4455 $completedContributionStatusID = CRM_Core_PseudoConstant::getKey('CRM_Contribute_BAO_Contribution', 'contribution_status_id', 'Completed');
4456
4457 $contributionParams = array_merge([
4458 'contribution_status_id' => $completedContributionStatusID,
4459 'source' => self::getRecurringContributionDescription($contribution, $event),
4460 ], array_intersect_key($input, array_fill_keys($inputContributionWhiteList, 1)
4461 ));
4462
4463 // CRM-20678 Ensure that the currency is correct in subseqent transcations.
4464 if (empty($contributionParams['currency']) && isset($objects['first_contribution']->currency)) {
4465 $contributionParams['currency'] = $objects['first_contribution']->currency;
4466 }
4467
4468 $contributionParams['payment_processor'] = $input['payment_processor'] = $paymentProcessorId;
4469
4470 // If paymentProcessor is not set then the payment_instrument_id would not be correct.
4471 // not clear when or if this would occur if you encounter this please fix here & add a unit test.
4472 if (empty($contributionParams['payment_instrument_id']) && isset($contribution->_relatedObjects['paymentProcessor']['payment_instrument_id'])) {
4473 $contributionParams['payment_instrument_id'] = $contribution->_relatedObjects['paymentProcessor']['payment_instrument_id'];
4474 }
4475
4476 if ($recurringContributionID) {
4477 $contributionParams['contribution_recur_id'] = $recurringContributionID;
4478 }
4479 $changeDate = CRM_Utils_Array::value('trxn_date', $input, date('YmdHis'));
4480
4481 if (empty($contributionParams['receive_date']) && $changeDate) {
4482 $contributionParams['receive_date'] = $changeDate;
4483 }
4484
4485 self::repeatTransaction($contribution, $input, $contributionParams, $paymentProcessorId);
4486 $contributionParams['financial_type_id'] = $contribution->financial_type_id;
4487
4488 $values = [];
4489 if (isset($input['is_email_receipt'])) {
4490 $values['is_email_receipt'] = $input['is_email_receipt'];
4491 }
4492
4493 if ($input['component'] == 'contribute') {
4494 if ($contribution->contribution_page_id) {
4495 // Figure out what we gain from this.
4496 // Note that we may have overwritten the is_email_receipt input, fix that below.
4497 CRM_Contribute_BAO_ContributionPage::setValues($contribution->contribution_page_id, $values);
4498 }
4499 elseif ($recurContrib && $recurringContributionID) {
4500 $values['amount'] = $recurContrib->amount;
4501 $values['financial_type_id'] = $objects['contributionType']->id;
4502 $values['title'] = $source = ts('Offline Recurring Contribution');
4503 }
4504
4505 if (isset($input['is_email_receipt'])) {
4506 // CRM-19601 - we may have overwritten this above.
4507 $values['is_email_receipt'] = $input['is_email_receipt'];
4508 }
4509 elseif ($recurContrib && $recurringContributionID) {
4510 //CRM-13273 - is_email_receipt setting on recurring contribution should take precedence over contribution page setting
4511 // but CRM-16124 if $input['is_email_receipt'] is set then that should not be overridden.
4512 // 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
4513 // Instance that had the table added via an upgrade in 4.1
4514 // see also https://github.com/civicrm/civicrm-svn/commit/7f39befd60bc735408d7866b02b3ac7fff1d4eea#diff-9ad8e290180451a2d6eacbd3d1ca7966R354
4515 // https://lab.civicrm.org/dev/core/issues/1245
4516 $values['is_email_receipt'] = $recurContrib->is_email_receipt;
4517 }
4518
4519 if ($contributionParams['contribution_status_id'] === $completedContributionStatusID) {
4520 self::updateMembershipBasedOnCompletionOfContribution(
4521 $contribution,
4522 $primaryContributionID,
4523 $changeDate
4524 );
4525 }
4526 }
4527 else {
4528 if (empty($input['IAmAHorribleNastyBeyondExcusableHackInTheCRMEventFORMTaskClassThatNeedsToBERemoved'])) {
4529 if ($event->is_email_confirm) {
4530 // @todo this should be set by the function that sends the mail after sending.
4531 $contributionParams['receipt_date'] = $changeDate;
4532 }
4533 $participantParams['id'] = $participant->id;
4534 $participantParams['status_id'] = 'Registered';
4535 civicrm_api3('Participant', 'create', $participantParams);
4536 }
4537 }
4538
4539 $contributionParams['id'] = $contribution->id;
4540 $contributionParams['is_post_payment_create'] = $isPostPaymentCreate;
4541
4542 // CRM-19309 - if you update the contribution here with financial_type_id it can/will mess with $lineItem
4543 // unsetting it here does NOT cause any other contribution test to fail!
4544 unset($contributionParams['financial_type_id']);
4545 $contributionResult = civicrm_api3('Contribution', 'create', $contributionParams);
4546
4547 // Add new soft credit against current $contribution.
4548 if (!empty($objects['contributionRecur']) && $objects['contributionRecur']->id) {
4549 CRM_Contribute_BAO_ContributionRecur::addrecurSoftCredit($objects['contributionRecur']->id, $contribution->id);
4550 }
4551
4552 if (empty($contribution->_relatedObjects['participant']) && !empty($contribution->_relatedObjects['membership'])) {
4553 // @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.
4554 // @todo - use getRelatedMemberships instead
4555 $contribution->contribution_status_id = $contributionParams['contribution_status_id'];
4556 $contribution->trxn_id = $input['trxn_id'] ?? NULL;
4557 $contribution->receive_date = CRM_Utils_Date::isoToMysql($contribution->receive_date);
4558 }
4559
4560 CRM_Core_Error::debug_log_message("Contribution record updated successfully");
4561 $transaction->commit();
4562
4563 CRM_Contribute_BAO_ContributionRecur::updateRecurLinkedPledge($contribution->id, $recurringContributionID,
4564 $contributionParams['contribution_status_id'], $input['amount']);
4565
4566 // create an activity record
4567 if ($input['component'] == 'contribute') {
4568 //CRM-4027
4569 $targetContactID = NULL;
4570 if (!empty($ids['related_contact'])) {
4571 $targetContactID = $contribution->contact_id;
4572 $contribution->contact_id = $ids['related_contact'];
4573 }
4574 CRM_Activity_BAO_Activity::addActivity($contribution, NULL, $targetContactID);
4575 }
4576
4577 // CRM-9132 legacy behaviour was that receipts were sent out in all instances. Still sending
4578 // when array_key 'is_email_receipt doesn't exist in case some instances where is needs setting haven't been set
4579 if (!array_key_exists('is_email_receipt', $values) ||
4580 $values['is_email_receipt'] == 1
4581 ) {
4582 civicrm_api3('Contribution', 'sendconfirmation', [
4583 'id' => $contribution->id,
4584 'payment_processor_id' => $paymentProcessorId,
4585 ]);
4586 CRM_Core_Error::debug_log_message("Receipt sent");
4587 }
4588
4589 CRM_Core_Error::debug_log_message("Success: Database updated");
4590 return $contributionResult;
4591 }
4592
4593 /**
4594 * Send receipt from contribution.
4595 *
4596 * Do not call this directly - it is being refactored. use contribution.sendmessage api call.
4597 *
4598 * Note that the compose message part has been moved to contribution
4599 * In general LoadObjects is called first to get the objects but the composeMessageArray function now calls it.
4600 *
4601 * @param array $input
4602 * Incoming data from Payment processor.
4603 * @param array $ids
4604 * Related object IDs.
4605 * @param int $contributionID
4606 * @param array $values
4607 * Values related to objects that have already been loaded.
4608 * @param bool $returnMessageText
4609 * Should text be returned instead of sent. This.
4610 * is because the function is also used to generate pdfs
4611 *
4612 * @return array
4613 * @throws \CRM_Core_Exception
4614 * @throws \CiviCRM_API3_Exception
4615 * @throws \Exception
4616 */
4617 public static function sendMail(&$input, &$ids, $contributionID, &$values,
4618 $returnMessageText = FALSE) {
4619
4620 $contribution = new CRM_Contribute_BAO_Contribution();
4621 $contribution->id = $contributionID;
4622 if (!$contribution->find(TRUE)) {
4623 throw new CRM_Core_Exception('Contribution does not exist');
4624 }
4625 $contribution->loadRelatedObjects($input, $ids, TRUE);
4626 // set receipt from e-mail and name in value
4627 if (!$returnMessageText) {
4628 list($values['receipt_from_name'], $values['receipt_from_email']) = self::generateFromEmailAndName($input, $contribution);
4629 }
4630 $values['contribution_status'] = CRM_Core_PseudoConstant::getLabel('CRM_Contribute_BAO_Contribution', 'contribution_status_id', $contribution->contribution_status_id);
4631 $return = $contribution->composeMessageArray($input, $ids, $values, $returnMessageText);
4632 if ((!isset($input['receipt_update']) || $input['receipt_update']) && empty($contribution->receipt_date)) {
4633 civicrm_api3('Contribution', 'create', [
4634 'receipt_date' => 'now',
4635 'id' => $contribution->id,
4636 ]);
4637 }
4638 return $return;
4639 }
4640
4641 /**
4642 * Generate From email and from name in an array values
4643 *
4644 * @param array $input
4645 * @param \CRM_Contribute_BAO_Contribution $contribution
4646 *
4647 * @return array
4648 */
4649 public static function generateFromEmailAndName($input, $contribution) {
4650 // Use input value if supplied.
4651 if (!empty($input['receipt_from_email'])) {
4652 return [
4653 CRM_Utils_Array::value('receipt_from_name', $input, ''),
4654 $input['receipt_from_email'],
4655 ];
4656 }
4657 // if we are still empty see if we can use anything from a contribution page.
4658 $pageValues = [];
4659 if (!empty($contribution->contribution_page_id)) {
4660 $pageValues = civicrm_api3('ContributionPage', 'getsingle', ['id' => $contribution->contribution_page_id]);
4661 }
4662 // if we are still empty see if we can use anything from a contribution page.
4663 if (!empty($pageValues['receipt_from_email'])) {
4664 return [
4665 CRM_Utils_Array::value('receipt_from_name', $pageValues),
4666 $pageValues['receipt_from_email'],
4667 ];
4668 }
4669 // If we are still empty fall back to the domain or logged in user information.
4670 return CRM_Core_BAO_Domain::getDefaultReceiptFrom();
4671 }
4672
4673 /**
4674 * Load related memberships.
4675 *
4676 * @param array $ids
4677 *
4678 * @return array $ids
4679 *
4680 * @throws Exception
4681 * @deprecated
4682 *
4683 * Note that in theory it should be possible to retrieve these from the line_item table
4684 * with the membership_payment table being deprecated. Attempting to do this here causes tests to fail
4685 * as it seems the api is not correctly linking the line items when the contribution is created in the flow
4686 * where the contribution is created in the API, followed by the membership (using the api) followed by the membership
4687 * payment. The membership payment BAO does have code to address this but it doesn't appear to be working.
4688 *
4689 * I don't know if it never worked or broke as a result of https://issues.civicrm.org/jira/browse/CRM-14918.
4690 *
4691 */
4692 public function loadRelatedMembershipObjects($ids = []) {
4693 $query = "
4694 SELECT membership_id
4695 FROM civicrm_membership_payment
4696 WHERE contribution_id = %1 ";
4697 $params = [1 => [$this->id, 'Integer']];
4698 $ids['membership'] = (array) CRM_Utils_Array::value('membership', $ids, []);
4699
4700 $dao = CRM_Core_DAO::executeQuery($query, $params);
4701 while ($dao->fetch()) {
4702 if ($dao->membership_id && !in_array($dao->membership_id, $ids['membership'])) {
4703 $ids['membership'][$dao->membership_id] = $dao->membership_id;
4704 }
4705 }
4706
4707 if (array_key_exists('membership', $ids) && is_array($ids['membership'])) {
4708 foreach ($ids['membership'] as $id) {
4709 if (!empty($id)) {
4710 $membership = new CRM_Member_BAO_Membership();
4711 $membership->id = $id;
4712 if (!$membership->find(TRUE)) {
4713 throw new Exception("Could not find membership record: $id");
4714 }
4715 $membership->join_date = CRM_Utils_Date::isoToMysql($membership->join_date);
4716 $membership->start_date = CRM_Utils_Date::isoToMysql($membership->start_date);
4717 $membership->end_date = CRM_Utils_Date::isoToMysql($membership->end_date);
4718 $this->_relatedObjects['membership'][$membership->membership_type_id] = $membership;
4719 }
4720 }
4721 }
4722 return $ids;
4723 }
4724
4725 /**
4726 * This function is used to record partial payments for contribution
4727 *
4728 * @param array $contribution
4729 *
4730 * @param array $params
4731 *
4732 * @return CRM_Financial_DAO_FinancialTrxn
4733 */
4734 public static function recordPartialPayment($contribution, $params) {
4735 CRM_Core_Error::deprecatedFunctionWarning('use payment create api');
4736 $balanceTrxnParams['to_financial_account_id'] = self::getToFinancialAccount($contribution, $params);
4737 $balanceTrxnParams['from_financial_account_id'] = CRM_Financial_BAO_FinancialAccount::getFinancialAccountForFinancialTypeByRelationship($contribution['financial_type_id'], 'Accounts Receivable Account is');
4738 $balanceTrxnParams['total_amount'] = $params['total_amount'];
4739 $balanceTrxnParams['contribution_id'] = $params['contribution_id'];
4740 $balanceTrxnParams['trxn_date'] = CRM_Utils_Array::value('trxn_date', $params, CRM_Utils_Array::value('contribution_receive_date', $params, date('YmdHis')));
4741 $balanceTrxnParams['fee_amount'] = $params['fee_amount'] ?? NULL;
4742 $balanceTrxnParams['net_amount'] = $params['total_amount'] ?? NULL;
4743 $balanceTrxnParams['currency'] = $contribution['currency'];
4744 $balanceTrxnParams['trxn_id'] = $params['contribution_trxn_id'] ?? NULL;
4745 $balanceTrxnParams['status_id'] = CRM_Core_PseudoConstant::getKey('CRM_Core_BAO_FinancialTrxn', 'status_id', 'Completed');
4746 $balanceTrxnParams['payment_instrument_id'] = CRM_Utils_Array::value('payment_instrument_id', $params, $contribution['payment_instrument_id']);
4747 $balanceTrxnParams['check_number'] = $params['check_number'] ?? NULL;
4748 $balanceTrxnParams['is_payment'] = 1;
4749
4750 if (!empty($params['payment_processor'])) {
4751 // I can't find evidence this is passed in - I was gonna just remove it but decided to deprecate as I see self::getToFinancialAccount
4752 // also anticipates it.
4753 CRM_Core_Error::deprecatedFunctionWarning('passing payment_processor is deprecated - use payment_processor_id');
4754 $balanceTrxnParams['payment_processor_id'] = $params['payment_processor'];
4755 }
4756 return CRM_Core_BAO_FinancialTrxn::create($balanceTrxnParams);
4757 }
4758
4759 /**
4760 * Get the description (source field) for the recurring contribution.
4761 *
4762 * @param CRM_Contribute_BAO_Contribution $contribution
4763 * @param CRM_Event_DAO_Event|null $event
4764 *
4765 * @return string
4766 * @throws \CiviCRM_API3_Exception
4767 */
4768 protected static function getRecurringContributionDescription($contribution, $event) {
4769 if (!empty($contribution->source)) {
4770 return $contribution->source;
4771 }
4772 elseif (!empty($contribution->contribution_page_id) && is_numeric($contribution->contribution_page_id)) {
4773 $contributionPageTitle = civicrm_api3('ContributionPage', 'getvalue', [
4774 'id' => $contribution->contribution_page_id,
4775 'return' => 'title',
4776 ]);
4777 return ts('Online Contribution') . ': ' . $contributionPageTitle;
4778 }
4779 elseif ($event) {
4780 return ts('Online Event Registration') . ': ' . $event->title;
4781 }
4782 elseif (!empty($contribution->contribution_recur_id)) {
4783 return 'recurring contribution';
4784 }
4785 return '';
4786 }
4787
4788 /**
4789 * Function use to store line item proportionally in in entity financial trxn table
4790 *
4791 * @param array $trxnParams
4792 *
4793 * @param int $trxnId
4794 *
4795 * @param float $contributionTotalAmount
4796 *
4797 * @throws \CiviCRM_API3_Exception
4798 */
4799 public static function assignProportionalLineItems($trxnParams, $trxnId, $contributionTotalAmount) {
4800 $lineItems = CRM_Price_BAO_LineItem::getLineItemsByContributionID($trxnParams['contribution_id']);
4801 if (!empty($lineItems)) {
4802 // get financial item
4803 list($ftIds, $taxItems) = self::getLastFinancialItemIds($trxnParams['contribution_id']);
4804 $entityParams = [
4805 'contribution_total_amount' => $contributionTotalAmount,
4806 'trxn_total_amount' => $trxnParams['total_amount'],
4807 'trxn_id' => $trxnId,
4808 ];
4809 self::createProportionalFinancialEntries($entityParams, $lineItems, $ftIds, $taxItems);
4810 }
4811 }
4812
4813 /**
4814 * Checks if line items total amounts
4815 * match the contribution total amount.
4816 *
4817 * @param array $params
4818 * array of order params.
4819 *
4820 * @throws \API_Exception
4821 */
4822 public static function checkLineItems(&$params) {
4823 $totalAmount = $params['total_amount'] ?? NULL;
4824 $lineItemAmount = 0;
4825
4826 foreach ($params['line_items'] as &$lineItems) {
4827 foreach ($lineItems['line_item'] as &$item) {
4828 if (empty($item['financial_type_id'])) {
4829 $item['financial_type_id'] = $params['financial_type_id'];
4830 }
4831 $lineItemAmount += $item['line_total'] + CRM_Utils_Array::value('tax_amount', $item, 0.00);
4832 }
4833 }
4834
4835 if (!isset($totalAmount)) {
4836 $params['total_amount'] = $lineItemAmount;
4837 }
4838 else {
4839 $currency = CRM_Utils_Array::value('currency', $params, '');
4840
4841 if (empty($currency)) {
4842 $currency = CRM_Core_Config::singleton()->defaultCurrency;
4843 }
4844
4845 if (!CRM_Utils_Money::equals($totalAmount, $lineItemAmount, $currency)) {
4846 throw new CRM_Contribute_Exception_CheckLineItemsException();
4847 }
4848 }
4849 }
4850
4851 /**
4852 * Get the financial account for the item associated with the new transaction.
4853 *
4854 * @param array $params
4855 * @param int $default
4856 *
4857 * @return int
4858 */
4859 public static function getFinancialAccountForStatusChangeTrxn($params, $default) {
4860
4861 if (!empty($params['financial_account_id'])) {
4862 return $params['financial_account_id'];
4863 }
4864
4865 $contributionStatus = CRM_Contribute_PseudoConstant::contributionStatus($params['contribution_status_id'], 'name');
4866 $preferredAccountsRelationships = [
4867 'Refunded' => 'Credit/Contra Revenue Account is',
4868 'Chargeback' => 'Chargeback Account is',
4869 ];
4870
4871 if (in_array($contributionStatus, array_keys($preferredAccountsRelationships))) {
4872 $financialTypeID = !empty($params['financial_type_id']) ? $params['financial_type_id'] : $params['prevContribution']->financial_type_id;
4873 return CRM_Financial_BAO_FinancialAccount::getFinancialAccountForFinancialTypeByRelationship(
4874 $financialTypeID,
4875 $preferredAccountsRelationships[$contributionStatus]
4876 );
4877 }
4878
4879 return $default;
4880 }
4881
4882 /**
4883 * ContributionPage values were being imposed onto values.
4884 *
4885 * I have made this explicit and removed the couple (is_recur, is_pay_later) we
4886 * REALLY didn't want superimposed. The rest are left there in their overkill out
4887 * of cautiousness.
4888 *
4889 * The rationale for making this explicit is that it was a case of carefully set values being
4890 * seemingly randonly overwritten without much care. In general I think array randomly setting
4891 * variables en mass is risky.
4892 *
4893 * @param array $values
4894 *
4895 * @return array
4896 */
4897 protected function addContributionPageValuesToValuesHeavyHandedly(&$values) {
4898 $contributionPageValues = [];
4899 CRM_Contribute_BAO_ContributionPage::setValues(
4900 $this->contribution_page_id,
4901 $contributionPageValues
4902 );
4903 $valuesToCopy = [
4904 // These are the values that I believe to be useful.
4905 'id',
4906 'title',
4907 'pay_later_receipt',
4908 'pay_later_text',
4909 'receipt_from_email',
4910 'receipt_from_name',
4911 'receipt_text',
4912 'custom_pre_id',
4913 'custom_post_id',
4914 'honoree_profile_id',
4915 'onbehalf_profile_id',
4916 'honor_block_is_active',
4917 // Kinda might be - but would be on the contribution...
4918 'campaign_id',
4919 'currency',
4920 // Included for 'fear of regression' but can't justify any use for these....
4921 'intro_text',
4922 'payment_processor',
4923 'financial_type_id',
4924 'amount_block_is_active',
4925 'bcc_receipt',
4926 'cc_receipt',
4927 'created_date',
4928 'created_id',
4929 'default_amount_id',
4930 'end_date',
4931 'footer_text',
4932 'goal_amount',
4933 'initial_amount_help_text',
4934 'initial_amount_label',
4935 'intro_text',
4936 'is_allow_other_amount',
4937 'is_billing_required',
4938 'is_confirm_enabled',
4939 'is_credit_card_only',
4940 'is_monetary',
4941 'is_partial_payment',
4942 'is_recur_installments',
4943 'is_recur_interval',
4944 'is_share',
4945 'max_amount',
4946 'min_amount',
4947 'min_initial_amount',
4948 'recur_frequency_unit',
4949 'start_date',
4950 'thankyou_footer',
4951 'thankyou_text',
4952 'thankyou_title',
4953
4954 ];
4955 foreach ($valuesToCopy as $valueToCopy) {
4956 if (isset($contributionPageValues[$valueToCopy])) {
4957 if ($valueToCopy === 'title') {
4958 $values[$valueToCopy] = CRM_Contribute_BAO_Contribution_Utils::getContributionPageTitle($this->contribution_page_id);
4959 }
4960 else {
4961 $values[$valueToCopy] = $contributionPageValues[$valueToCopy];
4962 }
4963 }
4964 }
4965 return $values;
4966 }
4967
4968 /**
4969 * Get values of CiviContribute Settings
4970 * and check if its enabled or not.
4971 * Note: The CiviContribute settings are stored as single entry in civicrm_setting
4972 * in serialized form. Usually this should be stored as flat settings for each form fields
4973 * as per CiviCRM standards. Since this would take more effort to change the current behaviour of CiviContribute
4974 * settings we will live with an inconsistency because it's too hard to change for now.
4975 * https://github.com/civicrm/civicrm-core/pull/8562#issuecomment-227874245
4976 *
4977 *
4978 * @param string $name
4979 *
4980 * @return string
4981 *
4982 */
4983 public static function checkContributeSettings($name) {
4984 $contributeSettings = Civi::settings()->get('contribution_invoice_settings');
4985 return $contributeSettings[$name] ?? NULL;
4986 }
4987
4988 /**
4989 * This function process contribution related objects.
4990 *
4991 * @param int $contributionId
4992 * @param int $statusId
4993 * @param int|null $previousStatusId
4994 *
4995 * @param string $receiveDate
4996 *
4997 * @return null|string
4998 */
4999 public static function transitionComponentWithReturnMessage($contributionId, $statusId, $previousStatusId = NULL, $receiveDate = NULL) {
5000 $statusMsg = NULL;
5001 if (!$contributionId || !$statusId) {
5002 return $statusMsg;
5003 }
5004
5005 $params = [
5006 'contribution_id' => $contributionId,
5007 'contribution_status_id' => $statusId,
5008 'previous_contribution_status_id' => $previousStatusId,
5009 'receive_date' => $receiveDate,
5010 ];
5011
5012 $updateResult = CRM_Contribute_BAO_Contribution::transitionComponents($params);
5013
5014 if (!is_array($updateResult) ||
5015 !($updatedComponents = CRM_Utils_Array::value('updatedComponents', $updateResult)) ||
5016 !is_array($updatedComponents) ||
5017 empty($updatedComponents)
5018 ) {
5019 return $statusMsg;
5020 }
5021
5022 // get the user display name.
5023 $sql = "
5024 SELECT display_name as displayName
5025 FROM civicrm_contact
5026 LEFT JOIN civicrm_contribution on (civicrm_contribution.contact_id = civicrm_contact.id )
5027 WHERE civicrm_contribution.id = {$contributionId}";
5028 $userDisplayName = CRM_Core_DAO::singleValueQuery($sql);
5029
5030 // get the status message for user.
5031 foreach ($updatedComponents as $componentName => $updatedStatusId) {
5032
5033 if ($componentName == 'CiviMember') {
5034 $updatedStatusName = CRM_Utils_Array::value($updatedStatusId,
5035 CRM_Member_PseudoConstant::membershipStatus()
5036 );
5037
5038 $statusNameMsgPart = 'updated';
5039 switch ($updatedStatusName) {
5040 case 'Cancelled':
5041 case 'Expired':
5042 $statusNameMsgPart = $updatedStatusName;
5043 break;
5044 }
5045
5046 $statusMsg .= "<br />" . ts("Membership for %1 has been %2.", [
5047 1 => $userDisplayName,
5048 2 => $statusNameMsgPart,
5049 ]);
5050 }
5051
5052 if ($componentName == 'CiviEvent') {
5053 $updatedStatusName = CRM_Utils_Array::value($updatedStatusId,
5054 CRM_Event_PseudoConstant::participantStatus()
5055 );
5056 if ($updatedStatusName == 'Cancelled') {
5057 $statusMsg .= "<br />" . ts("Event Registration for %1 has been Cancelled.", [1 => $userDisplayName]);
5058 }
5059 elseif ($updatedStatusName == 'Registered') {
5060 $statusMsg .= "<br />" . ts("Event Registration for %1 has been updated.", [1 => $userDisplayName]);
5061 }
5062 }
5063
5064 if ($componentName == 'CiviPledge') {
5065 $updatedStatusName = CRM_Utils_Array::value($updatedStatusId,
5066 CRM_Contribute_PseudoConstant::contributionStatus(NULL, 'name')
5067 );
5068 if ($updatedStatusName == 'Cancelled') {
5069 $statusMsg .= "<br />" . ts("Pledge Payment for %1 has been Cancelled.", [1 => $userDisplayName]);
5070 }
5071 elseif ($updatedStatusName == 'Failed') {
5072 $statusMsg .= "<br />" . ts("Pledge Payment for %1 has been Failed.", [1 => $userDisplayName]);
5073 }
5074 elseif ($updatedStatusName == 'Completed') {
5075 $statusMsg .= "<br />" . ts("Pledge Payment for %1 has been updated.", [1 => $userDisplayName]);
5076 }
5077 }
5078 }
5079
5080 return $statusMsg;
5081 }
5082
5083 /**
5084 * Get the contribution as it is in the database before being updated.
5085 *
5086 * @param int $contributionID
5087 *
5088 * @return \CRM_Contribute_BAO_Contribution|null
5089 */
5090 private static function getOriginalContribution($contributionID) {
5091 return self::getValues(['id' => $contributionID]);
5092 }
5093
5094 /**
5095 * Get the amount for the financial item row.
5096 *
5097 * Helper function to start to break down recordFinancialTransactions for readability.
5098 *
5099 * The logic is more historical than .. logical. Paths other than the deprecated one are tested.
5100 *
5101 * Codewise, several somewhat disimmilar things have been squished into recordFinancialAccounts
5102 * for historical reasons. Going forwards we can hope to add tests & improve readibility
5103 * of that function
5104 *
5105 * @param array $params
5106 * Params as passed to contribution.create
5107 *
5108 * @param string $context
5109 * changeFinancialType| changedAmount
5110 * @param array $lineItemDetails
5111 * Line items.
5112 * @param bool $isARefund
5113 * Is this a refund / negative transaction.
5114 * @param int $previousLineItemTotal
5115 *
5116 * @return float
5117 * @todo move recordFinancialAccounts & helper functions to their own class?
5118 *
5119 */
5120 protected static function getFinancialItemAmountFromParams($params, $context, $lineItemDetails, $isARefund, $previousLineItemTotal) {
5121 if ($context == 'changedAmount') {
5122 $lineTotal = $lineItemDetails['line_total'];
5123 if ($lineTotal != $previousLineItemTotal) {
5124 $lineTotal -= $previousLineItemTotal;
5125 }
5126 return $lineTotal;
5127 }
5128 elseif ($context == 'changeFinancialType') {
5129 return -$lineItemDetails['line_total'];
5130 }
5131 elseif ($context == 'changedStatus') {
5132 $cancelledTaxAmount = 0;
5133 if ($isARefund) {
5134 $cancelledTaxAmount = CRM_Utils_Array::value('tax_amount', $lineItemDetails, '0.00');
5135 }
5136 return self::getMultiplier($params['contribution']->contribution_status_id, $context) * ((float) $lineItemDetails['line_total'] + (float) $cancelledTaxAmount);
5137 }
5138 elseif ($context === NULL) {
5139 // erm, yes because? but, hey, it's tested.
5140 return $lineItemDetails['line_total'];
5141 }
5142 elseif (empty($lineItemDetails['line_total'])) {
5143 // follow legacy code path
5144 Civi::log()
5145 ->warning('Deprecated bit of code, please log a ticket explaining how you got here!', ['civi.tag' => 'deprecated']);
5146 return $params['total_amount'];
5147 }
5148 else {
5149 return self::getMultiplier($params['contribution']->contribution_status_id, $context) * ((float) $lineItemDetails['line_total']);
5150 }
5151 }
5152
5153 /**
5154 * Get the multiplier for adjusting rows.
5155 *
5156 * If we are dealing with a refund or cancellation then it will be a negative
5157 * amount to reflect the negative transaction.
5158 *
5159 * If we are changing Financial Type it will be a negative amount to
5160 * adjust down the old type.
5161 *
5162 * @param int $contribution_status_id
5163 * @param string $context
5164 *
5165 * @return int
5166 */
5167 protected static function getMultiplier($contribution_status_id, $context) {
5168 if ($context == 'changeFinancialType' || self::isContributionStatusNegative($contribution_status_id)) {
5169 return -1;
5170 }
5171 return 1;
5172 }
5173
5174 /**
5175 * Does this transaction reflect a payment instrument change.
5176 *
5177 * @param array $params
5178 * @param array $pendingStatuses
5179 *
5180 * @return bool
5181 */
5182 protected static function isPaymentInstrumentChange(&$params, $pendingStatuses) {
5183 $contributionStatus = CRM_Core_PseudoConstant::getName('CRM_Contribute_BAO_Contribution', 'contribution_status_id', $params['contribution']->contribution_status_id);
5184
5185 if (array_key_exists('payment_instrument_id', $params)) {
5186 if (CRM_Utils_System::isNull($params['prevContribution']->payment_instrument_id) &&
5187 !CRM_Utils_System::isNull($params['payment_instrument_id'])
5188 ) {
5189 //check if status is changed from Pending to Completed
5190 // do not update payment instrument changes for Pending to Completed
5191 if (!($contributionStatus == 'Completed' &&
5192 in_array($params['prevContribution']->contribution_status_id, $pendingStatuses))
5193 ) {
5194 return TRUE;
5195 }
5196 }
5197 elseif ((!CRM_Utils_System::isNull($params['payment_instrument_id']) &&
5198 !CRM_Utils_System::isNull($params['prevContribution']->payment_instrument_id)) &&
5199 $params['payment_instrument_id'] != $params['prevContribution']->payment_instrument_id
5200 ) {
5201 return TRUE;
5202 }
5203 elseif (!CRM_Utils_System::isNull($params['contribution']->check_number) &&
5204 $params['contribution']->check_number != $params['prevContribution']->check_number
5205 ) {
5206 // another special case when check number is changed, create new financial records
5207 // create financial trxn with negative amount
5208 return TRUE;
5209 }
5210 }
5211 return FALSE;
5212 }
5213
5214 /**
5215 * Update the memberships associated with a contribution if it has been completed.
5216 *
5217 * Note that the way in which $memberships are loaded as objects is pretty messy & I think we could just
5218 * load them in this function. Code clean up would compensate for any minor performance implication.
5219 *
5220 * @param \CRM_Contribute_BAO_Contribution $contribution
5221 * @param int $primaryContributionID
5222 * @param string $changeDate
5223 *
5224 * @throws \CRM_Core_Exception
5225 * @throws \CiviCRM_API3_Exception
5226 */
5227 public static function updateMembershipBasedOnCompletionOfContribution($contribution, $primaryContributionID, $changeDate) {
5228 $memberships = self::getRelatedMemberships($contribution->id);
5229 foreach ($memberships as $membership) {
5230 $membershipParams = [
5231 'id' => $membership['id'],
5232 'contact_id' => $membership['contact_id'],
5233 'is_test' => $membership['is_test'],
5234 'membership_type_id' => $membership['membership_type_id'],
5235 'membership_activity_status' => 'Completed',
5236 ];
5237
5238 $currentMembership = CRM_Member_BAO_Membership::getContactMembership($membershipParams['contact_id'],
5239 $membershipParams['membership_type_id'],
5240 $membershipParams['is_test'],
5241 $membershipParams['id']
5242 );
5243
5244 // CRM-8141 update the membership type with the value recorded in log when membership created/renewed
5245 // this picks up membership type changes during renewals
5246 // @todo this is almost certainly an obsolete sql call, the pre-change
5247 // membership is accessible via $this->_relatedObjects
5248 $sql = "
5249 SELECT membership_type_id
5250 FROM civicrm_membership_log
5251 WHERE membership_id={$membershipParams['id']}
5252 ORDER BY id DESC
5253 LIMIT 1;";
5254 $dao = CRM_Core_DAO::executeQuery($sql);
5255 if ($dao->fetch()) {
5256 if (!empty($dao->membership_type_id)) {
5257 $membershipParams['membership_type_id'] = $dao->membership_type_id;
5258 }
5259 }
5260 if (empty($membership['end_date']) || (int) $membership['status_id'] !== CRM_Core_PseudoConstant::getKey('CRM_Member_BAO_Membership', 'status_id', 'Pending')) {
5261 // Passing num_terms to the api triggers date calculations, but for pending memberships these may be already calculated.
5262 // sigh - they should be consistent but removing the end date check causes test failures & maybe UI too?
5263 // 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.
5264 // @todo once apiv4 ships with core switch to that & find sanity.
5265 $membershipParams['num_terms'] = $contribution->getNumTermsByContributionAndMembershipType(
5266 $membershipParams['membership_type_id'],
5267 $primaryContributionID
5268 );
5269 }
5270 // @todo remove all this stuff in favour of letting the api call further down handle in
5271 // (it is a duplication of what the api does).
5272 $dates = array_fill_keys([
5273 'join_date',
5274 'start_date',
5275 'end_date',
5276 ], NULL);
5277 if ($currentMembership) {
5278 /*
5279 * Fixed FOR CRM-4433
5280 * In BAO/Membership.php(renewMembership function), we skip the extend membership date and status
5281 * when Contribution mode is notify and membership is for renewal )
5282 */
5283 CRM_Member_BAO_Membership::fixMembershipStatusBeforeRenew($currentMembership, $changeDate);
5284
5285 // @todo - we should pass membership_type_id instead of null here but not
5286 // adding as not sure of testing
5287 $dates = CRM_Member_BAO_MembershipType::getRenewalDatesForMembershipType($membershipParams['id'],
5288 $changeDate, NULL, $membershipParams['num_terms']
5289 );
5290 $dates['join_date'] = $currentMembership['join_date'];
5291 }
5292
5293 //get the status for membership.
5294 $calcStatus = CRM_Member_BAO_MembershipStatus::getMembershipStatusByDate($dates['start_date'],
5295 $dates['end_date'],
5296 $dates['join_date'],
5297 'today',
5298 TRUE,
5299 $membershipParams['membership_type_id'],
5300 $membershipParams
5301 );
5302
5303 unset($dates['end_date']);
5304 $membershipParams['status_id'] = CRM_Utils_Array::value('id', $calcStatus, 'New');
5305 //we might be renewing membership,
5306 //so make status override false.
5307 $membershipParams['is_override'] = FALSE;
5308 $membershipParams['status_override_end_date'] = 'null';
5309
5310 //CRM-17723 - reset static $relatedContactIds array()
5311 // @todo move it to Civi Statics.
5312 $var = TRUE;
5313 CRM_Member_BAO_Membership::createRelatedMemberships($var, $var, TRUE);
5314 civicrm_api3('Membership', 'create', $membershipParams);
5315 }
5316 }
5317
5318 /**
5319 * Get payment links as they relate to a contribution.
5320 *
5321 * If a payment can be made then include a payment link & if a refund is appropriate
5322 * then a refund link.
5323 *
5324 * @param int $id
5325 * @param float $balance
5326 * @param string $contributionStatus
5327 *
5328 * @return array
5329 * $actionLinks Links array containing:
5330 * -url
5331 * -title
5332 */
5333 protected static function getContributionPaymentLinks($id, $balance, $contributionStatus) {
5334 if ($contributionStatus === 'Failed' || !CRM_Core_Permission::check('edit contributions')) {
5335 // In general the balance is the best way to determine if a payment can be added or not,
5336 // but not for Failed contributions, where we don't accept additional payments at the moment.
5337 // (in some cases the contribution is 'Pending' and only the payment is failed. In those we
5338 // do accept more payments agains them.
5339 return [];
5340 }
5341 $actionLinks = [];
5342 $actionLinks[] = [
5343 'url' => CRM_Utils_System::url('civicrm/payment', [
5344 'action' => 'add',
5345 'reset' => 1,
5346 'id' => $id,
5347 'is_refund' => 0,
5348 ]),
5349 'title' => ts('Record Payment'),
5350 ];
5351
5352 if ((int) $balance > 0) {
5353 // @todo - this should be possible even if not > 0 - test & remove this if.
5354 // it is possible to 'overpay' in the real world & we honor that.
5355 if (CRM_Core_Config::isEnabledBackOfficeCreditCardPayments()) {
5356 $actionLinks[] = [
5357 'url' => CRM_Utils_System::url('civicrm/payment', [
5358 'action' => 'add',
5359 'reset' => 1,
5360 'is_refund' => 0,
5361 'id' => $id,
5362 'mode' => 'live',
5363 ]),
5364 'title' => ts('Submit Credit Card payment'),
5365 ];
5366 }
5367 }
5368 elseif ((int) $balance < 0) {
5369 // @todo - in the future remove this IF - OK to refund money even when not due since
5370 // ... life.
5371 $actionLinks[] = [
5372 'url' => CRM_Utils_System::url('civicrm/payment', [
5373 'action' => 'add',
5374 'reset' => 1,
5375 'id' => $id,
5376 'is_refund' => 1,
5377 ]),
5378 'title' => ts('Record Refund'),
5379 ];
5380 }
5381 return $actionLinks;
5382 }
5383
5384 /**
5385 * Get a query to determine the amount donated by the contact/s in the current financial year.
5386 *
5387 * @param array $contactIDs
5388 *
5389 * @return string
5390 */
5391 public static function getAnnualQuery($contactIDs) {
5392 $contactIDs = implode(',', $contactIDs);
5393 $config = CRM_Core_Config::singleton();
5394 $currentMonth = date('m');
5395 $currentDay = date('d');
5396 if (
5397 (int) $config->fiscalYearStart['M'] > $currentMonth ||
5398 (
5399 (int) $config->fiscalYearStart['M'] == $currentMonth &&
5400 (int) $config->fiscalYearStart['d'] > $currentDay
5401 )
5402 ) {
5403 $year = date('Y') - 1;
5404 }
5405 else {
5406 $year = date('Y');
5407 }
5408 $nextYear = $year + 1;
5409
5410 if ($config->fiscalYearStart) {
5411 $newFiscalYearStart = $config->fiscalYearStart;
5412 if ($newFiscalYearStart['M'] < 10) {
5413 // This is just a clumsy way of adding padding.
5414 // @todo next round look for a nicer way.
5415 $newFiscalYearStart['M'] = '0' . $newFiscalYearStart['M'];
5416 }
5417 if ($newFiscalYearStart['d'] < 10) {
5418 // This is just a clumsy way of adding padding.
5419 // @todo next round look for a nicer way.
5420 $newFiscalYearStart['d'] = '0' . $newFiscalYearStart['d'];
5421 }
5422 $config->fiscalYearStart = $newFiscalYearStart;
5423 $monthDay = $config->fiscalYearStart['M'] . $config->fiscalYearStart['d'];
5424 }
5425 else {
5426 // First of January.
5427 $monthDay = '0101';
5428 }
5429 $startDate = "$year$monthDay";
5430 $endDate = "$nextYear$monthDay";
5431
5432 $whereClauses = [
5433 'contact_id' => 'IN (' . $contactIDs . ')',
5434 'is_test' => ' = 0',
5435 'receive_date' => ['>=' . $startDate, '< ' . $endDate],
5436 ];
5437 $havingClause = 'contribution_status_id = ' . (int) CRM_Core_PseudoConstant::getKey('CRM_Contribute_BAO_Contribution', 'contribution_status_id', 'Completed');
5438 CRM_Financial_BAO_FinancialType::addACLClausesToWhereClauses($whereClauses);
5439
5440 $clauses = [];
5441 foreach ($whereClauses as $key => $clause) {
5442 $clauses[] = 'b.' . $key . " " . implode(' AND b.' . $key, (array) $clause);
5443 }
5444 $whereClauseString = implode(' AND ', $clauses);
5445
5446 // See https://github.com/civicrm/civicrm-core/pull/13512 for discussion of how
5447 // this group by + having on contribution_status_id improves performance
5448 $query = "
5449 SELECT COUNT(*) as count,
5450 SUM(total_amount) as amount,
5451 AVG(total_amount) as average,
5452 currency
5453 FROM civicrm_contribution b
5454 WHERE " . $whereClauseString . "
5455 GROUP BY currency, contribution_status_id
5456 HAVING $havingClause
5457 ";
5458 return $query;
5459 }
5460
5461 /**
5462 * Assign Test Value.
5463 *
5464 * @param string $fieldName
5465 * @param array $fieldDef
5466 * @param int $counter
5467 */
5468 protected function assignTestValue($fieldName, &$fieldDef, $counter) {
5469 if ($fieldName == 'tax_amount') {
5470 $this->{$fieldName} = "0.00";
5471 }
5472 elseif ($fieldName == 'net_amount') {
5473 $this->{$fieldName} = "2.00";
5474 }
5475 elseif ($fieldName == 'total_amount') {
5476 $this->{$fieldName} = "3.00";
5477 }
5478 elseif ($fieldName == 'fee_amount') {
5479 $this->{$fieldName} = "1.00";
5480 }
5481 else {
5482 parent::assignTestValues($fieldName, $fieldDef, $counter);
5483 }
5484 }
5485
5486 /**
5487 * Check if contribution has participant/membership payment.
5488 *
5489 * @param int $contributionId
5490 * Contribution ID
5491 *
5492 * @return bool
5493 */
5494 public static function allowUpdateRevenueRecognitionDate($contributionId) {
5495 // get line item for contribution
5496 $lineItems = CRM_Price_BAO_LineItem::getLineItemsByContributionID($contributionId);
5497 // check if line item is for membership or participant
5498 foreach ($lineItems as $items) {
5499 if ($items['entity_table'] == 'civicrm_participant') {
5500 $flag = FALSE;
5501 break;
5502 }
5503 elseif ($items['entity_table'] == 'civicrm_membership') {
5504 $flag = FALSE;
5505 }
5506 else {
5507 $flag = TRUE;
5508 break;
5509 }
5510 }
5511 return $flag;
5512 }
5513
5514 /**
5515 * Create Accounts Receivable financial trxn entry for Completed Contribution.
5516 *
5517 * @param array $trxnParams
5518 * Financial trxn params
5519 * @param array $contributionParams
5520 * Contribution Params
5521 *
5522 * @return null
5523 */
5524 public static function recordAlwaysAccountsReceivable(&$trxnParams, $contributionParams) {
5525 if (!Civi::settings()->get('always_post_to_accounts_receivable')) {
5526 return NULL;
5527 }
5528 $statusId = $contributionParams['contribution']->contribution_status_id;
5529 $contributionStatuses = CRM_Contribute_PseudoConstant::contributionStatus(NULL, 'name');
5530 $contributionStatus = empty($statusId) ? NULL : $contributionStatuses[$statusId];
5531 $previousContributionStatus = empty($contributionParams['prevContribution']) ? NULL : $contributionStatuses[$contributionParams['prevContribution']->contribution_status_id];
5532 // Return if contribution status is not completed.
5533 if (!($contributionStatus == 'Completed' && (empty($previousContributionStatus)
5534 || (!empty($previousContributionStatus) && $previousContributionStatus == 'Pending'
5535 && $contributionParams['prevContribution']->is_pay_later == 0
5536 )))
5537 ) {
5538 return NULL;
5539 }
5540
5541 $params = $trxnParams;
5542 $financialTypeID = !empty($contributionParams['financial_type_id']) ? $contributionParams['financial_type_id'] : $contributionParams['prevContribution']->financial_type_id;
5543 $arAccountId = CRM_Contribute_PseudoConstant::getRelationalFinancialAccount($financialTypeID, 'Accounts Receivable Account is');
5544 $params['to_financial_account_id'] = $arAccountId;
5545 $params['status_id'] = array_search('Pending', $contributionStatuses);
5546 $params['is_payment'] = FALSE;
5547 $trxn = CRM_Core_BAO_FinancialTrxn::create($params);
5548 self::$_trxnIDs[] = $trxn->id;
5549 $trxnParams['from_financial_account_id'] = $params['to_financial_account_id'];
5550 }
5551
5552 /**
5553 * Calculate financial item amount when contribution is updated.
5554 *
5555 * @param array $params
5556 * contribution params
5557 * @param array $amountParams
5558 *
5559 * @param string $context
5560 *
5561 * @return float
5562 */
5563 public static function calculateFinancialItemAmount($params, $amountParams, $context) {
5564 if (!empty($params['is_quick_config'])) {
5565 $amount = $amountParams['item_amount'];
5566 if (!$amount) {
5567 $amount = $params['total_amount'];
5568 if ($context === NULL) {
5569 $amount -= CRM_Utils_Array::value('tax_amount', $params, 0);
5570 }
5571 }
5572 }
5573 else {
5574 $amount = $amountParams['line_total'];
5575 if ($context == 'changedAmount') {
5576 $amount -= $amountParams['previous_line_total'];
5577 }
5578 $amount *= $amountParams['diff'];
5579 }
5580 return $amount;
5581 }
5582
5583 /**
5584 * Retrieve Sales Tax Financial Accounts.
5585 *
5586 *
5587 * @return array
5588 *
5589 */
5590 public static function getSalesTaxFinancialAccounts() {
5591 $query = "SELECT cfa.id FROM civicrm_entity_financial_account ce
5592 INNER JOIN civicrm_financial_account cfa ON ce.financial_account_id = cfa.id
5593 WHERE `entity_table` = 'civicrm_financial_type' AND cfa.is_tax = 1 AND ce.account_relationship = %1 GROUP BY cfa.id";
5594 $accountRel = key(CRM_Core_PseudoConstant::accountOptionValues('account_relationship', NULL, " AND v.name LIKE 'Sales Tax Account is' "));
5595 $queryParams = [1 => [$accountRel, 'Integer']];
5596 $dao = CRM_Core_DAO::executeQuery($query, $queryParams);
5597 $financialAccount = [];
5598 while ($dao->fetch()) {
5599 $financialAccount[$dao->id] = $dao->id;
5600 }
5601 return $financialAccount;
5602 }
5603
5604 /**
5605 * Create tax entry in civicrm_entity_financial_trxn table.
5606 *
5607 * @param array $entityParams
5608 *
5609 * @param array $eftParams
5610 *
5611 * @throws \CiviCRM_API3_Exception
5612 */
5613 public static function createProportionalEntry($entityParams, $eftParams) {
5614 $paid = 0;
5615 if ($entityParams['contribution_total_amount'] != 0) {
5616 $paid = $entityParams['line_item_amount'] * ($entityParams['trxn_total_amount'] / $entityParams['contribution_total_amount']);
5617 }
5618 // Record Entity Financial Trxn; CRM-20145
5619 $eftParams['amount'] = CRM_Contribute_BAO_Contribution_Utils::formatAmount($paid);
5620 civicrm_api3('EntityFinancialTrxn', 'create', $eftParams);
5621 }
5622
5623 /**
5624 * Create array of last financial item id's.
5625 *
5626 * @param int $contributionId
5627 *
5628 * @return array
5629 */
5630 public static function getLastFinancialItemIds($contributionId) {
5631 $sql = "SELECT fi.id, li.price_field_value_id, li.tax_amount, fi.financial_account_id
5632 FROM civicrm_financial_item fi
5633 INNER JOIN civicrm_line_item li ON li.id = fi.entity_id and fi.entity_table = 'civicrm_line_item'
5634 WHERE li.contribution_id = %1";
5635 $dao = CRM_Core_DAO::executeQuery($sql, [
5636 1 => [
5637 $contributionId,
5638 'Integer',
5639 ],
5640 ]);
5641 $ftIds = $taxItems = [];
5642 $salesTaxFinancialAccount = self::getSalesTaxFinancialAccounts();
5643 while ($dao->fetch()) {
5644 /* if sales tax item*/
5645 if (in_array($dao->financial_account_id, $salesTaxFinancialAccount)) {
5646 $taxItems[$dao->price_field_value_id] = [
5647 'financial_item_id' => $dao->id,
5648 'amount' => $dao->tax_amount,
5649 ];
5650 }
5651 else {
5652 $ftIds[$dao->price_field_value_id] = $dao->id;
5653 }
5654 }
5655 return [$ftIds, $taxItems];
5656 }
5657
5658 /**
5659 * Create proportional entries in civicrm_entity_financial_trxn.
5660 *
5661 * @param array $entityParams
5662 *
5663 * @param array $lineItems
5664 *
5665 * @param array $ftIds
5666 *
5667 * @param array $taxItems
5668 *
5669 * @throws \CiviCRM_API3_Exception
5670 */
5671 public static function createProportionalFinancialEntries($entityParams, $lineItems, $ftIds, $taxItems) {
5672 $eftParams = [
5673 'entity_table' => 'civicrm_financial_item',
5674 'financial_trxn_id' => $entityParams['trxn_id'],
5675 ];
5676 foreach ($lineItems as $key => $value) {
5677 if ($value['qty'] == 0) {
5678 continue;
5679 }
5680 $eftParams['entity_id'] = $ftIds[$value['price_field_value_id']];
5681 $entityParams['line_item_amount'] = $value['line_total'];
5682 self::createProportionalEntry($entityParams, $eftParams);
5683 if (array_key_exists($value['price_field_value_id'], $taxItems)) {
5684 $entityParams['line_item_amount'] = $taxItems[$value['price_field_value_id']]['amount'];
5685 $eftParams['entity_id'] = $taxItems[$value['price_field_value_id']]['financial_item_id'];
5686 self::createProportionalEntry($entityParams, $eftParams);
5687 }
5688 }
5689 }
5690
5691 /**
5692 * Load entities related to the contribution into $this->_relatedObjects.
5693 *
5694 * @param array $ids
5695 *
5696 * @throws \CRM_Core_Exception
5697 */
5698 protected function loadRelatedEntitiesByID($ids) {
5699 $entities = [
5700 'contact' => 'CRM_Contact_BAO_Contact',
5701 'contributionRecur' => 'CRM_Contribute_BAO_ContributionRecur',
5702 'contributionType' => 'CRM_Financial_BAO_FinancialType',
5703 'financialType' => 'CRM_Financial_BAO_FinancialType',
5704 'contributionPage' => 'CRM_Contribute_BAO_ContributionPage',
5705 ];
5706 foreach ($entities as $entity => $bao) {
5707 if (!empty($ids[$entity])) {
5708 $this->_relatedObjects[$entity] = new $bao();
5709 $this->_relatedObjects[$entity]->id = $ids[$entity];
5710 if (!$this->_relatedObjects[$entity]->find(TRUE)) {
5711 throw new CRM_Core_Exception($entity . ' could not be loaded');
5712 }
5713 }
5714 }
5715 }
5716
5717 /**
5718 * Should an email receipt be sent for this contribution when complete.
5719 *
5720 * @param array $input
5721 *
5722 * @return mixed
5723 */
5724 protected function isEmailReceipt($input) {
5725 if (isset($input['is_email_receipt'])) {
5726 return $input['is_email_receipt'];
5727 }
5728 if (!empty($this->_relatedObjects['contribution_page_id'])) {
5729 return $this->_relatedObjects['contribution_page_id']->is_email_receipt;
5730 }
5731 return TRUE;
5732 }
5733
5734 /**
5735 * Function to replace contribution tokens.
5736 *
5737 * @param array $contributionIds
5738 *
5739 * @param string $subject
5740 *
5741 * @param array $subjectToken
5742 *
5743 * @param string $text
5744 *
5745 * @param string $html
5746 *
5747 * @param array $messageToken
5748 *
5749 * @param bool $escapeSmarty
5750 *
5751 * @return array
5752 * @throws \CiviCRM_API3_Exception
5753 */
5754 public static function replaceContributionTokens(
5755 $contributionIds,
5756 $subject,
5757 $subjectToken,
5758 $text,
5759 $html,
5760 $messageToken,
5761 $escapeSmarty
5762 ) {
5763 if (empty($contributionIds)) {
5764 return [];
5765 }
5766 $contributionDetails = [];
5767 foreach ($contributionIds as $id) {
5768 $result = self::getContributionTokenValues($id, $messageToken);
5769 $contributionDetails[$result['values'][$result['id']]['contact_id']]['subject'] = CRM_Utils_Token::replaceContributionTokens($subject, $result, FALSE, $subjectToken, FALSE, $escapeSmarty);
5770 $contributionDetails[$result['values'][$result['id']]['contact_id']]['text'] = CRM_Utils_Token::replaceContributionTokens($text, $result, FALSE, $messageToken, FALSE, $escapeSmarty);
5771 $contributionDetails[$result['values'][$result['id']]['contact_id']]['html'] = CRM_Utils_Token::replaceContributionTokens($html, $result, FALSE, $messageToken, FALSE, $escapeSmarty);
5772 }
5773 return $contributionDetails;
5774 }
5775
5776 /**
5777 * Get the contribution fields for $id and display labels where
5778 * appropriate (if the token is present).
5779 *
5780 * @param int $id
5781 * @param array $messageToken
5782 * @return array
5783 */
5784 public static function getContributionTokenValues($id, $messageToken) {
5785 if (empty($id)) {
5786 return [];
5787 }
5788 $result = civicrm_api3('Contribution', 'get', ['id' => $id]);
5789 // lab.c.o mail#46 - show labels, not values, for custom fields with option values.
5790 if (!empty($messageToken)) {
5791 foreach ($result['values'][$id] as $fieldName => $fieldValue) {
5792 if (strpos($fieldName, 'custom_') === 0 && array_search($fieldName, $messageToken['contribution']) !== FALSE) {
5793 $result['values'][$id][$fieldName] = CRM_Core_BAO_CustomField::displayValue($result['values'][$id][$fieldName], $fieldName);
5794 }
5795 }
5796 }
5797 return $result;
5798 }
5799
5800 /**
5801 * Get invoice_number for contribution.
5802 *
5803 * @param int $contributionID
5804 *
5805 * @return string
5806 */
5807 public static function getInvoiceNumber($contributionID) {
5808 if ($invoicePrefix = self::checkContributeSettings('invoice_prefix')) {
5809 return $invoicePrefix . $contributionID;
5810 }
5811
5812 return NULL;
5813 }
5814
5815 /**
5816 * Load the values needed for the event message.
5817 *
5818 * @param int $eventID
5819 * @param int $participantID
5820 * @param int|null $contributionID
5821 *
5822 * @return array
5823 * @throws \CRM_Core_Exception
5824 */
5825 protected function loadEventMessageTemplateParams(int $eventID, int $participantID, $contributionID): array {
5826
5827 $eventParams = [
5828 'id' => $eventID,
5829 ];
5830 $values = ['event' => []];
5831
5832 CRM_Event_BAO_Event::retrieve($eventParams, $values['event']);
5833 // add custom fields for event
5834 $eventGroupTree = CRM_Core_BAO_CustomGroup::getTree('Event', NULL, $eventID);
5835
5836 $eventCustomGroup = [];
5837 foreach ($eventGroupTree as $key => $group) {
5838 if ($key === 'info') {
5839 continue;
5840 }
5841
5842 foreach ($group['fields'] as $k => $customField) {
5843 $groupLabel = $group['title'];
5844 if (!empty($customField['customValue'])) {
5845 foreach ($customField['customValue'] as $customFieldValues) {
5846 $eventCustomGroup[$groupLabel][$customField['label']] = $customFieldValues['data'] ?? NULL;
5847 }
5848 }
5849 }
5850 }
5851 $values['event']['customGroup'] = $eventCustomGroup;
5852
5853 //get participant details
5854 $participantParams = [
5855 'id' => $participantID,
5856 ];
5857
5858 $values['participant'] = [];
5859
5860 CRM_Event_BAO_Participant::getValues($participantParams, $values['participant'], $participantIds);
5861 // add custom fields for event
5862 $participantGroupTree = CRM_Core_BAO_CustomGroup::getTree('Participant', NULL, $participantID);
5863 $participantCustomGroup = [];
5864 foreach ($participantGroupTree as $key => $group) {
5865 if ($key === 'info') {
5866 continue;
5867 }
5868
5869 foreach ($group['fields'] as $k => $customField) {
5870 $groupLabel = $group['title'];
5871 if (!empty($customField['customValue'])) {
5872 foreach ($customField['customValue'] as $customFieldValues) {
5873 $participantCustomGroup[$groupLabel][$customField['label']] = $customFieldValues['data'] ?? NULL;
5874 }
5875 }
5876 }
5877 }
5878 $values['participant']['customGroup'] = $participantCustomGroup;
5879
5880 //get location details
5881 $locationParams = [
5882 'entity_id' => $eventID,
5883 'entity_table' => 'civicrm_event',
5884 ];
5885 $values['location'] = CRM_Core_BAO_Location::getValues($locationParams);
5886
5887 $ufJoinParams = [
5888 'entity_table' => 'civicrm_event',
5889 'entity_id' => $eventID,
5890 'module' => 'CiviEvent',
5891 ];
5892
5893 list($custom_pre_id,
5894 $custom_post_ids
5895 ) = CRM_Core_BAO_UFJoin::getUFGroupIds($ufJoinParams);
5896
5897 $values['custom_pre_id'] = $custom_pre_id;
5898 $values['custom_post_id'] = $custom_post_ids;
5899
5900 // set lineItem for event contribution
5901 if ($contributionID) {
5902 $participantIds = CRM_Event_BAO_Participant::getParticipantIds($contributionID);
5903 if (!empty($participantIds)) {
5904 foreach ($participantIds as $pIDs) {
5905 $lineItem = CRM_Price_BAO_LineItem::getLineItems($pIDs);
5906 if (!CRM_Utils_System::isNull($lineItem)) {
5907 $values['lineItem'][] = $lineItem;
5908 }
5909 }
5910 }
5911 }
5912 return $values;
5913 }
5914
5915 }