Merge pull request #2712 from pratik-joshi/CRM-14363
[civicrm-core.git] / CRM / Contribute / Form / Contribution.php
1 <?php
2 /*
3 +--------------------------------------------------------------------+
4 | CiviCRM version 4.4 |
5 +--------------------------------------------------------------------+
6 | Copyright CiviCRM LLC (c) 2004-2013 |
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
31 * @copyright CiviCRM LLC (c) 2004-2013
32 * $Id$
33 *
34 */
35
36 /**
37 * This class generates form components for processing a contribution
38 *
39 */
40 class CRM_Contribute_Form_Contribution extends CRM_Contribute_Form_AbstractEditPayment {
41 /**
42 * the id of the contribution that we are proceessing
43 *
44 * @var int
45 * @public
46 */
47 public $_id;
48
49 /**
50 * the id of the premium that we are proceessing
51 *
52 * @var int
53 * @public
54 */
55 public $_premiumID = NULL;
56 public $_productDAO = NULL;
57
58 /**
59 * the id of the note
60 *
61 * @var int
62 * @public
63 */
64 public $_noteID;
65
66 /**
67 * the id of the contact associated with this contribution
68 *
69 * @var int
70 * @public
71 */
72 public $_contactID;
73
74 /**
75 * the id of the pledge payment that we are processing
76 *
77 * @var int
78 * @public
79 */
80 public $_ppID;
81
82 /**
83 * the id of the pledge that we are processing
84 *
85 * @var int
86 * @public
87 */
88 public $_pledgeID;
89
90 /**
91 * is this contribution associated with an online
92 * financial transaction
93 *
94 * @var boolean
95 * @public
96 */
97 public $_online = FALSE;
98
99 /**
100 * Stores all product option
101 *
102 * @var array
103 * @public
104 */
105 public $_options;
106
107 /**
108 * Store the contribution Type ID
109 *
110 * @var array
111 */
112 public $_contributionType;
113
114 /**
115 * The contribution values if an existing contribution
116 */
117 public $_values;
118
119 /**
120 * The pledge values if this contribution is associated with pledge
121 */
122 public $_pledgeValues;
123
124 public $_contributeMode = 'direct';
125
126 public $_context;
127
128 public $_compId;
129
130 /*
131 * Store the line items if price set used.
132 */
133 public $_lineItems;
134
135 /**
136 * @var soft credit info
137 */
138 public $_softCreditInfo;
139
140 protected $_formType;
141 protected $_cdType;
142 public $_honoreeProfileType;
143
144 /**
145 * Function to set variables up before form is built
146 *
147 * @return void
148 * @access public
149 */
150 public function preProcess() {
151
152 //check permission for action.
153 if (!CRM_Core_Permission::checkActionPermission('CiviContribute', $this->_action)) {
154 CRM_Core_Error::fatal(ts('You do not have permission to access this page'));
155 }
156
157 $this->_cdType = CRM_Utils_Array::value('type', $_GET);
158
159 $this->assign('cdType', FALSE);
160 if ($this->_cdType) {
161 $this->assign('cdType', TRUE);
162 CRM_Custom_Form_CustomData::preProcess($this);
163 return;
164 }
165
166 $config = CRM_Core_Config::singleton();
167
168 $this->_formType = CRM_Utils_Array::value('formType', $_GET);
169
170 // get price set id.
171 $this->_priceSetId = CRM_Utils_Array::value('priceSetId', $_GET);
172 $this->set('priceSetId', $this->_priceSetId);
173 $this->assign('priceSetId', $this->_priceSetId);
174
175 //get the pledge payment id
176 $this->_ppID = CRM_Utils_Request::retrieve('ppid', 'Positive', $this);
177
178 //get the contact id
179 $this->_contactID = CRM_Utils_Request::retrieve('cid', 'Positive', $this);
180
181 //get the action.
182 $this->_action = CRM_Utils_Request::retrieve('action', 'String', $this, FALSE, 'add');
183 $this->assign('action', $this->_action);
184
185 //get the contribution id if update
186 $this->_id = CRM_Utils_Request::retrieve('id', 'Positive', $this);
187 if (!empty($this->_id)) {
188 $this->assign('contribID', $this->_id);
189 }
190
191 $this->_context = CRM_Utils_Request::retrieve('context', 'String', $this);
192 $this->assign('context', $this->_context);
193
194 $this->_compId = CRM_Utils_Request::retrieve('compId', 'Positive', $this);
195
196 $this->_compContext = CRM_Utils_Request::retrieve('compContext', 'String', $this);
197
198 //set the contribution mode.
199 $this->_mode = CRM_Utils_Request::retrieve('mode', 'String', $this);
200
201 $this->assign('contributionMode', $this->_mode);
202
203 $this->_paymentProcessor = array('billing_mode' => 1);
204
205 $this->assign('showCheckNumber', TRUE);
206
207 $this->_fromEmails = CRM_Core_BAO_Email::getFromEmail();
208 $this->assignProcessors();
209
210 if ($this->_contactID) {
211 list($this->userDisplayName, $this->userEmail) = CRM_Contact_BAO_Contact_Location::getEmailDetails($this->_contactID);
212 $this->assign('displayName', $this->userDisplayName);
213 }
214
215 // also check for billing information
216 // get the billing location type
217 $this->assignBillingType();
218
219 $this->_fields = array();
220
221 CRM_Core_Payment_Form::setPaymentFieldsByType(CRM_Utils_Array::value('payment_type', $this->_processors), $this);
222
223 if ($this->_action & CRM_Core_Action::DELETE) {
224 return;
225 }
226
227 if (in_array('CiviPledge', $config->enableComponents) && !$this->_formType) {
228 $this->preProcessPledge();
229 }
230
231 if ($this->_id) {
232 $this->showRecordLinkMesssage($this->_id);
233 }
234 $this->_values = array();
235
236 // current contribution id
237 if ($this->_id) {
238 $this->assignPremiumProduct($this->_id);
239 $this->buildValuesAndAssignOnline_Note_Type($this->_id, $this->_values);
240 }
241
242 // when custom data is included in this page
243 if (!empty($_POST['hidden_custom'])) {
244 $this->applyCustomData('Contribution', CRM_Utils_Array::value('financial_type_id', $_POST), $this->_id);
245 }
246
247 $this->_lineItems = array();
248 if ($this->_id) {
249 if (!empty($this->_compId) && $this->_compContext == 'participant') {
250 $this->assign('compId', $this->_compId);
251 $lineItem = CRM_Price_BAO_LineItem::getLineItems($this->_compId);
252 }
253 else {
254 $lineItem = CRM_Price_BAO_LineItem::getLineItems($this->_id, 'contribution', 1);
255 }
256 empty($lineItem) ? NULL : $this->_lineItems[] = $lineItem;
257 }
258
259 $this->assign('lineItem', empty($this->_lineItems) ? FALSE : $this->_lineItems);
260
261 // Set title
262 if ($this->_contactID) {
263 $displayName = CRM_Contact_BAO_Contact::displayName($this->_contactID);
264
265 // Check if this is default domain contact CRM-10482
266 if (CRM_Contact_BAO_Contact::checkDomainContact($this->_contactID)) {
267 $displayName .= ' (' . ts('default organization') . ')';
268 }
269
270 // omitting contactImage from title for now since the summary overlay css doesn't work outside of our crm-container
271 CRM_Utils_System::setTitle(ts('Contribution from') . ' ' . $displayName);
272 }
273
274 if ($this->_id) {
275 CRM_Contribute_Form_SoftCredit::preprocess($this);
276 }
277 }
278
279 function setDefaultValues() {
280 if ($this->_cdType) {
281 return CRM_Custom_Form_CustomData::setDefaultValues($this);
282 }
283
284 $defaults = $this->_values;
285
286 //set defaults for pledge payment.
287 if ($this->_ppID) {
288 $defaults['total_amount'] = CRM_Utils_Array::value('scheduled_amount', $this->_pledgeValues['pledgePayment']);
289 $defaults['financial_type_id'] = CRM_Utils_Array::value('financial_type_id', $this->_pledgeValues);
290 $defaults['currency'] = CRM_Utils_Array::value('currency', $this->_pledgeValues);
291 $defaults['option_type'] = 1;
292 }
293
294 $fields = array();
295 if ($this->_action & CRM_Core_Action::DELETE) {
296 return $defaults;
297 }
298
299 // set soft credit defaults
300 CRM_Contribute_Form_SoftCredit::setDefaultValues($defaults, $this);
301
302 if ($this->_mode) {
303 $config = CRM_Core_Config::singleton();
304 // set default country from config if no country set
305 if (empty($defaults["billing_country_id-{$this->_bltID}"])) {
306 $defaults["billing_country_id-{$this->_bltID}"] = $config->defaultContactCountry;
307 }
308
309 if (empty($defaults["billing_state_province_id-{$this->_bltID}"])) {
310 $defaults["billing_state_province_id-{$this->_bltID}"] = $config->defaultContactStateProvince;
311 }
312
313 $billingDefaults = $this->getProfileDefaults('Billing', $this->_contactID);
314 $defaults = array_merge($defaults, $billingDefaults);
315
316 // now fix all state country selectors, set correct state based on country
317 CRM_Core_BAO_Address::fixAllStateSelects($this, $defaults);
318 }
319
320 if ($this->_id) {
321 $this->_contactID = $defaults['contact_id'];
322 }
323
324 // Set $newCredit variable in template to control whether link to credit card mode is included
325 CRM_Core_Payment::allowBackofficeCreditCard($this);
326
327 // fix the display of the monetary value, CRM-4038
328 if (isset($defaults['total_amount'])) {
329 $defaults['total_amount'] = CRM_Utils_Money::format($defaults['total_amount'], NULL, '%a');
330 }
331
332 if (isset($defaults['non_deductible_amount'])) {
333 $defaults['non_deductible_amount'] = CRM_Utils_Money::format($defaults['non_deductible_amount'], NULL, '%a');
334 }
335
336 if (isset($defaults['fee_amount'])) {
337 $defaults['fee_amount'] = CRM_Utils_Money::format($defaults['fee_amount'], NULL, '%a');
338 }
339
340 if (isset($defaults['net_amount'])) {
341 $defaults['net_amount'] = CRM_Utils_Money::format($defaults['net_amount'], NULL, '%a');
342 }
343
344 if ($this->_contributionType) {
345 $defaults['financial_type_id'] = $this->_contributionType;
346 }
347
348 if (empty($defaults['payment_instrument_id'])) {
349 $defaults['payment_instrument_id'] = key(CRM_Core_OptionGroup::values('payment_instrument', FALSE, FALSE, FALSE, 'AND is_default = 1'));
350 }
351
352 if (!empty($defaults['is_test'])) {
353 $this->assign('is_test', TRUE);
354 }
355
356 $this->assign('showOption', TRUE);
357 // for Premium section
358 if ($this->_premiumID) {
359 $this->assign('showOption', FALSE);
360 $options = isset($this->_options[$this->_productDAO->product_id]) ? $this->_options[$this->_productDAO->product_id] : "";
361 if (!$options) {
362 $this->assign('showOption', TRUE);
363 }
364 $options_key = CRM_Utils_Array::key($this->_productDAO->product_option, $options);
365 if ($options_key) {
366 $defaults['product_name'] = array($this->_productDAO->product_id, trim($options_key));
367 }
368 else {
369 $defaults['product_name'] = array($this->_productDAO->product_id);
370 }
371 if ($this->_productDAO->fulfilled_date) {
372 list($defaults['fulfilled_date']) = CRM_Utils_Date::setDateDefaults($this->_productDAO->fulfilled_date);
373 }
374 }
375
376 if (isset($this->userEmail)) {
377 $this->assign('email', $this->userEmail);
378 }
379
380 if (!empty($defaults['is_pay_later'])) {
381 $this->assign('is_pay_later', TRUE);
382 }
383 $this->assign('contribution_status_id', CRM_Utils_Array::value('contribution_status_id', $defaults));
384
385 $dates = array('receive_date', 'receipt_date', 'cancel_date', 'thankyou_date');
386 foreach ($dates as $key) {
387 if (!empty($defaults[$key])) {
388 list($defaults[$key],
389 $defaults[$key . '_time']
390 ) = CRM_Utils_Date::setDateDefaults(CRM_Utils_Array::value($key, $defaults),
391 'activityDateTime'
392 );
393 }
394 }
395
396 if (!$this->_id && empty($defaults['receive_date'])) {
397 list($defaults['receive_date'],
398 $defaults['receive_date_time']
399 ) = CRM_Utils_Date::setDateDefaults(NULL, 'activityDateTime');
400 }
401
402 $this->assign('receive_date', CRM_Utils_Date::processDate(CRM_Utils_Array::value('receive_date', $defaults),
403 CRM_Utils_Array::value('receive_date_time', $defaults)
404 ));
405 $currency = CRM_Utils_Array::value('currency', $defaults);
406 $this->assign('currency', $currency);
407 // Hack to get currency info to the js layer. CRM-11440
408 CRM_Utils_Money::format(1);
409 $this->assign('currencySymbol', CRM_Utils_Array::value($currency, CRM_Utils_Money::$_currencySymbols));
410 $this->assign('totalAmount', CRM_Utils_Array::value('total_amount', $defaults));
411
412 //inherit campaign from pledge.
413 if ($this->_ppID && !empty($this->_pledgeValues['campaign_id'])) {
414 $defaults['campaign_id'] = $this->_pledgeValues['campaign_id'];
415 }
416
417 $this->_defaults = $defaults;
418 return $defaults;
419 }
420
421 /**
422 * Function to build the form
423 *
424 * @return void
425 * @access public
426 */
427 public function buildQuickForm() {
428 if ($this->_cdType) {
429 CRM_Custom_Form_CustomData::buildQuickForm($this);
430 return;
431 }
432
433 // build price set form.
434 $buildPriceSet = FALSE;
435 if (empty($this->_lineItems) &&
436 ($this->_priceSetId || !empty($_POST['price_set_id']))
437 ) {
438 $buildPriceSet = TRUE;
439 $getOnlyPriceSetElements = TRUE;
440 if (!$this->_priceSetId) {
441 $this->_priceSetId = $_POST['price_set_id'];
442 $getOnlyPriceSetElements = FALSE;
443 }
444
445 $this->set('priceSetId', $this->_priceSetId);
446 CRM_Price_BAO_PriceSet::buildPriceSet($this);
447
448 // get only price set form elements.
449 if ($getOnlyPriceSetElements) {
450 return;
451 }
452 }
453 // use to build form during form rule.
454 $this->assign('buildPriceSet', $buildPriceSet);
455
456 $showAdditionalInfo = FALSE;
457
458 $defaults = $this->_values;
459 $additionalDetailFields = array(
460 'note',
461 'thankyou_date',
462 'invoice_id',
463 'non_deductible_amount',
464 'fee_amount',
465 'net_amount',
466 );
467 foreach ($additionalDetailFields as $key) {
468 if (!empty($defaults[$key])) {
469 $defaults['hidden_AdditionalDetail'] = 1;
470 break;
471 }
472 }
473
474 if ($this->_productDAO) {
475 if ($this->_productDAO->product_id) {
476 $defaults['hidden_Premium'] = 1;
477 }
478 }
479
480 if ($this->_noteID &&
481 isset($this->_values['note'])
482 ) {
483 $defaults['hidden_AdditionalDetail'] = 1;
484 }
485
486 $paneNames = array(
487 ts('Additional Details') => 'AdditionalDetail',
488 );
489
490 //Add Premium pane only if Premium is exists.
491 $dao = new CRM_Contribute_DAO_Product();
492 $dao->is_active = 1;
493
494 if ($dao->find(TRUE)) {
495 $paneNames[ts('Premium Information')] = 'Premium';
496 }
497
498 $ccPane = NULL;
499 if ($this->_mode) {
500 if (CRM_Utils_Array::value('payment_type', $this->_processors) & CRM_Core_Payment::PAYMENT_TYPE_DIRECT_DEBIT
501 ) {
502 $ccPane = array(ts('Direct Debit Information') => 'DirectDebit');
503 }
504 else {
505 $ccPane = array(ts('Credit Card Information') => 'CreditCard');
506 }
507 }
508 if (is_array($ccPane)) {
509 $paneNames = array_merge($ccPane, $paneNames);
510 }
511
512 $buildRecurBlock = FALSE;
513 foreach ($paneNames as $name => $type) {
514 $urlParams = "snippet=4&formType={$type}";
515 if ($this->_mode) {
516 $urlParams .= "&mode={$this->_mode}";
517 }
518
519 $open = 'false';
520 if ($type == 'CreditCard' ||
521 $type == 'DirectDebit'
522 ) {
523 $open = 'true';
524 }
525
526 $allPanes[$name] = array(
527 'url' => CRM_Utils_System::url('civicrm/contact/view/contribution', $urlParams),
528 'open' => $open,
529 'id' => $type
530 );
531
532 // see if we need to include this paneName in the current form
533 if ($this->_formType == $type || !empty($_POST["hidden_{$type}"]) ||
534 CRM_Utils_Array::value("hidden_{$type}", $defaults)
535 ) {
536 $showAdditionalInfo = TRUE;
537 $allPanes[$name]['open'] = 'true';
538 }
539
540 if ($type == 'CreditCard') {
541 $buildRecurBlock = TRUE;
542 $this->add('hidden', 'hidden_CreditCard', 1);
543 CRM_Core_Payment_Form::buildCreditCard($this, TRUE);
544 }
545 elseif ($type == 'DirectDebit') {
546 $buildRecurBlock = TRUE;
547 $this->add('hidden', 'hidden_DirectDebit', 1);
548 CRM_Core_Payment_Form::buildDirectDebit($this, TRUE);
549 }
550 else {
551 $additionalInfoFormFunction = 'build' . $type;
552 CRM_Contribute_Form_AdditionalInfo::$additionalInfoFormFunction($this);
553 }
554 }
555 if (empty($this->_recurPaymentProcessors)) {
556 $buildRecurBlock = FALSE;
557 }
558 if ($buildRecurBlock) {
559 CRM_Contribute_Form_Contribution_Main::buildRecur($this);
560 $this->setDefaults(array('is_recur' => 0));
561 }
562 $this->assign('buildRecurBlock', $buildRecurBlock);
563 $qfKey = $this->controller->_key;
564 $this->assign('qfKey', $qfKey);
565 $this->assign('allPanes', $allPanes);
566 $this->assign('showAdditionalInfo', $showAdditionalInfo);
567
568 if ($this->_formType) {
569 $this->assign('formType', $this->_formType);
570 return;
571 }
572
573 $this->applyFilter('__ALL__', 'trim');
574
575 if ($this->_action & CRM_Core_Action::DELETE) {
576 $this->addButtons(array(
577 array(
578 'type' => 'next',
579 'name' => ts('Delete'),
580 'spacing' => '&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;',
581 'isDefault' => TRUE,
582 ),
583 array(
584 'type' => 'cancel',
585 'name' => ts('Cancel')
586 )
587 )
588 );
589 return;
590 }
591
592 //need to assign custom data type and subtype to the template
593 $this->assign('customDataType', 'Contribution');
594 $this->assign('customDataSubType', $this->_contributionType);
595 $this->assign('entityID', $this->_id);
596
597 if ($this->_context == 'standalone') {
598 $this->addEntityRef('contact_id', ts('Contact'), array('create' => TRUE), TRUE);
599 }
600
601 $attributes = CRM_Core_DAO::getAttribute('CRM_Contribute_DAO_Contribution');
602
603 $financialType = $this->add('select', 'financial_type_id',
604 ts('Financial Type'),
605 array('' => ts('- select -')) + CRM_Contribute_PseudoConstant::financialType(),
606 TRUE,
607 array('onChange' => "CRM.buildCustomData( 'Contribution', this.value );")
608 );
609
610 if (!$this->_mode) {
611 $paymentInstrument = $this->add('select', 'payment_instrument_id',
612 ts('Paid By'),
613 array('' => ts('- select -')) + CRM_Contribute_PseudoConstant::paymentInstrument(),
614 TRUE, array('onChange' => "return showHideByValue('payment_instrument_id','4','checkNumber','table-row','select',false);")
615 );
616 }
617
618 $trxnId = $this->add('text', 'trxn_id', ts('Transaction ID'), $attributes['trxn_id']);
619
620 //add receipt for offline contribution
621 $this->addElement('checkbox', 'is_email_receipt', ts('Send Receipt?'));
622
623 $this->add('select', 'from_email_address', ts('Receipt From'), $this->_fromEmails);
624
625 $status = CRM_Contribute_PseudoConstant::contributionStatus();
626
627 // suppressing contribution statuses that are NOT relevant to pledges (CRM-5169)
628 $statusName = CRM_Contribute_PseudoConstant::contributionStatus(NULL, 'name');
629 if ($this->_ppID) {
630 foreach (array(
631 'Cancelled',
632 'Failed',
633 'In Progress'
634 ) as $suppress) {
635 unset($status[CRM_Utils_Array::key($suppress, $statusName)]);
636 }
637 }
638 elseif ((!$this->_ppID && $this->_id) || !$this->_id) {
639 $suppressFlag = FALSE;
640 if ($this->_id) {
641 $componentDetails = CRM_Contribute_BAO_Contribution::getComponentDetails($this->_id);
642 if (CRM_Utils_Array::value('membership', $componentDetails) || CRM_Utils_Array::value('participant', $componentDetails)) {
643 $suppressFlag = TRUE;
644 }
645 }
646 if (!$suppressFlag) {
647 foreach (array(
648 'Overdue',
649 'In Progress'
650 ) as $suppress) {
651 unset($status[CRM_Utils_Array::key($suppress, $statusName)]);
652 }
653 }
654 else {
655 unset($status[CRM_Utils_Array::key('Overdue', $statusName)]);
656 }
657 }
658
659 if ($this->_id) {
660 $contributionStatus = CRM_Core_DAO::getFieldValue('CRM_Contribute_DAO_Contribution', $this->_id, 'contribution_status_id');
661 $name = CRM_Utils_Array::value($contributionStatus, $statusName);
662 switch ($name) {
663 case 'Completed':
664 case 'Cancelled':
665 case 'Refunded':
666 unset($status[CRM_Utils_Array::key('In Progress', $statusName)]);
667 unset($status[CRM_Utils_Array::key('Pending', $statusName)]);
668 unset($status[CRM_Utils_Array::key('Failed', $statusName)]);
669 break;
670 case 'Pending':
671 case 'In Progress':
672 unset($status[CRM_Utils_Array::key('Refunded', $statusName)]);
673 break;
674 case 'Failed':
675 foreach (array(
676 'Pending',
677 'Refunded',
678 'Completed',
679 'In Progress',
680 'Cancelled'
681 ) as $suppress) {
682 unset($status[CRM_Utils_Array::key($suppress, $statusName)]);
683 }
684 break;
685 }
686 }
687 else {
688 unset($status[CRM_Utils_Array::key('Refunded', $statusName)]);
689 }
690
691 $this->add('select', 'contribution_status_id',
692 ts('Contribution Status'),
693 $status,
694 FALSE
695 );
696
697 // add various dates
698 $this->addDateTime('receive_date', ts('Received'), FALSE, array('formatType' => 'activityDateTime'));
699
700 if ($this->_online) {
701 $this->assign('hideCalender', TRUE);
702 }
703 $checkNumber = $this->add('text', 'check_number', ts('Check Number'), $attributes['check_number']);
704
705 $this->addDateTime('receipt_date', ts('Receipt Date'), FALSE, array('formatType' => 'activityDateTime'));
706 $this->addDateTime('cancel_date', ts('Cancelled / Refunded Date'), FALSE, array('formatType' => 'activityDateTime'));
707
708 $this->add('textarea', 'cancel_reason', ts('Cancellation / Refund Reason'), $attributes['cancel_reason']);
709
710 $recurJs = NULL;
711 if ($buildRecurBlock) {
712 $recurJs = array('onChange' => "buildRecurBlock( this.value ); return false;");
713 }
714 $element = $this->add('select',
715 'payment_processor_id',
716 ts('Payment Processor'),
717 $this->_processors,
718 NULL,
719 $recurJs
720 );
721
722 if ($this->_online) {
723 $element->freeze();
724 }
725 $totalAmount = NULL;
726 if (empty($this->_lineItems)) {
727 $buildPriceSet = FALSE;
728 $priceSets = CRM_Price_BAO_PriceSet::getAssoc(FALSE, 'CiviContribute');
729 if (!empty($priceSets) && !$this->_ppID) {
730 $buildPriceSet = TRUE;
731 }
732
733 // don't allow price set for contribution if it is related to participant, or if it is a pledge payment
734 // and if we already have line items for that participant. CRM-5095
735 if ($buildPriceSet && $this->_id) {
736 $componentDetails = CRM_Contribute_BAO_Contribution::getComponentDetails($this->_id);
737 $pledgePaymentId = CRM_Core_DAO::getFieldValue('CRM_Pledge_DAO_PledgePayment',
738 $this->_id,
739 'id',
740 'contribution_id'
741 );
742 if ($pledgePaymentId) {
743 $buildPriceSet = FALSE;
744 }
745 if ($participantID = CRM_Utils_Array::value('participant', $componentDetails)) {
746 $participantLI = CRM_Price_BAO_LineItem::getLineItems($participantID);
747 if (!CRM_Utils_System::isNull($participantLI)) {
748 $buildPriceSet = FALSE;
749 }
750 }
751 }
752
753 $hasPriceSets = FALSE;
754 if ($buildPriceSet) {
755 $hasPriceSets = TRUE;
756 $element = $this->add('select', 'price_set_id', ts('Choose price set'),
757 array(
758 '' => ts('Choose price set')
759 ) + $priceSets,
760 NULL, array('onchange' => "buildAmount( this.value );")
761 );
762 if ($this->_online && !($this->_action & CRM_Core_Action::UPDATE)) {
763 $element->freeze();
764 }
765 }
766 $this->assign('hasPriceSets', $hasPriceSets);
767 $currencyFreeze = FALSE;
768 if (!($this->_action & CRM_Core_Action::UPDATE)) {
769 if ($this->_online || $this->_ppID) {
770 $attributes['total_amount'] = array_merge($attributes['total_amount'], array(
771 'READONLY' => TRUE,
772 'style' => "background-color:#EBECE4"
773 ));
774 $optionTypes = array(
775 '1' => ts('Adjust Pledge Payment Schedule?'),
776 '2' => ts('Adjust Total Pledge Amount?'),
777 );
778 $this->addRadio('option_type',
779 NULL,
780 $optionTypes,
781 array(), '<br/>'
782 );
783
784 $currencyFreeze = TRUE;
785 }
786 }
787
788 $totalAmount = $this->addMoney('total_amount',
789 ts('Total Amount'),
790 ($hasPriceSets) ? FALSE : TRUE,
791 $attributes['total_amount'],
792 TRUE, 'currency', NULL, $currencyFreeze
793 );
794 }
795
796 $this->add('text', 'source', ts('Source'), CRM_Utils_Array::value('source', $attributes));
797
798 //CRM-7362 --add campaigns.
799 CRM_Campaign_BAO_Campaign::addCampaign($this, CRM_Utils_Array::value('campaign_id', $this->_values));
800
801 CRM_Contribute_Form_SoftCredit::buildQuickForm($this);
802
803 $js = NULL;
804 if (!$this->_mode) {
805 $js = array('onclick' => "return verify( );");
806 }
807
808 $mailingInfo = CRM_Core_BAO_Setting::getItem(CRM_Core_BAO_Setting::MAILING_PREFERENCES_NAME,
809 'mailing_backend'
810 );
811 $this->assign('outBound_option', $mailingInfo['outBound_option']);
812
813 $this->addButtons(array(
814 array(
815 'type' => 'upload',
816 'name' => ts('Save'),
817 'js' => $js,
818 'isDefault' => TRUE
819 ),
820 array(
821 'type' => 'upload',
822 'name' => ts('Save and New'),
823 'js' => $js,
824 'subName' => 'new'
825 ),
826 array(
827 'type' => 'cancel',
828 'name' => ts('Cancel')
829 ),
830 )
831 );
832
833 // if status is Cancelled freeze Amount, Payment Instrument, Check #, Financial Type,
834 // Net and Fee Amounts are frozen in AdditionalInfo::buildAdditionalDetail
835 if ($this->_id && $this->_values['contribution_status_id'] == array_search('Cancelled', $statusName)) {
836 if ($totalAmount) {
837 $totalAmount->freeze();
838 }
839 $checkNumber->freeze();
840 $paymentInstrument->freeze();
841 $trxnId->freeze();
842 $financialType->freeze();
843 }
844
845 $this->addFormRule(array('CRM_Contribute_Form_Contribution', 'formRule'), $this);
846
847 if ($this->_action & CRM_Core_Action::VIEW) {
848 $this->freeze();
849 }
850 }
851
852 /**
853 * global form rule
854 *
855 * @param array $fields the input form values
856 * @param array $files the uploaded files if any
857 * @param array $options additional user data
858 *
859 * @return true if no errors, else array of errors
860 * @access public
861 * @static
862 */
863 static function formRule($fields, $files, $self) {
864 $errors = array();
865
866 //check for Credit Card Contribution.
867 if ($self->_mode) {
868 if (empty($fields['payment_processor_id'])) {
869 $errors['payment_processor_id'] = ts('Payment Processor is a required field.');
870 }
871 }
872
873 // do the amount validations.
874 if (empty($fields['total_amount']) && empty($self->_lineItems)) {
875 if ($priceSetId = CRM_Utils_Array::value('price_set_id', $fields)) {
876 CRM_Price_BAO_PriceField::priceSetValidation($priceSetId, $fields, $errors);
877 }
878 }
879
880 $softErrors = CRM_Contribute_Form_SoftCredit::formRule($fields, $errors, $self);
881
882 if (!empty($fields['total_amount']) && (!empty($fields['net_amount']) || !empty($fields['fee_amount']))) {
883 $sum = CRM_Utils_Rule::cleanMoney($fields['net_amount']) + CRM_Utils_Rule::cleanMoney($fields['fee_amount']);
884 if (CRM_Utils_Rule::cleanMoney($fields['total_amount']) != $sum) {
885 $errors['total_amount'] = ts('The sum of fee amount and net amount must be equal to total amount');
886 }
887 }
888 //form rule for status http://wiki.civicrm.org/confluence/display/CRM/CiviAccounts+4.3+Data+Flow
889 if ($self->_id && $self->_values['contribution_status_id'] != $fields['contribution_status_id']) {
890 CRM_Contribute_BAO_Contribution::checkStatusValidation($self->_values, $fields, $errors);
891 }
892
893 //FIXME FOR NEW DATA FLOW http://wiki.civicrm.org/confluence/display/CRM/CiviAccounts+4.3+Data+Flow
894 if (!empty($fields['fee_amount']) && $financialType = CRM_Contribute_BAO_Contribution::validateFinancialType($fields['financial_type_id'])) {
895 $errors['financial_type_id'] = ts("Financial Account of account relationship of 'Expense Account is' is not configured for Financial Type : ") . $financialType;
896 }
897
898 // $trxn_id must be unique CRM-13919
899 if (!empty($fields['trxn_id'])) {
900 $queryParams = array(1 => array($fields['trxn_id'], 'String'));
901 $query = 'select count(*) from civicrm_contribution where trxn_id = %1';
902 if ($self->_id) {
903 $queryParams[2] = array((int)$self->_id, 'Integer');
904 $query .= ' and id !=%2';
905 }
906 $tCnt = CRM_Core_DAO::singleValueQuery($query, $queryParams);
907 if ($tCnt) {
908 $errors['trxn_id'] = ts('Transaction ID\'s must be unique. Transaction \'%1\' already exists in your database.', array(1 => $fields['trxn_id']));
909 }
910 }
911
912 $errors = array_merge($errors, $softErrors);
913 return $errors;
914 }
915
916 /**
917 * Function to process the form
918 *
919 * @access public
920 *
921 * @return void
922 */
923 public function postProcess() {
924 $session = CRM_Core_Session::singleton();
925 if ($this->_action & CRM_Core_Action::DELETE) {
926 CRM_Contribute_BAO_Contribution::deleteContribution($this->_id);
927 $session->replaceUserContext(CRM_Utils_System::url('civicrm/contact/view',
928 "reset=1&cid={$this->_contactID}&selectedChild=contribute"
929 ));
930 return;
931 }
932
933 // get the submitted form values.
934 $submittedValues = $this->controller->exportValues($this->_name);
935 if (!empty($submittedValues['price_set_id']) && $this->_action & CRM_Core_Action::UPDATE) {
936 $line = CRM_Price_BAO_LineItem::getLineItems($this->_id, 'contribution');
937 $lineID = key($line);
938 $priceSetId = CRM_Core_DAO::getFieldValue('CRM_Price_DAO_PriceField', CRM_Utils_Array::value('price_field_id', $line[$lineID]), 'price_set_id');
939 $quickConfig = CRM_Core_DAO::getFieldValue('CRM_Price_DAO_PriceSet', $priceSetId, 'is_quick_config');
940 if ($quickConfig) {
941 CRM_Price_BAO_LineItem::deleteLineItems($this->_id, 'civicrm_contribution');
942 }
943 }
944
945 // process price set and get total amount and line items.
946 $lineItem = array();
947 $priceSetId = $pId = NULL;
948 $priceSetId = CRM_Utils_Array::value('price_set_id', $submittedValues);
949 if (empty($priceSetId) && !$this->_id) {
950 $this->_priceSetId = $priceSetId = CRM_Core_DAO::getFieldValue('CRM_Price_DAO_PriceSet', 'default_contribution_amount', 'id', 'name');
951 $this->_priceSet = current(CRM_Price_BAO_PriceSet::getSetDetail($priceSetId));
952 $fieldID = key($this->_priceSet['fields']);
953 $fieldValueId = key($this->_priceSet['fields'][$fieldID]['options']);
954 $this->_priceSet['fields'][$fieldID]['options'][$fieldValueId]['amount'] = $submittedValues['total_amount'];
955 $submittedValues['price_' . $fieldID] = 1;
956 }
957
958 if ($priceSetId) {
959 CRM_Price_BAO_PriceSet::processAmount($this->_priceSet['fields'],
960 $submittedValues, $lineItem[$priceSetId]);
961
962 $submittedValues['total_amount'] = CRM_Utils_Array::value('amount', $submittedValues);
963 }
964 if ($this->_id) {
965 //CRM-10964
966 $pId = ($this->_compId && $this->_context == 'participant') ? $this->_compId : CRM_Core_DAO::getFieldValue('CRM_Event_DAO_ParticipantPayment', $this->_id, 'participant_id', 'contribution_id');
967 }
968 if (!$priceSetId && !empty($submittedValues['total_amount']) && $this->_id) {
969 // 10117 update th line items for participants
970 if ($pId) {
971 $entityTable = 'participant';
972 $entityID = $pId;
973 $participantParams = array(
974 'fee_amount' => $submittedValues['total_amount'],
975 'id' => $entityID
976 );
977 CRM_Event_BAO_Participant::add($participantParams);
978 if (empty($this->_lineItems)) {
979 $this->_lineItems = CRM_Price_BAO_LineItem::getLineItems($entityID, 'participant', 1);
980 }
981 }
982 else {
983 $entityTable = 'contribution';
984 $entityID = $this->_id;
985 }
986
987 $lineItems = CRM_Price_BAO_LineItem::getLineItems($entityID, $entityTable);
988 foreach (array_keys($lineItems) as $id) {
989 $lineItems[$id]['id'] = $id;
990 }
991 $itemId = key($lineItems);
992 $fieldType = NULL;
993 if ($itemId && !empty($lineItems[$itemId]['price_field_id'])) {
994 $fieldType = CRM_Core_DAO::getFieldValue('CRM_Price_DAO_PriceField', $lineItems[$itemId]['price_field_id'], 'html_type');
995 }
996 $lineItems[$itemId]['unit_price'] = $lineItems[$itemId]['line_total'] = CRM_Utils_Rule::cleanMoney(CRM_Utils_Array::value('total_amount', $submittedValues));
997 // 10117 update th line items for participants
998 if (!empty($lineItems[$itemId]['price_field_id'])) {
999 $this->_priceSetId = CRM_Core_DAO::getFieldValue('CRM_Price_DAO_PriceField', $lineItems[$itemId]['price_field_id'], 'price_set_id');
1000 $lineItem[$this->_priceSetId] = $lineItems;
1001 }
1002 }
1003 $isQuickConfig = 0;
1004 if ($this->_priceSetId && CRM_Core_DAO::getFieldValue('CRM_Price_DAO_PriceSet', $this->_priceSetId, 'is_quick_config')) {
1005 $isQuickConfig = 1;
1006 }
1007 //CRM-11529 for quick config backoffice transactions
1008 //when financial_type_id is passed in form, update the
1009 //lineitems with the financial type selected in form
1010 if ($isQuickConfig && !empty($submittedValues['financial_type_id']) && CRM_Utils_Array::value($this->_priceSetId, $lineItem)
1011 ) {
1012 foreach ($lineItem[$this->_priceSetId] as &$values) {
1013 $values['financial_type_id'] = $submittedValues['financial_type_id'];
1014 }
1015 }
1016
1017 if (!isset($submittedValues['total_amount'])) {
1018 $submittedValues['total_amount'] = CRM_Utils_Array::value('total_amount', $this->_values);
1019 }
1020 $this->assign('lineItem', !empty($lineItem) && !$isQuickConfig ? $lineItem : FALSE);
1021
1022 if (!empty($submittedValues['pcp_made_through_id'])) {
1023 $pcp = array();
1024 $fields = array(
1025 'pcp_made_through_id',
1026 'pcp_display_in_roll',
1027 'pcp_roll_nickname',
1028 'pcp_personal_note',
1029 );
1030 foreach ($fields as $f) {
1031 $pcp[$f] = CRM_Utils_Array::value($f, $submittedValues);
1032 }
1033 }
1034 else {
1035 $isEmpty = array_keys(array_flip($submittedValues['soft_credit_contact_id']));
1036 if ($this->_id && count($isEmpty) == 1 && key($isEmpty) == NULL) {
1037 //Delete existing soft credit records if soft credit list is empty on update
1038 CRM_Contribute_BAO_ContributionSoft::del(array('contribution_id' => $this->_id));
1039 }
1040 else {
1041 //build soft credit params
1042 $softParams = $softIDs =array();
1043 foreach ($submittedValues['soft_credit_contact_id'] as $key => $val) {
1044 if ($val && $submittedValues['soft_credit_amount'][$key]) {
1045 $softParams[$key]['contact_id'] = $val;
1046 $softParams[$key]['amount'] = CRM_Utils_Rule::cleanMoney($submittedValues['soft_credit_amount'][$key]);
1047 $softParams[$key]['soft_credit_type_id'] = $submittedValues['soft_credit_type'][$key];
1048 if (!empty($submittedValues['soft_credit_id'][$key])) {
1049 $softIDs[] = $softParams[$key]['id'] = $submittedValues['soft_credit_id'][$key];
1050 }
1051 }
1052 }
1053 }
1054 }
1055
1056 // set the contact, when contact is selected
1057 if (!empty($submittedValues['contact_id'])) {
1058 $this->_contactID = $submittedValues['contact_id'];
1059 }
1060
1061 $config = CRM_Core_Config::singleton();
1062
1063 //Credit Card Contribution.
1064 if ($this->_mode) {
1065 $this->processCreditCard($submittedValues, $config, $session, $pId, $lineItem);
1066 }
1067 else {
1068 //Offline Contribution.
1069 $submittedValues = $this->unsetCreditCardFields($submittedValues);
1070
1071 // get the required field value only.
1072 $formValues = $submittedValues;
1073 $params = $ids = array();
1074
1075 $params['contact_id'] = $this->_contactID;
1076
1077 $params['currency'] = $this->getCurrency($submittedValues);
1078
1079 $fields = array(
1080 'financial_type_id',
1081 'contribution_status_id',
1082 'payment_instrument_id',
1083 'cancel_reason',
1084 'source',
1085 'check_number',
1086 );
1087 foreach ($fields as $f) {
1088 $params[$f] = CRM_Utils_Array::value($f, $formValues);
1089 }
1090
1091 if (!empty($pcp)) {
1092 $params['pcp'] = $pcp;
1093 }
1094 if (!empty($softParams)) {
1095 $params['soft_credit'] = $softParams;
1096 $params['soft_credit_ids'] = $softIDs;
1097 }
1098
1099 //if priceset is used, no need to cleanup money
1100 //CRM-5740
1101 if ($priceSetId) {
1102 $params['skipCleanMoney'] = 1;
1103 }
1104
1105 $dates = array(
1106 'receive_date',
1107 'receipt_date',
1108 'cancel_date',
1109 );
1110
1111 foreach ($dates as $d) {
1112 $params[$d] = CRM_Utils_Date::processDate($formValues[$d], $formValues[$d . '_time'], TRUE);
1113 }
1114
1115 if (!empty($formValues['is_email_receipt'])) {
1116 $params['receipt_date'] = date("Y-m-d");
1117 }
1118
1119 if ($params['contribution_status_id'] == CRM_Core_OptionGroup::getValue('contribution_status', 'Cancelled', 'name')
1120 || $params['contribution_status_id'] == CRM_Core_OptionGroup::getValue('contribution_status', 'Refunded', 'name')
1121 ) {
1122 if (CRM_Utils_System::isNull(CRM_Utils_Array::value('cancel_date', $params))) {
1123 $params['cancel_date'] = date('Y-m-d');
1124 }
1125 }
1126 else {
1127 $params['cancel_date'] = $params['cancel_reason'] = 'null';
1128 }
1129
1130 // Set is_pay_later flag for back-office offline Pending status contributions CRM-8996
1131 if ($params['contribution_status_id'] == CRM_Core_OptionGroup::getValue('contribution_status', 'Pending', 'name')) {
1132 $params['is_pay_later'] = 1;
1133 }
1134
1135 $ids['contribution'] = $params['id'] = $this->_id;
1136
1137 //Add Additional common information to formatted params
1138 CRM_Contribute_Form_AdditionalInfo::postProcessCommon($formValues, $params, $this);
1139 if ($pId) {
1140 $params['contribution_mode'] = 'participant';
1141 $params['participant_id'] = $pId;
1142 $params['skipLineItem'] = 1;
1143 }
1144 $params['line_item'] = $lineItem;
1145 $params['payment_processor_id'] = $params['payment_processor'] = CRM_Utils_Array::value('id', $this->_paymentProcessor);
1146 //create contribution.
1147 if ($isQuickConfig) {
1148 $params['is_quick_config'] = 1;
1149 }
1150
1151 // CRM-11956
1152 // if non_deductible_amount exists i.e. Additional Details fieldset was opened [and staff typed something] -> keep it.
1153 if (isset($params['non_deductible_amount']) && (!empty($params['non_deductible_amount']))) {
1154 $params['non_deductible_amount'] = $params['non_deductible_amount'];
1155 }
1156 // if non_deductible_amount does NOT exist - then calculate it depending on:
1157 // $ContributionType->is_deductible and whether there is a product (premium).
1158 else {
1159 $contributionType = new CRM_Financial_DAO_FinancialType();
1160 $contributionType->id = $params['financial_type_id'];
1161 if (!$contributionType->find(TRUE)) {
1162 CRM_Core_Error::fatal('Could not find a system table');
1163 }
1164 if ($contributionType->is_deductible) {
1165
1166 if (isset($formValues['product_name'][0])) {
1167 $selectProduct = $formValues['product_name'][0];
1168 }
1169 // if there is a product - compare the value to the contribution amount
1170 if (isset($selectProduct)) {
1171 $productDAO = new CRM_Contribute_DAO_Product();
1172 $productDAO->id = $selectProduct;
1173 $productDAO->find(TRUE);
1174 // product value exceeds contribution amount
1175 if ($params['total_amount'] < $productDAO->price) {
1176 $params['non_deductible_amount'] = $params['total_amount'];
1177 }
1178 // product value does NOT exceed contribution amount
1179 else {
1180 $params['non_deductible_amount'] = $productDAO->price;
1181 }
1182 }
1183 // contribution is deductible - but there is no product
1184 else {
1185 $params['non_deductible_amount'] = '0.00';
1186 }
1187 }
1188 // contribution is NOT deductible
1189 else {
1190 $params['non_deductible_amount'] = $params['total_amount'];
1191 }
1192 }
1193
1194 $contribution = CRM_Contribute_BAO_Contribution::create($params, $ids);
1195
1196 // process associated membership / participant, CRM-4395
1197 $relatedComponentStatusMsg = NULL;
1198 if ($contribution->id && $this->_action & CRM_Core_Action::UPDATE) {
1199 $relatedComponentStatusMsg = $this->updateRelatedComponent($contribution->id,
1200 $contribution->contribution_status_id,
1201 CRM_Utils_Array::value('contribution_status_id',
1202 $this->_values
1203 )
1204 );
1205 }
1206
1207 //process note
1208 if ($contribution->id && isset($formValues['note'])) {
1209 CRM_Contribute_Form_AdditionalInfo::processNote($formValues, $this->_contactID, $contribution->id, $this->_noteID);
1210 }
1211
1212 //process premium
1213 if ($contribution->id && isset($formValues['product_name'][0])) {
1214 CRM_Contribute_Form_AdditionalInfo::processPremium($formValues, $contribution->id,
1215 $this->_premiumID, $this->_options
1216 );
1217 }
1218
1219 //send receipt mail.
1220 if ($contribution->id && !empty($formValues['is_email_receipt'])) {
1221 $formValues['contact_id'] = $this->_contactID;
1222 $formValues['contribution_id'] = $contribution->id;
1223
1224 $formValues += CRM_Contribute_BAO_ContributionSoft::getSoftContribution($contribution->id);
1225
1226 // to get 'from email id' for send receipt
1227 $this->fromEmailId = $formValues['from_email_address'];
1228 $sendReceipt = CRM_Contribute_Form_AdditionalInfo::emailReceipt($this, $formValues);
1229 }
1230
1231 $pledgePaymentId = CRM_Core_DAO::getFieldValue('CRM_Pledge_DAO_PledgePayment',
1232 $contribution->id,
1233 'id',
1234 'contribution_id'
1235 );
1236
1237 //update pledge payment status.
1238 if ((($this->_ppID && $contribution->id) && $this->_action & CRM_Core_Action::ADD) ||
1239 (($pledgePaymentId) && $this->_action & CRM_Core_Action::UPDATE)
1240 ) {
1241
1242 if ($this->_ppID) {
1243 //store contribution id in payment record.
1244 CRM_Core_DAO::setFieldValue('CRM_Pledge_DAO_PledgePayment', $this->_ppID, 'contribution_id', $contribution->id);
1245 }
1246 else {
1247 $this->_ppID = CRM_Core_DAO::getFieldValue('CRM_Pledge_DAO_PledgePayment',
1248 $contribution->id,
1249 'id',
1250 'contribution_id'
1251 );
1252 $this->_pledgeID = CRM_Core_DAO::getFieldValue('CRM_Pledge_DAO_PledgePayment',
1253 $contribution->id,
1254 'pledge_id',
1255 'contribution_id'
1256 );
1257 }
1258
1259 $adjustTotalAmount = FALSE;
1260 if (CRM_Utils_Array::value('option_type', $formValues) == 2) {
1261 $adjustTotalAmount = TRUE;
1262 }
1263
1264 $updatePledgePaymentStatus = FALSE;
1265 //do only if either the status or the amount has changed
1266 if ($this->_action & CRM_Core_Action::ADD) {
1267 $updatePledgePaymentStatus = TRUE;
1268 }
1269 elseif ($this->_action & CRM_Core_Action::UPDATE && (($this->_defaults['contribution_status_id'] != $formValues['contribution_status_id']) ||
1270 ($this->_defaults['total_amount'] != $formValues['total_amount']))
1271 ) {
1272 $updatePledgePaymentStatus = TRUE;
1273 }
1274
1275 if ($updatePledgePaymentStatus) {
1276 CRM_Pledge_BAO_PledgePayment::updatePledgePaymentStatus($this->_pledgeID,
1277 array($this->_ppID),
1278 $contribution->contribution_status_id,
1279 NULL,
1280 $contribution->total_amount,
1281 $adjustTotalAmount
1282 );
1283 }
1284 }
1285
1286 $statusMsg = ts('The contribution record has been saved.');
1287 if (!empty($formValues['is_email_receipt']) && $sendReceipt) {
1288 $statusMsg .= ' ' . ts('A receipt has been emailed to the contributor.');
1289 }
1290
1291 if ($relatedComponentStatusMsg) {
1292 $statusMsg .= ' ' . $relatedComponentStatusMsg;
1293 }
1294
1295 CRM_Core_Session::setStatus($statusMsg, ts('Saved'), 'success');
1296 //Offline Contribution ends.
1297 }
1298 $buttonName = $this->controller->getButtonName();
1299 if ($this->_context == 'standalone') {
1300 if ($buttonName == $this->getButtonName('upload', 'new')) {
1301 $session->replaceUserContext(CRM_Utils_System::url('civicrm/contribute/add',
1302 'reset=1&action=add&context=standalone'
1303 ));
1304 }
1305 else {
1306 $session->replaceUserContext(CRM_Utils_System::url('civicrm/contact/view',
1307 "reset=1&cid={$this->_contactID}&selectedChild=contribute"
1308 ));
1309 }
1310 }
1311 elseif ($this->_context == 'contribution' && $this->_mode && $buttonName == $this->getButtonName('upload', 'new')) {
1312 $session->replaceUserContext(CRM_Utils_System::url('civicrm/contact/view/contribution',
1313 "reset=1&action=add&context={$this->_context}&cid={$this->_contactID}&mode={$this->_mode}"
1314 ));
1315 }
1316 elseif ($buttonName == $this->getButtonName('upload', 'new')) {
1317 $session->replaceUserContext(CRM_Utils_System::url('civicrm/contact/view/contribution',
1318 "reset=1&action=add&context={$this->_context}&cid={$this->_contactID}"
1319 ));
1320 }
1321
1322 //store contribution ID if not yet set (on create)
1323 if ( empty($this->_id) && !empty($contribution->id) ) {
1324 $this->_id = $contribution->id;
1325 }
1326 }
1327
1328 public function processCreditCard($submittedValues, $config, $session, $pId, $lineItem) {
1329 $unsetParams = array(
1330 'trxn_id',
1331 'payment_instrument_id',
1332 'contribution_status_id',
1333 'cancel_date',
1334 'cancel_reason',
1335 );
1336 foreach ($unsetParams as $key) {
1337 if (isset($submittedValues[$key])) {
1338 unset($submittedValues[$key]);
1339 }
1340 }
1341
1342 // CRM-12680 set $_lineItem if its not set
1343 if (empty($this->_lineItem) && !empty($lineItem)) {
1344 $this->_lineItem = $lineItem;
1345 }
1346
1347 //Get the rquire fields value only.
1348 $params = $this->_params = $submittedValues;
1349
1350 $this->_paymentProcessor = CRM_Financial_BAO_PaymentProcessor::getPayment($this->_params['payment_processor_id'],
1351 $this->_mode
1352 );
1353
1354 //get the payment processor id as per mode.
1355 $this->_params['payment_processor'] = $params['payment_processor_id'] =
1356 $this->_params['payment_processor_id'] = $submittedValues['payment_processor_id'] = $this->_paymentProcessor['id'];
1357
1358 $now = date('YmdHis');
1359 $fields = array();
1360
1361 // we need to retrieve email address
1362 if ($this->_context == 'standalone' && !empty($submittedValues['is_email_receipt'])) {
1363 list($this->userDisplayName,
1364 $this->userEmail
1365 ) = CRM_Contact_BAO_Contact_Location::getEmailDetails($this->_contactID);
1366 $this->assign('displayName', $this->userDisplayName);
1367 }
1368
1369 //set email for primary location.
1370 $fields['email-Primary'] = 1;
1371 $params['email-Primary'] = $this->userEmail;
1372
1373 // now set the values for the billing location.
1374 foreach ($this->_fields as $name => $dontCare) {
1375 $fields[$name] = 1;
1376 }
1377
1378 // also add location name to the array
1379 $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);
1380 $params["address_name-{$this->_bltID}"] = trim($params["address_name-{$this->_bltID}"]);
1381 $fields["address_name-{$this->_bltID}"] = 1;
1382
1383 $ctype = CRM_Core_DAO::getFieldValue('CRM_Contact_DAO_Contact',
1384 $this->_contactID,
1385 'contact_type'
1386 );
1387
1388 $nameFields = array('first_name', 'middle_name', 'last_name');
1389 foreach ($nameFields as $name) {
1390 $fields[$name] = 1;
1391 if (array_key_exists("billing_$name", $params)) {
1392 $params[$name] = $params["billing_{$name}"];
1393 $params['preserveDBName'] = TRUE;
1394 }
1395 }
1396
1397 if (!empty($params['source'])) {
1398 unset($params['source']);
1399 }
1400 $contactID = CRM_Contact_BAO_Contact::createProfileContact($params, $fields,
1401 $this->_contactID,
1402 NULL, NULL,
1403 $ctype
1404 );
1405
1406 // add all the additioanl payment params we need
1407 $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}"]);
1408 $this->_params["country-{$this->_bltID}"] = $this->_params["billing_country-{$this->_bltID}"] = CRM_Core_PseudoConstant::countryIsoCode($this->_params["billing_country_id-{$this->_bltID}"]);
1409
1410 if ($this->_paymentProcessor['payment_type'] & CRM_Core_Payment::PAYMENT_TYPE_CREDIT_CARD) {
1411 $this->_params['year'] = CRM_Core_Payment_Form::getCreditCardExpirationYear($this->_params);
1412 $this->_params['month'] = CRM_Core_Payment_Form::getCreditCardExpirationMonth($this->_params);
1413 }
1414 $this->_params['ip_address'] = CRM_Utils_System::ipAddress();
1415 $this->_params['amount'] = $this->_params['total_amount'];
1416 $this->_params['amount_level'] = 0;
1417 $this->_params['currencyID'] = CRM_Utils_Array::value('currency',
1418 $this->_params,
1419 $config->defaultCurrency
1420 );
1421 $this->_params['payment_action'] = 'Sale';
1422 if (!empty($this->_params['receive_date'])) {
1423 $this->_params['receive_date'] = CRM_Utils_Date::processDate($this->_params['receive_date'], $this->_params['receive_date_time']);
1424 }
1425
1426 if (!empty($params['soft_credit_to'])) {
1427 $this->_params['soft_credit_to'] = $params['soft_credit_to'];
1428 $this->_params['pcp_made_through_id'] = $params['pcp_made_through_id'];
1429 }
1430
1431 $this->_params['pcp_display_in_roll'] = CRM_Utils_Array::value('pcp_display_in_roll', $params);
1432 $this->_params['pcp_roll_nickname'] = CRM_Utils_Array::value('pcp_roll_nickname', $params);
1433 $this->_params['pcp_personal_note'] = CRM_Utils_Array::value('pcp_personal_note', $params);
1434
1435 //Add common data to formatted params
1436 CRM_Contribute_Form_AdditionalInfo::postProcessCommon($params, $this->_params, $this);
1437
1438 if (empty($this->_params['invoice_id'])) {
1439 $this->_params['invoiceID'] = md5(uniqid(rand(), TRUE));
1440 }
1441 else {
1442 $this->_params['invoiceID'] = $this->_params['invoice_id'];
1443 }
1444
1445 // at this point we've created a contact and stored its address etc
1446 // all the payment processors expect the name and address to be in the
1447 // so we copy stuff over to first_name etc.
1448 $paymentParams = $this->_params;
1449 $paymentParams['contactID'] = $this->_contactID;
1450 CRM_Core_Payment_Form::mapParams($this->_bltID, $this->_params, $paymentParams, TRUE);
1451
1452 $contributionType = new CRM_Financial_DAO_FinancialType();
1453 $contributionType->id = $params['financial_type_id'];
1454 if (!$contributionType->find(TRUE)) {
1455 CRM_Core_Error::fatal('Could not find a system table');
1456 }
1457
1458 // add some financial type details to the params list
1459 // if folks need to use it
1460 $paymentParams['contributionType_name'] = $this->_params['contributionType_name'] = $contributionType->name;
1461 $paymentParams['contributionPageID'] = NULL;
1462 if (!empty($this->_params['is_email_receipt'])) {
1463 $paymentParams['email'] = $this->userEmail;
1464 $paymentParams['is_email_receipt'] = 1;
1465 }
1466 else {
1467 $paymentParams['is_email_receipt'] = 0;
1468 $this->_params['is_email_receipt'] = 0;
1469 }
1470 if (!empty($this->_params['receive_date'])) {
1471 $paymentParams['receive_date'] = $this->_params['receive_date'];
1472 }
1473 if (!empty($this->_params['receive_date'])) {
1474 $paymentParams['receive_date'] = $this->_params['receive_date'];
1475 }
1476
1477 $result = NULL;
1478
1479 // For recurring contribution, create Contribution Record first.
1480 // Contribution ID, Recurring ID and Contact ID needed
1481 // When we get a callback from the payment processor, CRM-7115
1482 if (!empty($paymentParams['is_recur'])) {
1483 $contribution = CRM_Contribute_Form_Contribution_Confirm::processContribution($this,
1484 $this->_params,
1485 $result,
1486 $this->_contactID,
1487 $contributionType,
1488 FALSE,
1489 TRUE,
1490 FALSE
1491 );
1492 $paymentParams['contributionID'] = $contribution->id;
1493 $paymentParams['contributionTypeID'] = $contribution->financial_type_id;
1494 $paymentParams['contributionPageID'] = $contribution->contribution_page_id;
1495 $paymentParams['contributionRecurID'] = $contribution->contribution_recur_id;
1496 }
1497
1498 if ($paymentParams['amount'] > 0.0) {
1499 // force a reget of the payment processor in case the form changed it, CRM-7179
1500 $payment = CRM_Core_Payment::singleton($this->_mode, $this->_paymentProcessor, $this, TRUE);
1501 $result = $payment->doDirectPayment($paymentParams);
1502 }
1503
1504 if (is_a($result, 'CRM_Core_Error')) {
1505 //make sure to cleanup db for recurring case.
1506 if (!empty($paymentParams['contributionID'])) {
1507 CRM_Core_Error::debug_log_message(CRM_Core_Error::getMessages($result) . "contact id={$this->_contactID} (deleting contribution {$paymentParams['contributionID']}");
1508 CRM_Contribute_BAO_Contribution::deleteContribution($paymentParams['contributionID']);
1509 }
1510 if (!empty($paymentParams['contributionRecurID'])) {
1511 CRM_Core_Error::debug_log_message(CRM_Core_Error::getMessages($result) . "contact id={$this->_contactID} (deleting recurring contribution {$paymentParams['contributionRecurID']}");
1512 CRM_Contribute_BAO_ContributionRecur::deleteRecurContribution($paymentParams['contributionRecurID']);
1513 }
1514
1515 //set the contribution mode.
1516 $urlParams = "action=add&cid={$this->_contactID}";
1517 if ($this->_mode) {
1518 $urlParams .= "&mode={$this->_mode}";
1519 }
1520 if (!empty($this->_ppID)) {
1521 $urlParams .= "&context=pledge&ppid={$this->_ppID}";
1522 }
1523 CRM_Core_Error::displaySessionError($result);
1524 CRM_Utils_System::redirect(CRM_Utils_System::url('civicrm/contact/view/contribution', $urlParams));
1525 }
1526
1527 if ($result) {
1528 $this->_params = array_merge($this->_params, $result);
1529 }
1530
1531 $this->_params['receive_date'] = $now;
1532
1533 if (!empty($this->_params['is_email_receipt'])) {
1534 $this->_params['receipt_date'] = $now;
1535 }
1536 else {
1537 $this->_params['receipt_date'] = CRM_Utils_Date::processDate($this->_params['receipt_date'],
1538 $params['receipt_date_time'], TRUE
1539 );
1540 }
1541
1542 $this->set('params', $this->_params);
1543 $this->assign('trxn_id', $result['trxn_id']);
1544 $this->assign('receive_date', $this->_params['receive_date']);
1545
1546 // result has all the stuff we need
1547 // lets archive it to a financial transaction
1548 if ($contributionType->is_deductible) {
1549 $this->assign('is_deductible', TRUE);
1550 $this->set('is_deductible', TRUE);
1551 }
1552
1553 // set source if not set
1554 if (empty($this->_params['source'])) {
1555 $userID = $session->get('userID');
1556 $userSortName = CRM_Core_DAO::getFieldValue('CRM_Contact_DAO_Contact', $userID,
1557 'sort_name'
1558 );
1559 $this->_params['source'] = ts('Submit Credit Card Payment by: %1', array(1 => $userSortName));
1560 }
1561
1562 // build custom data getFields array
1563 $customFieldsContributionType = CRM_Core_BAO_CustomField::getFields('Contribution', FALSE, FALSE,
1564 CRM_Utils_Array::value('financial_type_id', $params)
1565 );
1566 $customFields = CRM_Utils_Array::crmArrayMerge($customFieldsContributionType,
1567 CRM_Core_BAO_CustomField::getFields('Contribution', FALSE, FALSE, NULL, NULL, TRUE)
1568 );
1569 $params['custom'] = CRM_Core_BAO_CustomField::postProcess($params,
1570 $customFields,
1571 $this->_id,
1572 'Contribution'
1573 );
1574
1575
1576 if (empty($paymentParams['is_recur'])) {
1577 $contribution = CRM_Contribute_Form_Contribution_Confirm::processContribution($this,
1578 $this->_params,
1579 $result,
1580 $this->_contactID,
1581 $contributionType,
1582 FALSE, FALSE, FALSE
1583 );
1584 }
1585
1586 //send receipt mail.
1587 if ($contribution->id && !empty($this->_params['is_email_receipt'])) {
1588 $this->_params['trxn_id'] = CRM_Utils_Array::value('trxn_id', $result);
1589 $this->_params['contact_id'] = $this->_contactID;
1590 $this->_params['contribution_id'] = $contribution->id;
1591 $sendReceipt = CRM_Contribute_Form_AdditionalInfo::emailReceipt($this, $this->_params, TRUE);
1592 }
1593
1594 //process the note
1595 if ($contribution->id && isset($params['note'])) {
1596 CRM_Contribute_Form_AdditionalInfo::processNote($params, $contactID, $contribution->id, NULL);
1597 }
1598 //process premium
1599 if ($contribution->id && isset($params['product_name'][0])) {
1600 CRM_Contribute_Form_AdditionalInfo::processPremium($params, $contribution->id, NULL, $this->_options);
1601 }
1602
1603 //update pledge payment status.
1604 if ($this->_ppID && $contribution->id) {
1605 //store contribution id in payment record.
1606 CRM_Core_DAO::setFieldValue('CRM_Pledge_DAO_PledgePayment', $this->_ppID, 'contribution_id', $contribution->id);
1607
1608 CRM_Pledge_BAO_PledgePayment::updatePledgePaymentStatus($this->_pledgeID,
1609 array($this->_ppID),
1610 $contribution->contribution_status_id,
1611 NULL,
1612 $contribution->total_amount
1613 );
1614 }
1615
1616 if ($contribution->id) {
1617 $statusMsg = ts('The contribution record has been processed.');
1618 if (!empty($this->_params['is_email_receipt']) && $sendReceipt) {
1619 $statusMsg .= ' ' . ts('A receipt has been emailed to the contributor.');
1620 }
1621 CRM_Core_Session::setStatus($statusMsg, ts('Complete'), 'success');
1622 }
1623 }
1624 }
1625