Merge pull request #13257 from vinuvarshith/BASW-316-unable-to-mark-price-set-as...
[civicrm-core.git] / CRM / Contribute / Form / AdditionalPayment.php
CommitLineData
0f602e3f
PJ
1<?php
2/*
3 +--------------------------------------------------------------------+
fee14197 4 | CiviCRM version 5 |
0f602e3f 5 +--------------------------------------------------------------------+
6b83d5bd 6 | Copyright CiviCRM LLC (c) 2004-2019 |
0f602e3f
PJ
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 | |
74ab7ba8 14 | CiviCRM is distributed in the hope that it will be useful, but |
0f602e3f
PJ
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 */
0f602e3f
PJ
27
28/**
29 *
30 * @package CRM
6b83d5bd 31 * @copyright CiviCRM LLC (c) 2004-2019
0f602e3f
PJ
32 */
33
34/**
07f8d162 35 * This form records additional payments needed when event/contribution is partially paid.
0f602e3f
PJ
36 */
37class CRM_Contribute_Form_AdditionalPayment extends CRM_Contribute_Form_AbstractEditPayment {
38 public $_contributeMode = 'direct';
39
0f602e3f 40 /**
100fef9d 41 * Id of the component entity
0f602e3f
PJ
42 */
43 public $_id = NULL;
44
c0406a91 45 protected $entity = 'Contribution';
46
0f602e3f
PJ
47 protected $_owed = NULL;
48
49 protected $_refund = NULL;
50
0dc4ef42 51 /**
52 * @deprecated - use parent $this->contactID
53 *
54 * @var int
55 */
0f602e3f
PJ
56 protected $_contactId = NULL;
57
58 protected $_contributorDisplayName = NULL;
59
60 protected $_contributorEmail = NULL;
61
62 protected $_toDoNotEmail = NULL;
63
64 protected $_paymentType = NULL;
65
66 protected $_contributionId = NULL;
67
bd99f5fe
PJ
68 protected $fromEmailId = NULL;
69
7cdb890a
PJ
70 protected $_fromEmails = NULL;
71
81f3d017
PJ
72 protected $_view = NULL;
73
74 public $_action = NULL;
75
0f602e3f 76 public function preProcess() {
8f262a0b 77
0f602e3f 78 $this->_id = CRM_Utils_Request::retrieve('id', 'Positive', $this, TRUE);
c0406a91 79 parent::preProcess();
80 $this->_contactId = $this->_contactID;
81 $this->_component = CRM_Utils_Request::retrieve('component', 'String', $this, FALSE, 'contribution');
81f3d017 82 $this->_view = CRM_Utils_Request::retrieve('view', 'String', $this, FALSE);
81f3d017
PJ
83 $this->assign('component', $this->_component);
84 $this->assign('id', $this->_id);
d4c0653f 85 $this->assign('suppressPaymentFormButtons', $this->isBeingCalledFromSelectorContext());
ad96d702 86
81f3d017 87 if ($this->_view == 'transaction' && ($this->_action & CRM_Core_Action::BROWSE)) {
c0406a91 88 $title = $this->assignPaymentInfoBlock();
536b8316 89 CRM_Utils_System::setTitle($title);
81f3d017
PJ
90 return;
91 }
0f602e3f 92 $this->_fromEmails = CRM_Core_BAO_Email::getFromEmail();
0f602e3f 93
8f4f19ca 94 $entityType = 'contribution';
0f602e3f 95 if ($this->_component == 'event') {
8f4f19ca 96 $entityType = 'participant';
0f602e3f 97 $this->_contributionId = CRM_Core_DAO::getFieldValue('CRM_Event_DAO_ParticipantPayment', $this->_id, 'contribution_id', 'participant_id');
685dc433
PN
98 $eventId = CRM_Core_DAO::getFieldValue('CRM_Event_DAO_Participant', $this->_id, 'event_id', 'id');
99 $this->_fromEmails = CRM_Event_BAO_Event::getFromEmailIds($eventId);
100 }
101 else {
102 $this->_contributionId = $this->_id;
103 $this->_fromEmails['from_email_id'] = CRM_Core_BAO_Email::getFromEmail();
0f602e3f
PJ
104 }
105
8f4f19ca 106 $paymentInfo = CRM_Core_BAO_FinancialTrxn::getPartialPaymentWithType($this->_id, $entityType);
d5397f2f 107 $paymentDetails = CRM_Contribute_BAO_Contribution::getPaymentInfo($this->_id, $this->_component, FALSE, TRUE);
7cdb890a
PJ
108
109 $this->_amtPaid = $paymentDetails['paid'];
110 $this->_amtTotal = $paymentDetails['total'];
0f602e3f
PJ
111
112 if (!empty($paymentInfo['refund_due'])) {
113 $paymentAmt = $this->_refund = $paymentInfo['refund_due'];
114 $this->_paymentType = 'refund';
115 }
116 elseif (!empty($paymentInfo['amount_owed'])) {
117 $paymentAmt = $this->_owed = $paymentInfo['amount_owed'];
118 $this->_paymentType = 'owed';
119 }
120 else {
121 CRM_Core_Error::fatal(ts('No payment information found for this record'));
122 }
123
e8cf3013
PJ
124 if (!empty($this->_mode) && $this->_paymentType == 'refund') {
125 CRM_Core_Error::fatal(ts('Credit card payment is not for Refund payments use'));
126 }
127
c0406a91 128 list($this->_contributorDisplayName, $this->_contributorEmail) = CRM_Contact_BAO_Contact_Location::getEmailDetails($this->_contactID);
e8cf3013 129
0f602e3f 130 $this->assign('contributionMode', $this->_mode);
c0406a91 131 $this->assign('contactId', $this->_contactID);
0f602e3f 132 $this->assign('paymentType', $this->_paymentType);
e8cf3013 133 $this->assign('paymentAmt', abs($paymentAmt));
0f602e3f 134
2c13688c 135 $this->setPageTitle($this->_refund ? ts('Refund') : ts('Payment'));
0f602e3f
PJ
136 }
137
d4c0653f 138 /**
139 * Is this function being called from a datatable selector.
140 *
141 * If so we don't want to show the buttons.
142 */
143 protected function isBeingCalledFromSelectorContext() {
144 return CRM_Utils_Request::retrieve('selector', 'Positive');
145 }
146
186c9c17
EM
147 /**
148 * This virtual function is used to set the default values of
149 * various form elements
150 *
151 * access public
152 *
a6c01b45
CW
153 * @return array
154 * reference to the array of default values
186c9c17
EM
155 */
156 /**
157 * @return array
158 */
0f602e3f 159 public function setDefaultValues() {
81f3d017 160 if ($this->_view == 'transaction' && ($this->_action & CRM_Core_Action::BROWSE)) {
acb1052e 161 return NULL;
81f3d017 162 }
481a74f4 163 $defaults = array();
0f602e3f 164 if ($this->_mode) {
9f89c7a2
PN
165 CRM_Core_Payment_Form::setDefaultValues($this, $this->_contactId);
166 $defaults = array_merge($defaults, $this->_defaults);
0f602e3f
PJ
167 }
168
f7fb5615 169 if (empty($defaults['trxn_date'])) {
170 $defaults['trxn_date'] = date('Y-m-d H:i:s');
efa3d1d1
PJ
171 }
172
820fbcfb 173 if ($this->_refund) {
7583896b 174 $defaults['total_amount'] = CRM_Utils_Money::format(abs($this->_refund), NULL, NULL, TRUE);
820fbcfb 175 }
aea78df0 176 elseif ($this->_owed) {
28c249a9 177 $defaults['total_amount'] = CRM_Utils_Money::formatLocaleNumericRoundedForDefaultCurrency($this->_owed);
aea78df0 178 }
820fbcfb 179
0f602e3f 180 // Set $newCredit variable in template to control whether link to credit card mode is included
9be1374d 181 $this->assign('newCredit', CRM_Core_Config::isEnabledBackOfficeCreditCardPayments());
efa3d1d1 182 return $defaults;
0f602e3f
PJ
183 }
184
9f89c7a2
PN
185 /**
186 * Build the form object.
187 */
0f602e3f 188 public function buildQuickForm() {
81f3d017
PJ
189 if ($this->_view == 'transaction' && ($this->_action & CRM_Core_Action::BROWSE)) {
190 $this->addButtons(array(
191 array(
192 'type' => 'cancel',
193 'name' => ts('Done'),
194 'spacing' => '&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;',
195 'isDefault' => TRUE,
196 ),
197 )
198 );
199 return;
200 }
254ce393 201
18135422 202 CRM_Core_Payment_Form::buildPaymentForm($this, $this->_paymentProcessor, FALSE, TRUE, CRM_Utils_Request::retrieve('payment_instrument_id', 'Integer'));
23cb875c 203 $this->add('select', 'payment_processor_id', ts('Payment Processor'), $this->_processors, NULL);
204
0f602e3f
PJ
205 $attributes = CRM_Core_DAO::getAttribute('CRM_Financial_DAO_FinancialTrxn');
206
58438e5b 207 $label = ($this->_refund) ? ts('Refund Amount') : ts('Payment Amount');
0f602e3f 208 $this->addMoney('total_amount',
58438e5b 209 $label,
43c6eb86 210 TRUE,
0f602e3f
PJ
211 $attributes['total_amount'],
212 TRUE, 'currency', NULL
213 );
214
0f602e3f
PJ
215 //add receipt for offline contribution
216 $this->addElement('checkbox', 'is_email_receipt', ts('Send Receipt?'));
217
ad96d702 218 $this->add('select', 'from_email_address', ts('Receipt From'), $this->_fromEmails['from_email_id']);
0f602e3f 219
7cdb890a
PJ
220 $this->add('textarea', 'receipt_text', ts('Confirmation Message'));
221
7bc6b5bb 222 $dateLabel = ($this->_refund) ? ts('Refund Date') : ts('Date Received');
f7fb5615 223 $this->addField('trxn_date', array('entity' => 'FinancialTrxn', 'label' => $dateLabel, 'context' => 'Contribution'), FALSE, FALSE);
0f602e3f
PJ
224
225 if ($this->_contactId && $this->_id) {
226 if ($this->_component == 'event') {
227 $eventId = CRM_Core_DAO::getFieldValue('CRM_Event_DAO_Participant', $this->_id, 'event_id', 'id');
228 $event = CRM_Event_BAO_Event::getEvents(0, $eventId);
229 $this->assign('eventName', $event[$eventId]);
230 }
231 }
232
233 $this->assign('displayName', $this->_contributorDisplayName);
234 $this->assign('component', $this->_component);
235 $this->assign('email', $this->_contributorEmail);
236
0f602e3f 237 $js = NULL;
23cb875c 238 // render backoffice payment fields only on offline mode
0f602e3f
PJ
239 if (!$this->_mode) {
240 $js = array('onclick' => "return verify( );");
23cb875c 241
242 $this->add('select', 'payment_instrument_id',
243 ts('Payment Method'),
244 array('' => ts('- select -')) + CRM_Contribute_PseudoConstant::paymentInstrument(),
1f24c7f5 245 TRUE,
23cb875c 246 array('onChange' => "return showHideByValue('payment_instrument_id','4','checkNumber','table-row','select',false);")
247 );
248
249 $this->add('text', 'check_number', ts('Check Number'), $attributes['financial_trxn_check_number']);
250 $this->add('text', 'trxn_id', ts('Transaction ID'), array('class' => 'twelve') + $attributes['trxn_id']);
251
252 $this->add('text', 'fee_amount', ts('Fee Amount'),
253 $attributes['fee_amount']
254 );
255 $this->addRule('fee_amount', ts('Please enter a valid monetary value for Fee Amount.'), 'money');
256
257 $this->add('text', 'net_amount', ts('Net Amount'),
258 $attributes['net_amount']
259 );
260 $this->addRule('net_amount', ts('Please enter a valid monetary value for Net Amount.'), 'money');
0f602e3f
PJ
261 }
262
263 $buttonName = $this->_refund ? 'Record Refund' : 'Record Payment';
264 $this->addButtons(array(
265 array(
266 'type' => 'upload',
267 'name' => ts('%1', array(1 => $buttonName)),
268 'js' => $js,
21dfd5f5 269 'isDefault' => TRUE,
0f602e3f
PJ
270 ),
271 array(
272 'type' => 'cancel',
21dfd5f5 273 'name' => ts('Cancel'),
0f602e3f
PJ
274 ),
275 )
276 );
aaffa79f 277 $mailingInfo = Civi::settings()->get('mailing_backend');
0f602e3f
PJ
278 $this->assign('outBound_option', $mailingInfo['outBound_option']);
279
280 $this->addFormRule(array('CRM_Contribute_Form_AdditionalPayment', 'formRule'), $this);
281 }
282
186c9c17
EM
283 /**
284 * @param $fields
285 * @param $files
286 * @param $self
287 *
288 * @return array
289 */
00be9182 290 public static function formRule($fields, $files, $self) {
0f602e3f
PJ
291 $errors = array();
292 if ($self->_paymentType == 'owed' && $fields['total_amount'] > $self->_owed) {
293 $errors['total_amount'] = ts('Payment amount cannot be greater than owed amount');
294 }
e8cf3013 295 if ($self->_paymentType == 'refund' && $fields['total_amount'] != abs($self->_refund)) {
0f2c3c03 296 $errors['total_amount'] = ts('Refund amount must equal refund due amount.');
0f602e3f 297 }
922becfb 298 $netAmt = $fields['total_amount'] - CRM_Utils_Array::value('fee_amount', $fields, 0);
0f602e3f 299 if (!empty($fields['net_amount']) && $netAmt != $fields['net_amount']) {
0f2c3c03 300 $errors['net_amount'] = ts('Net amount should be equal to the difference between payment amount and fee amount.');
0f602e3f 301 }
43c6eb86 302 if ($self->_paymentProcessor['id'] === 0 && empty($fields['payment_instrument_id'])) {
303 $errors['payment_instrument_id'] = ts('Payment method is a required field');
304 }
305
0f602e3f
PJ
306 return $errors;
307 }
308
922becfb
PN
309 /**
310 * Process the form submission.
311 */
0f602e3f 312 public function postProcess() {
922becfb
PN
313 $submittedValues = $this->controller->exportValues($this->_name);
314 $this->submit($submittedValues);
685dc433 315 $childTab = 'contribute';
0f602e3f 316 if ($this->_component == 'event') {
685dc433 317 $childTab = 'participant';
0f602e3f 318 }
922becfb
PN
319 $session = CRM_Core_Session::singleton();
320 $session->replaceUserContext(CRM_Utils_System::url('civicrm/contact/view',
321 "reset=1&cid={$this->_contactId}&selectedChild={$childTab}"
322 ));
323 }
324
325 /**
326 * Process Payments.
327 * @param array $submittedValues
328 *
329 */
330 public function submit($submittedValues) {
80c9b98c
PN
331 $this->_params = $submittedValues;
332 $this->beginPostProcess();
23cb875c 333 $this->_contributorContactID = $this->_contactID;
334 $this->processBillingAddress();
922becfb
PN
335 $participantId = NULL;
336 if ($this->_component == 'event') {
337 $participantId = $this->_id;
338 }
685dc433
PN
339 $contributionStatuses = CRM_Core_PseudoConstant::get('CRM_Contribute_DAO_Contribution',
340 'contribution_status_id',
341 array('labelColumn' => 'name')
342 );
343 $contributionStatusID = CRM_Core_DAO::getFieldValue('CRM_Contribute_DAO_Contribution', $this->_contributionId, 'contribution_status_id');
344 if ($contributionStatuses[$contributionStatusID] == 'Pending') {
2848105c
PN
345 civicrm_api3('Contribution', 'create',
346 array(
347 'id' => $this->_contributionId,
348 'contribution_status_id' => array_search('Partially paid', $contributionStatuses),
349 'is_pay_later' => 0,
350 )
351 );
685dc433 352 }
f7fb5615 353
0f602e3f
PJ
354 if ($this->_mode) {
355 // process credit card
820fbcfb 356 $this->assign('contributeMode', 'direct');
23cb875c 357 $this->processCreditCard();
0f602e3f 358 }
aac57c29 359
922becfb
PN
360 $defaults = array();
361 $contribution = civicrm_api3('Contribution', 'getsingle', array(
362 'return' => array("contribution_status_id"),
363 'id' => $this->_contributionId,
364 ));
365 $contributionStatusId = CRM_Utils_Array::value('contribution_status_id', $contribution);
a15d98d8 366 $result = CRM_Contribute_BAO_Contribution::recordAdditionalPayment($this->_contributionId, $this->_params, $this->_paymentType, $participantId);
922becfb
PN
367 // Fetch the contribution & do proportional line item assignment
368 $params = array('id' => $this->_contributionId);
369 $contribution = CRM_Contribute_BAO_Contribution::retrieve($params, $defaults, $params);
370 CRM_Contribute_BAO_Contribution::addPayments(array($contribution), $contributionStatusId);
94c8aed1 371 if ($this->_contributionId && CRM_Core_Permission::access('CiviMember')) {
5a53dd1f
E
372 $membershipPaymentCount = civicrm_api3('MembershipPayment', 'getCount', array('contribution_id' => $this->_contributionId));
373 if ($membershipPaymentCount) {
94c8aed1
E
374 $this->ajaxResponse['updateTabs']['#tab_member'] = CRM_Contact_BAO_Contact::getCountComponent('membership', $this->_contactID);
375 }
376 }
5a53dd1f
E
377 if ($this->_contributionId && CRM_Core_Permission::access('CiviEvent')) {
378 $participantPaymentCount = civicrm_api3('ParticipantPayment', 'getCount', array('contribution_id' => $this->_contributionId));
379 if ($participantPaymentCount) {
380 $this->ajaxResponse['updateTabs']['#tab_participant'] = CRM_Contact_BAO_Contact::getCountComponent('participant', $this->_contactID);
381 }
382 }
922becfb
PN
383
384 $statusMsg = ts('The payment record has been processed.');
385 // send email
a15d98d8 386 if (!empty($result) && !empty($this->_params['is_email_receipt'])) {
387 $this->_params['contact_id'] = $this->_contactId;
388 $this->_params['contribution_id'] = $this->_contributionId;
922becfb 389 // to get 'from email id' for send receipt
a15d98d8 390 $this->fromEmailId = $this->_params['from_email_address'];
391 $sendReceipt = $this->emailReceipt($this->_params);
922becfb 392 if ($sendReceipt) {
aac57c29
PJ
393 $statusMsg .= ' ' . ts('A receipt has been emailed to the contributor.');
394 }
0f602e3f 395 }
922becfb
PN
396
397 CRM_Core_Session::setStatus($statusMsg, ts('Saved'), 'success');
0f602e3f 398 }
bd99f5fe 399
23cb875c 400 public function processCreditCard() {
b4989753
PJ
401 $config = CRM_Core_Config::singleton();
402 $session = CRM_Core_Session::singleton();
403
b4989753
PJ
404 $now = date('YmdHis');
405 $fields = array();
406
407 // we need to retrieve email address
23cb875c 408 if ($this->_context == 'standalone' && !empty($this->_params['is_email_receipt'])) {
b4989753
PJ
409 list($this->userDisplayName,
410 $this->userEmail
353ffa53 411 ) = CRM_Contact_BAO_Contact_Location::getEmailDetails($this->_contactId);
b4989753
PJ
412 $this->assign('displayName', $this->userDisplayName);
413 }
414
23cb875c 415 $this->formatParamsForPaymentProcessor($this->_params);
b4989753 416
b4989753 417 $this->_params['amount'] = $this->_params['total_amount'];
c039f658 418 // @todo - stop setting amount level in this function & call the CRM_Price_BAO_PriceSet::getAmountLevel
419 // function to get correct amount level consistently. Remove setting of the amount level in
420 // CRM_Price_BAO_PriceSet::processAmount. Extend the unit tests in CRM_Price_BAO_PriceSetTest
421 // to cover all variants.
b4989753
PJ
422 $this->_params['amount_level'] = 0;
423 $this->_params['currencyID'] = CRM_Utils_Array::value('currency',
424 $this->_params,
425 $config->defaultCurrency
426 );
aefd7f6b 427
a7488080 428 if (!empty($this->_params['trxn_date'])) {
f7fb5615 429 $this->_params['receive_date'] = $this->_params['trxn_date'];
b4989753
PJ
430 }
431
23cb875c 432 if (empty($this->_params['receive_date'])) {
433 $this->_params['receive_date'] = date('YmdHis');
434 }
435
b4989753
PJ
436 if (empty($this->_params['invoice_id'])) {
437 $this->_params['invoiceID'] = md5(uniqid(rand(), TRUE));
438 }
439 else {
440 $this->_params['invoiceID'] = $this->_params['invoice_id'];
441 }
442
0b50eca0 443 $this->assign('address', CRM_Utils_Address::getFormattedBillingAddressFieldsFromParameters(
23cb875c 444 $this->_params,
0b50eca0 445 $this->_bltID
446 ));
447
b4989753 448 //Add common data to formatted params
23cb875c 449 $params = $this->_params;
b4989753
PJ
450 CRM_Contribute_Form_AdditionalInfo::postProcessCommon($params, $this->_params, $this);
451 // at this point we've created a contact and stored its address etc
452 // all the payment processors expect the name and address to be in the
453 // so we copy stuff over to first_name etc.
454 $paymentParams = $this->_params;
455 $paymentParams['contactID'] = $this->_contactId;
456 CRM_Core_Payment_Form::mapParams($this->_bltID, $this->_params, $paymentParams, TRUE);
457
b4989753 458 $paymentParams['contributionPageID'] = NULL;
a7488080 459 if (!empty($this->_params['is_email_receipt'])) {
b4989753 460 $paymentParams['email'] = $this->_contributorEmail;
23cb875c 461 $paymentParams['is_email_receipt'] = TRUE;
b4989753
PJ
462 }
463 else {
23cb875c 464 $paymentParams['is_email_receipt'] = $this->_params['is_email_receipt'] = FALSE;
b4989753
PJ
465 }
466
467 $result = NULL;
468
469 if ($paymentParams['amount'] > 0.0) {
248141b9
EM
470 try {
471 // force a reget of the payment processor in case the form changed it, CRM-7179
472 $payment = Civi\Payment\System::singleton()->getByProcessor($this->_paymentProcessor);
473 $result = $payment->doPayment($paymentParams);
474 }
475 catch (\Civi\Payment\Exception\PaymentProcessorException $e) {
23cb875c 476 Civi::log()->error('Payment processor exception: ' . $e->getMessage());
477 $urlParams = "action=add&cid={$this->_contactId}&id={$this->_contributionId}&component={$this->_component}&mode={$this->_mode}";
478 CRM_Core_Error::statusBounce(CRM_Utils_System::url($e->getMessage(), 'civicrm/payment/add', $urlParams));
b4989753 479 }
b4989753
PJ
480 }
481
23cb875c 482 if (!empty($result)) {
b4989753
PJ
483 $this->_params = array_merge($this->_params, $result);
484 }
485
820fbcfb
PJ
486 if (empty($this->_params['receive_date'])) {
487 $this->_params['receive_date'] = $now;
488 }
b4989753
PJ
489
490 $this->set('params', $this->_params);
b4989753
PJ
491
492 // set source if not set
493 if (empty($this->_params['source'])) {
494 $userID = $session->get('userID');
495 $userSortName = CRM_Core_DAO::getFieldValue('CRM_Contact_DAO_Contact', $userID,
496 'sort_name'
497 );
498 $this->_params['source'] = ts('Submit Credit Card Payment by: %1', array(1 => $userSortName));
499 }
b4989753
PJ
500 }
501
186c9c17 502 /**
61bfc595
PN
503 * Function to send email receipt.
504 *
c490a46a 505 * @param array $params
186c9c17 506 *
61bfc595 507 * @return bool
186c9c17 508 */
00be9182 509 public function emailReceipt(&$params) {
bd99f5fe 510 // email receipt sending
7cdb890a
PJ
511 // send message template
512 if ($this->_component == 'event') {
7cdb890a 513
23cb875c 514 // fetch event information from participant ID using API
515 $eventId = civicrm_api3('Participant', 'getvalue', array(
516 'return' => "event_id",
517 'id' => $this->_id,
518 ));
519 $event = civicrm_api3('Event', 'getsingle', array('id' => $eventId));
7cdb890a 520
820fbcfb 521 $this->assign('event', $event);
7cdb890a
PJ
522 $this->assign('isShowLocation', $event['is_show_location']);
523 if (CRM_Utils_Array::value('is_show_location', $event) == 1) {
524 $locationParams = array(
525 'entity_id' => $eventId,
526 'entity_table' => 'civicrm_event',
527 );
528 $location = CRM_Core_BAO_Location::getValues($locationParams, TRUE);
529 $this->assign('location', $location);
530 }
531 }
532
533 // assign payment info here
534 $paymentConfig['confirm_email_text'] = CRM_Utils_Array::value('confirm_email_text', $params);
535 $this->assign('paymentConfig', $paymentConfig);
23cb875c 536
537 $this->assign('totalAmount', $this->_amtTotal);
538
7cdb890a
PJ
539 $isRefund = ($this->_paymentType == 'refund') ? TRUE : FALSE;
540 $this->assign('isRefund', $isRefund);
541 if ($isRefund) {
542 $this->assign('totalPaid', $this->_amtPaid);
7cdb890a
PJ
543 $this->assign('refundAmount', $params['total_amount']);
544 }
545 else {
546 $balance = $this->_amtTotal - ($this->_amtPaid + $params['total_amount']);
820fbcfb 547 $paymentsComplete = ($balance == 0) ? 1 : 0;
7cdb890a 548 $this->assign('amountOwed', $balance);
7cdb890a 549 $this->assign('paymentAmount', $params['total_amount']);
820fbcfb 550 $this->assign('paymentsComplete', $paymentsComplete);
7cdb890a
PJ
551 }
552 $this->assign('contactDisplayName', $this->_contributorDisplayName);
553
554 // assign trxn details
555 $this->assign('trxn_id', CRM_Utils_Array::value('trxn_id', $params));
820fbcfb 556 $this->assign('receive_date', CRM_Utils_Array::value('trxn_date', $params));
23cb875c 557 $this->assign('paidBy', CRM_Core_PseudoConstant::getLabel(
e3d511f5 558 'CRM_Contribute_BAO_Contribution',
23cb875c 559 'payment_instrument_id',
560 $params['payment_instrument_id']
561 ));
7cdb890a
PJ
562 $this->assign('checkNumber', CRM_Utils_Array::value('check_number', $params));
563
564 $sendTemplateParams = array(
565 'groupName' => 'msg_tpl_workflow_contribution',
566 'valueName' => 'payment_or_refund_notification',
567 'contactId' => $this->_contactId,
92fcb95f 568 'PDFFilename' => ts('notification') . '.pdf',
7cdb890a
PJ
569 );
570
571 // try to send emails only if email id is present
572 // and the do-not-email option is not checked for that contact
573 if ($this->_contributorEmail && !$this->_toDoNotEmail) {
574 if (array_key_exists($params['from_email_address'], $this->_fromEmails['from_email_id'])) {
575 $receiptFrom = $params['from_email_address'];
576 }
577
578 $sendTemplateParams['from'] = $receiptFrom;
579 $sendTemplateParams['toName'] = $this->_contributorDisplayName;
580 $sendTemplateParams['toEmail'] = $this->_contributorEmail;
7cdb890a
PJ
581 }
582 list($mailSent, $subject, $message, $html) = CRM_Core_BAO_MessageTemplate::sendTemplate($sendTemplateParams);
ad96d702 583 return $mailSent;
bd99f5fe 584 }
96025800 585
61bfc595
PN
586 /**
587 * Wrapper for unit testing the post process submit function.
588 *
61bfc595
PN
589 * @param array $params
590 * @param string|null $creditCardMode
9fbf312f 591 * @param string $entityType
61bfc595
PN
592 *
593 * @throws \CiviCRM_API3_Exception
594 */
9fbf312f 595 public function testSubmit($params, $creditCardMode = NULL, $entityType = 'contribute') {
61bfc595 596 $this->_bltID = 5;
80c9b98c
PN
597 // Required because processCreditCard calls set method on this.
598 $_SERVER['REQUEST_METHOD'] = 'GET';
599 $this->controller = new CRM_Core_Controller();
600
601 $this->assignPaymentRelatedVariables();
9fbf312f 602
61bfc595
PN
603 if (!empty($params['contribution_id'])) {
604 $this->_contributionId = $params['contribution_id'];
605
9fbf312f 606 $paymentInfo = CRM_Core_BAO_FinancialTrxn::getPartialPaymentWithType($this->_contributionId, $entityType);
607 $paymentDetails = CRM_Contribute_BAO_Contribution::getPaymentInfo($this->_contributionId, $entityType, FALSE, TRUE);
61bfc595
PN
608
609 $this->_amtPaid = $paymentDetails['paid'];
610 $this->_amtTotal = $paymentDetails['total'];
611
612 if (!empty($paymentInfo['refund_due'])) {
613 $this->_refund = $paymentInfo['refund_due'];
614 $this->_paymentType = 'refund';
615 }
616 elseif (!empty($paymentInfo['amount_owed'])) {
617 $this->_owed = $paymentInfo['amount_owed'];
618 $this->_paymentType = 'owed';
619 }
620 }
621
622 if (!empty($params['contact_id'])) {
623 $this->_contactId = $params['contact_id'];
624 }
625
626 if ($creditCardMode) {
627 $this->_mode = $creditCardMode;
628 }
629
61bfc595 630 $this->_fields = array();
23cb875c 631 $this->set('cid', $this->_contactId);
632 parent::preProcess();
61bfc595
PN
633 $this->submit($params);
634 }
635
d5397f2f 636}