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