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