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