CRM-16189, fixed style and removed white space
[civicrm-core.git] / CRM / Contribute / Form / AdditionalPayment.php
1 <?php
2 /*
3 +--------------------------------------------------------------------+
4 | CiviCRM version 4.7 |
5 +--------------------------------------------------------------------+
6 | Copyright CiviCRM LLC (c) 2004-2016 |
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 +--------------------------------------------------------------------+
26 */
27
28 /**
29 *
30 * @package CRM
31 * @copyright CiviCRM LLC (c) 2004-2016
32 */
33
34 /**
35 * This form records additional payments needed when event/contribution is partially paid.
36 */
37 class CRM_Contribute_Form_AdditionalPayment extends CRM_Contribute_Form_AbstractEditPayment {
38 public $_contributeMode = 'direct';
39
40 /**
41 * Related component whose financial payment is being processed.
42 *
43 * @var string
44 */
45 protected $_component = NULL;
46
47 /**
48 * Id of the component entity
49 */
50 public $_id = NULL;
51
52 protected $_owed = NULL;
53
54 protected $_refund = NULL;
55
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
68 protected $fromEmailId = NULL;
69
70 protected $_fromEmails = NULL;
71
72 protected $_view = NULL;
73
74 public $_action = NULL;
75
76 public function preProcess() {
77 $this->_id = CRM_Utils_Request::retrieve('id', 'Positive', $this, TRUE);
78 $this->_contactId = CRM_Utils_Request::retrieve('cid', 'Positive', $this, TRUE);
79 $this->_component = CRM_Utils_Request::retrieve('component', 'String', $this, TRUE);
80 $this->_view = CRM_Utils_Request::retrieve('view', 'String', $this, FALSE);
81 $this->_action = CRM_Utils_Request::retrieve('action', 'String', $this, FALSE);
82 $this->assign('component', $this->_component);
83 $this->assign('id', $this->_id);
84 $this->assign('suppressPaymentFormButtons', $this->isBeingCalledFromSelectorContext());
85
86 if ($this->_view == 'transaction' && ($this->_action & CRM_Core_Action::BROWSE)) {
87 $paymentInfo = CRM_Contribute_BAO_Contribution::getPaymentInfo($this->_id, $this->_component, TRUE);
88 $transactionRows = $paymentInfo['transaction'];
89 $title = ts('View Payment');
90 if ($this->_component == 'event') {
91 $info = CRM_Event_BAO_Participant::participantDetails($this->_id);
92 $title .= " - {$info['title']}";
93 }
94 CRM_Utils_System::setTitle($title);
95 $this->assign('transaction', TRUE);
96 $this->assign('rows', $transactionRows);
97 return;
98 }
99 $this->_fromEmails = CRM_Core_BAO_Email::getFromEmail();
100 $this->_formType = CRM_Utils_Array::value('formType', $_GET);
101
102 $enitityType = NULL;
103 $enitityType = 'contribution';
104 if ($this->_component == 'event') {
105 $enitityType = 'participant';
106 $this->_contributionId = CRM_Core_DAO::getFieldValue('CRM_Event_DAO_ParticipantPayment', $this->_id, 'contribution_id', 'participant_id');
107 $eventId = CRM_Core_DAO::getFieldValue('CRM_Event_DAO_Participant', $this->_id, 'event_id', 'id');
108 $this->_fromEmails = CRM_Event_BAO_Event::getFromEmailIds($eventId);
109 }
110 else {
111 $this->_contributionId = $this->_id;
112 $this->_fromEmails['from_email_id'] = CRM_Core_BAO_Email::getFromEmail();
113 }
114
115 $paymentInfo = CRM_Core_BAO_FinancialTrxn::getPartialPaymentWithType($this->_id, $enitityType);
116 $paymentDetails = CRM_Contribute_BAO_Contribution::getPaymentInfo($this->_id, $this->_component, FALSE, TRUE);
117
118 $this->_amtPaid = $paymentDetails['paid'];
119 $this->_amtTotal = $paymentDetails['total'];
120
121 if (!empty($paymentInfo['refund_due'])) {
122 $paymentAmt = $this->_refund = $paymentInfo['refund_due'];
123 $this->_paymentType = 'refund';
124 }
125 elseif (!empty($paymentInfo['amount_owed'])) {
126 $paymentAmt = $this->_owed = $paymentInfo['amount_owed'];
127 $this->_paymentType = 'owed';
128 }
129 else {
130 CRM_Core_Error::fatal(ts('No payment information found for this record'));
131 }
132
133 //set the payment mode - _mode property is defined in parent class
134 $this->_mode = CRM_Utils_Request::retrieve('mode', 'String', $this);
135
136 if (!empty($this->_mode) && $this->_paymentType == 'refund') {
137 CRM_Core_Error::fatal(ts('Credit card payment is not for Refund payments use'));
138 }
139
140 list($this->_contributorDisplayName, $this->_contributorEmail) = CRM_Contact_BAO_Contact_Location::getEmailDetails($this->_contactId);
141
142 $this->assignPaymentRelatedVariables();
143
144 $this->assign('contributionMode', $this->_mode);
145 $this->assign('contactId', $this->_contactId);
146 $this->assign('paymentType', $this->_paymentType);
147 $this->assign('paymentAmt', abs($paymentAmt));
148
149 $this->setPageTitle($this->_refund ? ts('Refund') : ts('Payment'));
150 }
151
152 /**
153 * Is this function being called from a datatable selector.
154 *
155 * If so we don't want to show the buttons.
156 */
157 protected function isBeingCalledFromSelectorContext() {
158 return CRM_Utils_Request::retrieve('selector', 'Positive');
159 }
160
161 /**
162 * This virtual function is used to set the default values of
163 * various form elements
164 *
165 * access public
166 *
167 * @return array
168 * reference to the array of default values
169 */
170 /**
171 * @return array
172 */
173 public function setDefaultValues() {
174 if ($this->_view == 'transaction' && ($this->_action & CRM_Core_Action::BROWSE)) {
175 return NULL;
176 }
177 $defaults = array();
178 if ($this->_mode) {
179 $defaults = $this->_values;
180
181 $config = CRM_Core_Config::singleton();
182 // set default country from config if no country set
183 if (empty($defaults["billing_country_id-{$this->_bltID}"])) {
184 $defaults["billing_country_id-{$this->_bltID}"] = $config->defaultContactCountry;
185 }
186
187 if (empty($defaults["billing_state_province_id-{$this->_bltID}"])) {
188 $defaults["billing_state_province_id-{$this->_bltID}"] = $config->defaultContactStateProvince;
189 }
190
191 $billingDefaults = $this->getProfileDefaults('Billing', $this->_contactId);
192 $defaults = array_merge($defaults, $billingDefaults);
193 }
194
195 if (empty($defaults['trxn_date']) && empty($defaults['trxn_date_time'])) {
196 list($defaults['trxn_date'], $defaults['trxn_date_time'])
197 = CRM_Utils_Date::setDateDefaults(
198 CRM_Utils_Array::value('register_date', $defaults),
199 'activityDateTime'
200 );
201 }
202
203 if ($this->_refund) {
204 $defaults['total_amount'] = abs($this->_refund);
205 }
206
207 // Set $newCredit variable in template to control whether link to credit card mode is included
208 $this->assign('newCredit', CRM_Core_Config::isEnabledBackOfficeCreditCardPayments());
209 return $defaults;
210 }
211
212 public function buildQuickForm() {
213 if ($this->_view == 'transaction' && ($this->_action & CRM_Core_Action::BROWSE)) {
214 $this->addButtons(array(
215 array(
216 'type' => 'cancel',
217 'name' => ts('Done'),
218 'spacing' => '&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;',
219 'isDefault' => TRUE,
220 ),
221 )
222 );
223 return;
224 }
225 $ccPane = NULL;
226 if ($this->_mode) {
227 if (CRM_Utils_Array::value('payment_type', $this->_processors) & CRM_Core_Payment::PAYMENT_TYPE_DIRECT_DEBIT
228 ) {
229 $ccPane = array(ts('Direct Debit Information') => 'DirectDebit');
230 }
231 else {
232 $ccPane = array(ts('Credit Card Information') => 'CreditCard');
233 }
234 $defaults = $this->_values;
235 $showAdditionalInfo = FALSE;
236
237 foreach ($ccPane as $name => $type) {
238 if ($this->_formType == $type || !empty($_POST["hidden_{$type}"]) ||
239 CRM_Utils_Array::value("hidden_{$type}", $defaults)
240 ) {
241 $showAdditionalInfo = TRUE;
242 $allPanes[$name]['open'] = 'true';
243 }
244
245 $urlParams = "snippet=4&formType={$type}";
246 if ($this->_mode) {
247 $urlParams .= "&mode={$this->_mode}";
248 }
249 $open = 'false';
250 if ($type == 'CreditCard' ||
251 $type == 'DirectDebit'
252 ) {
253 $open = 'true';
254 }
255
256 $allPanes[$name] = array(
257 'url' => CRM_Utils_System::url('civicrm/payment/add', $urlParams),
258 'open' => $open,
259 'id' => $type,
260 );
261
262 CRM_Core_Payment_Form::buildPaymentForm($this, $this->_paymentProcessor, FALSE, TRUE);
263
264 $qfKey = $this->controller->_key;
265 $this->assign('qfKey', $qfKey);
266 $this->assign('allPanes', $allPanes);
267 $this->assign('showAdditionalInfo', $showAdditionalInfo);
268
269 if ($this->_formType) {
270 $this->assign('formType', $this->_formType);
271 return;
272 }
273 }
274 }
275 $attributes = CRM_Core_DAO::getAttribute('CRM_Financial_DAO_FinancialTrxn');
276
277 $this->add('select', 'payment_processor_id', ts('Payment Processor'), $this->_processors, NULL);
278 $label = ($this->_refund) ? ts('Refund Amount') : ts('Payment Amount');
279 $this->addMoney('total_amount',
280 $label,
281 FALSE,
282 $attributes['total_amount'],
283 TRUE, 'currency', NULL
284 );
285
286 $this->add('select', 'payment_instrument_id',
287 ts('Payment Method'),
288 array('' => ts('- select -')) + CRM_Contribute_PseudoConstant::paymentInstrument(),
289 TRUE, array('onChange' => "return showHideByValue('payment_instrument_id','4','checkNumber','table-row','select',false);")
290 );
291
292 $this->add('text', 'check_number', ts('Check Number'), $attributes['financial_trxn_check_number']);
293 $this->add('text', 'trxn_id', ts('Transaction ID'), array('class' => 'twelve') + $attributes['trxn_id']);
294
295 //add receipt for offline contribution
296 $this->addElement('checkbox', 'is_email_receipt', ts('Send Receipt?'));
297
298 $this->add('select', 'from_email_address', ts('Receipt From'), $this->_fromEmails['from_email_id']);
299
300 $this->add('textarea', 'receipt_text', ts('Confirmation Message'));
301
302 // add various dates
303 $dateLabel = ($this->_refund) ? ts('Refund Date') : ts('Date Received');
304 $this->addDateTime('trxn_date', $dateLabel, FALSE, array('formatType' => 'activityDateTime'));
305
306 if ($this->_contactId && $this->_id) {
307 if ($this->_component == 'event') {
308 $eventId = CRM_Core_DAO::getFieldValue('CRM_Event_DAO_Participant', $this->_id, 'event_id', 'id');
309 $event = CRM_Event_BAO_Event::getEvents(0, $eventId);
310 $this->assign('eventName', $event[$eventId]);
311 }
312 }
313
314 $this->assign('displayName', $this->_contributorDisplayName);
315 $this->assign('component', $this->_component);
316 $this->assign('email', $this->_contributorEmail);
317
318 $this->add('text', 'fee_amount', ts('Fee Amount'),
319 $attributes['fee_amount']
320 );
321 $this->addRule('fee_amount', ts('Please enter a valid monetary value for Fee Amount.'), 'money');
322
323 $this->add('text', 'net_amount', ts('Net Amount'),
324 $attributes['net_amount']
325 );
326 $this->addRule('net_amount', ts('Please enter a valid monetary value for Net Amount.'), 'money');
327
328 $js = NULL;
329 if (!$this->_mode) {
330 $js = array('onclick' => "return verify( );");
331 }
332
333 $buttonName = $this->_refund ? 'Record Refund' : 'Record Payment';
334 $this->addButtons(array(
335 array(
336 'type' => 'upload',
337 'name' => ts('%1', array(1 => $buttonName)),
338 'js' => $js,
339 'isDefault' => TRUE,
340 ),
341 array(
342 'type' => 'cancel',
343 'name' => ts('Cancel'),
344 ),
345 )
346 );
347 $mailingInfo = Civi::settings()->get('mailing_backend');
348 $this->assign('outBound_option', $mailingInfo['outBound_option']);
349
350 $this->addFormRule(array('CRM_Contribute_Form_AdditionalPayment', 'formRule'), $this);
351 }
352
353 /**
354 * @param $fields
355 * @param $files
356 * @param $self
357 *
358 * @return array
359 */
360 public static function formRule($fields, $files, $self) {
361 $errors = array();
362 if ($self->_paymentType == 'owed' && $fields['total_amount'] > $self->_owed) {
363 $errors['total_amount'] = ts('Payment amount cannot be greater than owed amount');
364 }
365 if ($self->_paymentType == 'refund' && $fields['total_amount'] != abs($self->_refund)) {
366 $errors['total_amount'] = ts('Refund amount must equal refund due amount.');
367 }
368 $netAmt = $fields['total_amount'] - $fields['fee_amount'];
369 if (!empty($fields['net_amount']) && $netAmt != $fields['net_amount']) {
370 $errors['net_amount'] = ts('Net amount should be equal to the difference between payment amount and fee amount.');
371 }
372 return $errors;
373 }
374
375 public function postProcess() {
376 $participantId = NULL;
377 $childTab = 'contribute';
378 if ($this->_component == 'event') {
379 $participantId = $this->_id;
380 $childTab = 'participant';
381 }
382 $submittedValues = $this->controller->exportValues($this->_name);
383 $submittedValues['confirm_email_text'] = CRM_Utils_Array::value('receipt_text', $submittedValues);
384 $contributionStatuses = CRM_Core_PseudoConstant::get('CRM_Contribute_DAO_Contribution',
385 'contribution_status_id',
386 array('labelColumn' => 'name')
387 );
388 $contributionStatusID = CRM_Core_DAO::getFieldValue('CRM_Contribute_DAO_Contribution', $this->_contributionId, 'contribution_status_id');
389 if ($contributionStatuses[$contributionStatusID] == 'Pending') {
390 CRM_Core_DAO::setFieldValue('CRM_Contribute_DAO_Contribution', $this->_contributionId, 'contribution_status_id', array_search('Partially paid', $contributionStatuses));
391 }
392 $submittedValues['trxn_date'] = CRM_Utils_Date::processDate($submittedValues['trxn_date'], $submittedValues['trxn_date_time']);
393 if ($this->_mode) {
394 // process credit card
395 $this->assign('contributeMode', 'direct');
396 $this->processCreditCard($submittedValues);
397 $submittedValues = $this->_params;
398 }
399 else {
400 $defaults = array();
401 $contribution = civicrm_api3('Contribution', 'getsingle', array(
402 'return' => array("contribution_status_id"),
403 'id' => $this->_contributionId,
404 ));
405 $contributionStatusId = CRM_Utils_Array::value('contribution_status_id', $contribution);
406 $result = CRM_Contribute_BAO_Contribution::recordAdditionalPayment($this->_contributionId, $submittedValues, $this->_paymentType, $participantId);
407 // Fetch the contribution & do proportional line item assignment
408 $params = array('id' => $this->_contributionId);
409 $contribution = CRM_Contribute_BAO_Contribution::retrieve($params, $defaults, $params);
410 CRM_Contribute_BAO_Contribution::addPayments(array($contribution), $contributionStatusId);
411
412 // email sending
413 if (!empty($result) && !empty($submittedValues['is_email_receipt'])) {
414 $submittedValues['contact_id'] = $this->_contactId;
415 $submittedValues['contribution_id'] = $this->_contributionId;
416
417 // to get 'from email id' for send receipt
418 $this->fromEmailId = $submittedValues['from_email_address'];
419 $sendReceipt = $this->emailReceipt($submittedValues);
420 }
421
422 $statusMsg = ts('The payment record has been processed.');
423 if (!empty($submittedValues['is_email_receipt']) && $sendReceipt) {
424 $statusMsg .= ' ' . ts('A receipt has been emailed to the contributor.');
425 }
426 // email sending
427 if (!empty($result) && !empty($submittedValues['is_email_receipt'])) {
428 $submittedValues['contact_id'] = $this->_contactId;
429 $submittedValues['contribution_id'] = $this->_contributionId;
430 // to get 'from email id' for send receipt
431 $this->fromEmailId = $submittedValues['from_email_address'];
432 $sendReceipt = $this->emailReceipt($submittedValues);
433 }
434
435 CRM_Core_Session::setStatus($statusMsg, ts('Saved'), 'success');
436
437 $session = CRM_Core_Session::singleton();
438 $session->replaceUserContext(CRM_Utils_System::url('civicrm/contact/view',
439 "reset=1&cid={$this->_contactId}&selectedChild={$childTab}"
440 ));
441 }
442 }
443
444 /**
445 * @param $submittedValues
446 */
447 public function processCreditCard($submittedValues) {
448 $config = CRM_Core_Config::singleton();
449 $session = CRM_Core_Session::singleton();
450
451 $unsetParams = array(
452 'trxn_id',
453 'payment_instrument_id',
454 'contribution_status_id',
455 );
456 foreach ($unsetParams as $key) {
457 if (isset($submittedValues[$key])) {
458 unset($submittedValues[$key]);
459 }
460 }
461
462 // Get the required fields value only.
463 $params = $this->_params = $submittedValues;
464
465 //get the payment processor id as per mode.
466 //@todo unclear relevance of mode - seems like a lot of duplicated params here!
467 $this->_params['payment_processor'] = $params['payment_processor_id']
468 = $this->_params['payment_processor_id'] = $submittedValues['payment_processor_id'] = $this->_paymentProcessor['id'];
469
470 $now = date('YmdHis');
471 $fields = array();
472
473 // we need to retrieve email address
474 if ($this->_context == 'standalone' && !empty($submittedValues['is_email_receipt'])) {
475 list($this->userDisplayName,
476 $this->userEmail
477 ) = CRM_Contact_BAO_Contact_Location::getEmailDetails($this->_contactId);
478 $this->assign('displayName', $this->userDisplayName);
479 }
480
481 //set email for primary location.
482 $fields['email-Primary'] = 1;
483 $params['email-Primary'] = $this->_contributorEmail;
484
485 // now set the values for the billing location.
486 foreach ($this->_fields as $name => $dontCare) {
487 $fields[$name] = 1;
488 }
489
490 // also add location name to the array
491 $params["address_name-{$this->_bltID}"] = CRM_Utils_Array::value('billing_first_name', $params) . ' ' . CRM_Utils_Array::value('billing_middle_name', $params) . ' ' . CRM_Utils_Array::value('billing_last_name', $params);
492 $params["address_name-{$this->_bltID}"] = trim($params["address_name-{$this->_bltID}"]);
493 $fields["address_name-{$this->_bltID}"] = 1;
494
495 $ctype = CRM_Core_DAO::getFieldValue('CRM_Contact_DAO_Contact',
496 $this->_contactId,
497 'contact_type'
498 );
499
500 $nameFields = array('first_name', 'middle_name', 'last_name');
501 foreach ($nameFields as $name) {
502 $fields[$name] = 1;
503 if (array_key_exists("billing_$name", $params)) {
504 $params[$name] = $params["billing_{$name}"];
505 $params['preserveDBName'] = TRUE;
506 }
507 }
508
509 if (!empty($params['source'])) {
510 unset($params['source']);
511 }
512 $contactID = CRM_Contact_BAO_Contact::createProfileContact($params, $fields,
513 $this->_contactId,
514 NULL, NULL,
515 $ctype
516 );
517
518 // Add all the additional payment params we need.
519 $this->_params["state_province-{$this->_bltID}"] = $this->_params["billing_state_province-{$this->_bltID}"] = CRM_Core_PseudoConstant::stateProvinceAbbreviation($this->_params["billing_state_province_id-{$this->_bltID}"]);
520 $this->_params["country-{$this->_bltID}"] = $this->_params["billing_country-{$this->_bltID}"] = CRM_Core_PseudoConstant::countryIsoCode($this->_params["billing_country_id-{$this->_bltID}"]);
521
522 if ($this->_paymentProcessor['payment_type'] & CRM_Core_Payment::PAYMENT_TYPE_CREDIT_CARD) {
523 $this->_params['year'] = CRM_Core_Payment_Form::getCreditCardExpirationYear($this->_params);
524 $this->_params['month'] = CRM_Core_Payment_Form::getCreditCardExpirationMonth($this->_params);
525 }
526 $this->_params['ip_address'] = CRM_Utils_System::ipAddress();
527 $this->_params['amount'] = $this->_params['total_amount'];
528 // @todo - stop setting amount level in this function & call the CRM_Price_BAO_PriceSet::getAmountLevel
529 // function to get correct amount level consistently. Remove setting of the amount level in
530 // CRM_Price_BAO_PriceSet::processAmount. Extend the unit tests in CRM_Price_BAO_PriceSetTest
531 // to cover all variants.
532 $this->_params['amount_level'] = 0;
533 $this->_params['currencyID'] = CRM_Utils_Array::value('currency',
534 $this->_params,
535 $config->defaultCurrency
536 );
537
538 if (!empty($this->_params['trxn_date'])) {
539 $this->_params['receive_date'] = CRM_Utils_Date::processDate($this->_params['trxn_date'], $this->_params['trxn_date_time']);
540 }
541
542 if (empty($this->_params['invoice_id'])) {
543 $this->_params['invoiceID'] = md5(uniqid(rand(), TRUE));
544 }
545 else {
546 $this->_params['invoiceID'] = $this->_params['invoice_id'];
547 }
548
549 $this->assignBillingName($params);
550 $this->assign('address', CRM_Utils_Address::getFormattedBillingAddressFieldsFromParameters(
551 $params,
552 $this->_bltID
553 ));
554
555 $date = CRM_Utils_Date::format($params['credit_card_exp_date']);
556 $date = CRM_Utils_Date::mysqlToIso($date);
557 $this->assign('credit_card_type', CRM_Utils_Array::value('credit_card_type', $params));
558 $this->assign('credit_card_exp_date', $date);
559 $this->assign('credit_card_number',
560 CRM_Utils_System::mungeCreditCard($params['credit_card_number'])
561 );
562
563 //Add common data to formatted params
564 CRM_Contribute_Form_AdditionalInfo::postProcessCommon($params, $this->_params, $this);
565 // at this point we've created a contact and stored its address etc
566 // all the payment processors expect the name and address to be in the
567 // so we copy stuff over to first_name etc.
568 $paymentParams = $this->_params;
569 $paymentParams['contactID'] = $this->_contactId;
570 CRM_Core_Payment_Form::mapParams($this->_bltID, $this->_params, $paymentParams, TRUE);
571
572 // add some financial type details to the params list
573 // if folks need to use it
574 $paymentParams['contributionType_name'] = $this->_params['contributionType_name'] = $contributionType->name;
575 $paymentParams['contributionPageID'] = NULL;
576 if (!empty($this->_params['is_email_receipt'])) {
577 $paymentParams['email'] = $this->_contributorEmail;
578 $paymentParams['is_email_receipt'] = 1;
579 }
580 else {
581 $paymentParams['is_email_receipt'] = 0;
582 $this->_params['is_email_receipt'] = 0;
583 }
584 if (!empty($this->_params['receive_date'])) {
585 $paymentParams['receive_date'] = $this->_params['receive_date'];
586 }
587 if (!empty($this->_params['receive_date'])) {
588 $paymentParams['receive_date'] = $this->_params['receive_date'];
589 }
590
591 $result = NULL;
592
593 if ($paymentParams['amount'] > 0.0) {
594 try {
595 // force a reget of the payment processor in case the form changed it, CRM-7179
596 $payment = Civi\Payment\System::singleton()->getByProcessor($this->_paymentProcessor);
597 $result = $payment->doPayment($paymentParams);
598 }
599 catch (\Civi\Payment\Exception\PaymentProcessorException $e) {
600 //set the contribution mode.
601 $urlParams = "action=add&cid={$this->_contactId}&id={$this->_id}&component={$this->_component}";
602 if ($this->_mode) {
603 $urlParams .= "&mode={$this->_mode}";
604 }
605 CRM_Core_Error::displaySessionError($result);
606 CRM_Utils_System::redirect(CRM_Utils_System::url('civicrm/payment/add', $urlParams));
607 }
608 }
609
610 if ($result) {
611 $this->_params = array_merge($this->_params, $result);
612 }
613
614 if (empty($this->_params['receive_date'])) {
615 $this->_params['receive_date'] = $now;
616 }
617
618 $this->set('params', $this->_params);
619
620 // set source if not set
621 if (empty($this->_params['source'])) {
622 $userID = $session->get('userID');
623 $userSortName = CRM_Core_DAO::getFieldValue('CRM_Contact_DAO_Contact', $userID,
624 'sort_name'
625 );
626 $this->_params['source'] = ts('Submit Credit Card Payment by: %1', array(1 => $userSortName));
627 }
628 }
629
630 /**
631 * @param array $params
632 *
633 * @return mixed
634 */
635 public function emailReceipt(&$params) {
636 // email receipt sending
637 // send message template
638 if ($this->_component == 'event') {
639 $eventId = CRM_Core_DAO::getFieldValue('CRM_Event_DAO_Participant', $this->_id, 'event_id', 'id');
640
641 $returnProperties = array('fee_label', 'start_date', 'end_date', 'is_show_location', 'title');
642 CRM_Core_DAO::commonRetrieveAll('CRM_Event_DAO_Event', 'id', $eventId, $events, $returnProperties);
643 $event = $events[$eventId];
644 unset($event['start_date']);
645 unset($event['end_date']);
646
647 $this->assign('event', $event);
648 $this->assign('isShowLocation', $event['is_show_location']);
649 if (CRM_Utils_Array::value('is_show_location', $event) == 1) {
650 $locationParams = array(
651 'entity_id' => $eventId,
652 'entity_table' => 'civicrm_event',
653 );
654 $location = CRM_Core_BAO_Location::getValues($locationParams, TRUE);
655 $this->assign('location', $location);
656 }
657 }
658
659 // assign payment info here
660 $paymentConfig['confirm_email_text'] = CRM_Utils_Array::value('confirm_email_text', $params);
661 $this->assign('paymentConfig', $paymentConfig);
662 $isRefund = ($this->_paymentType == 'refund') ? TRUE : FALSE;
663 $this->assign('isRefund', $isRefund);
664 if ($isRefund) {
665 $this->assign('totalPaid', $this->_amtPaid);
666 $this->assign('totalAmount', $this->_amtTotal);
667 $this->assign('refundAmount', $params['total_amount']);
668 }
669 else {
670 $balance = $this->_amtTotal - ($this->_amtPaid + $params['total_amount']);
671 $paymentsComplete = ($balance == 0) ? 1 : 0;
672 $this->assign('amountOwed', $balance);
673 $this->assign('totalAmount', $this->_amtTotal);
674 $this->assign('paymentAmount', $params['total_amount']);
675 $this->assign('paymentsComplete', $paymentsComplete);
676 }
677 $this->assign('contactDisplayName', $this->_contributorDisplayName);
678
679 // assign trxn details
680 $this->assign('trxn_id', CRM_Utils_Array::value('trxn_id', $params));
681 $this->assign('receive_date', CRM_Utils_Array::value('trxn_date', $params));
682 $paymentInstrument = CRM_Contribute_PseudoConstant::paymentInstrument();
683 if (array_key_exists('payment_instrument_id', $params)) {
684 $this->assign('paidBy',
685 CRM_Utils_Array::value($params['payment_instrument_id'],
686 $paymentInstrument
687 )
688 );
689 }
690 $this->assign('checkNumber', CRM_Utils_Array::value('check_number', $params));
691
692 $sendTemplateParams = array(
693 'groupName' => 'msg_tpl_workflow_contribution',
694 'valueName' => 'payment_or_refund_notification',
695 'contactId' => $this->_contactId,
696 'PDFFilename' => ts('notification') . '.pdf',
697 );
698
699 // try to send emails only if email id is present
700 // and the do-not-email option is not checked for that contact
701 if ($this->_contributorEmail && !$this->_toDoNotEmail) {
702 if (array_key_exists($params['from_email_address'], $this->_fromEmails['from_email_id'])) {
703 $receiptFrom = $params['from_email_address'];
704 }
705
706 $sendTemplateParams['from'] = $receiptFrom;
707 $sendTemplateParams['toName'] = $this->_contributorDisplayName;
708 $sendTemplateParams['toEmail'] = $this->_contributorEmail;
709 $sendTemplateParams['cc'] = CRM_Utils_Array::value('cc', $this->_fromEmails);
710 $sendTemplateParams['bcc'] = CRM_Utils_Array::value('bcc', $this->_fromEmails);
711 }
712 list($mailSent, $subject, $message, $html) = CRM_Core_BAO_MessageTemplate::sendTemplate($sendTemplateParams);
713 return $mailSent;
714 }
715
716 }