CRM-13793 removed assignment in condition
[civicrm-core.git] / CRM / Contribute / Form / AbstractEditPayment.php
CommitLineData
6a488035
TO
1<?php
2/*
3 +--------------------------------------------------------------------+
232624b1 4 | CiviCRM version 4.4 |
6a488035
TO
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 */
40class CRM_Contribute_Form_AbstractEditPayment extends CRM_Core_Form {
41 public $_mode;
42
43 public $_action;
44
45 public $_bltID;
46
47 public $_fields;
48
49 public $_paymentProcessor;
50 public $_recurPaymentProcessors;
51
52 public $_processors;
53
54 /**
55 * the id of the contribution that we are proceessing
56 *
57 * @var int
58 * @public
59 */
60 public $_id;
61
62 /**
63 * the id of the premium that we are proceessing
64 *
65 * @var int
66 * @public
67 */
68 public $_premiumID = NULL;
69 public $_productDAO = NULL;
70
71 /**
72 * the id of the note
73 *
74 * @var int
75 * @public
76 */
77 public $_noteID;
78
79 /**
80 * the id of the contact associated with this contribution
81 *
82 * @var int
83 * @public
84 */
85 public $_contactID;
86
87 /**
88 * the id of the pledge payment that we are processing
89 *
90 * @var int
91 * @public
92 */
93 public $_ppID;
94
95 /**
96 * the id of the pledge that we are processing
97 *
98 * @var int
99 * @public
100 */
101 public $_pledgeID;
102
103 /**
104 * is this contribution associated with an online
105 * financial transaction
106 *
107 * @var boolean
108 * @public
109 */
110 public $_online = FALSE;
111
112 /**
113 * Stores all product option
114 *
115 * @var array
116 * @public
117 */
118 public $_options;
119
120 /**
121 * stores the honor id
122 *
123 * @var int
124 * @public
125 */
126 public $_honorID = NULL;
127
128 /**
129 * Store the contribution Type ID
130 *
131 * @var array
132 */
133 public $_contributionType;
134
135 /**
136 * The contribution values if an existing contribution
137 */
138 public $_values;
139
140 /**
141 * The pledge values if this contribution is associated with pledge
142 */
143 public $_pledgeValues;
144
145 public $_contributeMode = 'direct';
146
147 public $_context;
148
149 public $_compId;
150
151 /*
152 * Store the line items if price set used.
153 */
154 public $_lineItems;
155
156 protected $_formType;
157 protected $_cdType;
158
159 public function buildValuesAndAssignOnline_Note_Type($id, &$values) {
160 $ids = array();
161 $params = array('id' => $id);
162 CRM_Contribute_BAO_Contribution::getValues($params, $values, $ids);
163
164 //Check if this is an online transaction (financial_trxn.payment_processor_id NOT NULL)
165 $this->_online = FALSE;
166 $fids = CRM_Core_BAO_FinancialTrxn::getFinancialTrxnId($id);
167 if (CRM_Utils_Array::value('financialTrxnId', $fids)) {
168 $this->_online = CRM_Core_DAO::getFieldValue('CRM_Financial_DAO_FinancialTrxn', $fids['financialTrxnId'], 'payment_processor_id');
169 }
eea16664 170
6a488035
TO
171 // Also don't allow user to update some fields for recurring contributions.
172 if (!$this->_online) {
173 $this->_online = CRM_Utils_Array::value('contribution_recur_id', $values);
174 }
eea16664 175
6a488035
TO
176 $this->assign('isOnline', $this->_online ? TRUE : FALSE);
177
178 //unset the honor type id:when delete the honor_contact_id
179 //and edit the contribution, honoree infomation pane open
180 //since honor_type_id is present
181 if (!CRM_Utils_Array::value('honor_contact_id', $values)) {
182 unset($values['honor_type_id']);
183 }
184 //to get note id
185 $daoNote = new CRM_Core_BAO_Note();
186 $daoNote->entity_table = 'civicrm_contribution';
187 $daoNote->entity_id = $id;
188 if ($daoNote->find(TRUE)) {
189 $this->_noteID = $daoNote->id;
190 $values['note'] = $daoNote->note;
191 }
192 $this->_contributionType = $values['financial_type_id'];
6a488035
TO
193 }
194
195 /**
196 * @param string $type eg 'Contribution'
197 * @param string $subType
198 * @param int $entityId
199 */
200 public function applyCustomData($type, $subType, $entityId) {
201 $this->set('type', $type);
202 $this->set('subType', $subType);
203 $this->set('entityId', $entityId);
204
205 CRM_Custom_Form_CustomData::preProcess($this, NULL, $subType, 1, $type, $entityId);
206 CRM_Custom_Form_CustomData::buildQuickForm($this);
207 CRM_Custom_Form_CustomData::setDefaultValues($this);
208 }
209
210 public function assignPremiumProduct($id) { //to get Premium id
211 $sql = "
212SELECT *
213FROM civicrm_contribution_product
214WHERE contribution_id = {$id}
215";
216 $dao = CRM_Core_DAO::executeQuery($sql,
217 CRM_Core_DAO::$_nullArray
218 );
219 if ($dao->fetch()) {
220 $this->_premiumID = $dao->id;
221 $this->_productDAO = $dao;
222 }
223 $dao->free();
224 }
225
226 /**
227 * This function process contribution related objects.
228 */
229 protected function updateRelatedComponent($contributionId, $statusId, $previousStatusId = NULL) {
230 $statusMsg = NULL;
231 if (!$contributionId || !$statusId) {
232 return $statusMsg;
233 }
234
235 $params = array(
236 'contribution_id' => $contributionId,
237 'contribution_status_id' => $statusId,
238 'previous_contribution_status_id' => $previousStatusId,
239 );
240
241 $updateResult = CRM_Contribute_BAO_Contribution::transitionComponents($params);
242
243 if (!is_array($updateResult) ||
244 !($updatedComponents = CRM_Utils_Array::value('updatedComponents', $updateResult)) ||
245 !is_array($updatedComponents) ||
246 empty($updatedComponents)
247 ) {
248 return $statusMsg;
249 }
250
251 // get the user display name.
252 $sql = "
253 SELECT display_name as displayName
254 FROM civicrm_contact
255LEFT JOIN civicrm_contribution on (civicrm_contribution.contact_id = civicrm_contact.id )
256 WHERE civicrm_contribution.id = {$contributionId}";
257 $userDisplayName = CRM_Core_DAO::singleValueQuery($sql);
258
259 // get the status message for user.
260 foreach ($updatedComponents as $componentName => $updatedStatusId) {
261
262 if ($componentName == 'CiviMember') {
263 $updatedStatusName = CRM_Utils_Array::value($updatedStatusId,
264 CRM_Member_PseudoConstant::membershipStatus()
265 );
266 if ($updatedStatusName == 'Cancelled') {
267 $statusMsg .= "<br />" . ts("Membership for %1 has been Cancelled.", array(1 => $userDisplayName));
268 }
269 elseif ($updatedStatusName == 'Expired') {
270 $statusMsg .= "<br />" . ts("Membership for %1 has been Expired.", array(1 => $userDisplayName));
271 }
13299a2b
JM
272 else
273 $endDate = CRM_Utils_Array::value('membership_end_date', $updateResult);
274 if ($endDate) {
6a488035
TO
275 $statusMsg .= "<br />" . ts("Membership for %1 has been updated. The membership End Date is %2.",
276 array(
277 1 => $userDisplayName,
278 2 => $endDate
279 )
280 );
281 }
282 }
283
284 if ($componentName == 'CiviEvent') {
285 $updatedStatusName = CRM_Utils_Array::value($updatedStatusId,
286 CRM_Event_PseudoConstant::participantStatus()
287 );
288 if ($updatedStatusName == 'Cancelled') {
289 $statusMsg .= "<br />" . ts("Event Registration for %1 has been Cancelled.", array(1 => $userDisplayName));
290 }
291 elseif ($updatedStatusName == 'Registered') {
292 $statusMsg .= "<br />" . ts("Event Registration for %1 has been updated.", array(1 => $userDisplayName));
293 }
294 }
295
296 if ($componentName == 'CiviPledge') {
297 $updatedStatusName = CRM_Utils_Array::value($updatedStatusId,
298 CRM_Contribute_PseudoConstant::contributionStatus(NULL, 'name')
299 );
300 if ($updatedStatusName == 'Cancelled') {
301 $statusMsg .= "<br />" . ts("Pledge Payment for %1 has been Cancelled.", array(1 => $userDisplayName));
302 }
303 elseif ($updatedStatusName == 'Failed') {
304 $statusMsg .= "<br />" . ts("Pledge Payment for %1 has been Failed.", array(1 => $userDisplayName));
305 }
306 elseif ($updatedStatusName == 'Completed') {
307 $statusMsg .= "<br />" . ts("Pledge Payment for %1 has been updated.", array(1 => $userDisplayName));
308 }
309 }
310 }
311
312 return $statusMsg;
313 }
314
315 /**
316 * @return array (0 => array(int $ppId => string $label), 1 => array(...payproc details...))
317 */
318 public function getValidProcessorsAndAssignFutureStartDate() {
319 $validProcessors = array();
320 $processors = CRM_Core_PseudoConstant::paymentProcessor(FALSE, FALSE, "billing_mode IN ( 1, 3 )");
321
322 foreach ($processors as $ppID => $label) {
323 $paymentProcessor = CRM_Financial_BAO_PaymentProcessor::getPayment($ppID, $this->_mode);
324 // at this stage only Authorize.net has been tested to support future start dates so if it's enabled let the template know
325 // to show receive date
326 $processorsSupportingFutureStartDate = array('AuthNet');
327 if (in_array($paymentProcessor['payment_processor_type'], $processorsSupportingFutureStartDate)) {
328 $this->assign('processorSupportsFutureStartDate', TRUE);
329 }
330 if ($paymentProcessor['payment_processor_type'] == 'PayPal' && !$paymentProcessor['user_name']) {
331 continue;
332 }
333 elseif ($paymentProcessor['payment_processor_type'] == 'Dummy' && $this->_mode == 'live') {
334 continue;
335 }
336 else {
337 $paymentObject = CRM_Core_Payment::singleton($this->_mode, $paymentProcessor, $this);
338 $error = $paymentObject->checkConfig();
339 if (empty($error)) {
340 $validProcessors[$ppID] = $label;
341 }
342 $paymentObject = NULL;
343 }
344 }
345 if (empty($validProcessors)) {
346 CRM_Core_Error::fatal(ts('You will need to configure the %1 settings for your Payment Processor before you can submit credit card transactions.', array(1 => $this->_mode)));
347 }
348 else {
349 return array($validProcessors, $paymentProcessor);
350 }
351 }
352
353 /**
354 * Assign billing type id to bltID
355 *
356 * @return void
357 */
358 public function assignBillingType() {
180409a4 359 $locationTypes = CRM_Core_PseudoConstant::get('CRM_Core_DAO_Address', 'location_type_id', array(), 'validate');
6a488035
TO
360 $this->_bltID = array_search('Billing', $locationTypes);
361 if (!$this->_bltID) {
362 CRM_Core_Error::fatal(ts('Please set a location type of %1', array(1 => 'Billing')));
363 }
364 $this->set('bltID', $this->_bltID);
365 $this->assign('bltID', $this->_bltID);
366 }
367
368 /**
369 * Assign $this->processors, $this->recurPaymentProcessors, and related Smarty variables
370 */
371 public function assignProcessors() {
372 //ensure that processor has a valid config
373 //only valid processors get display to user
374 if ($this->_mode) {
375 list($this->_processors, $paymentProcessor) = $this->getValidProcessorsAndAssignFutureStartDate();
376
377 //get the valid recurring processors.
378 $recurring = CRM_Core_PseudoConstant::paymentProcessor(FALSE, FALSE, 'is_recur = 1');
379 $this->_recurPaymentProcessors = array_intersect_assoc($this->_processors, $recurring);
380 }
381 $this->assign('recurringPaymentProcessorIds',
382 empty($this->_recurPaymentProcessors) ? '' : implode(',', array_keys($this->_recurPaymentProcessors))
383 );
384
385 // this required to show billing block
386 $this->assign_by_ref('paymentProcessor', $paymentProcessor);
387 $this->assign('hidePayPalExpress', TRUE);
388 }
389
390 public function getCurrency($submittedValues) { // get current currency from DB or use default currency
391 $config = CRM_Core_Config::singleton();
392
393 $currentCurrency = CRM_Utils_Array::value('currency',
394 $this->_values,
395 $config->defaultCurrency
396 );
397
398 // use submitted currency if present else use current currency
399 $result = CRM_Utils_Array::value('currency',
400 $submittedValues,
401 $currentCurrency
402 );
403 return $result;
404 }
405
406 public function getFinancialAccounts($financialTypeId) {
407 $financialAccounts = array();
408 CRM_Core_PseudoConstant::populate($financialAccounts,
409 'CRM_Financial_DAO_EntityFinancialAccount',
410 $all = TRUE,
411 $retrieve = 'financial_account_id',
412 $filter = NULL,
413 " entity_id = {$financialTypeId} ", NULL, 'account_relationship');
414 return $financialAccounts;
415 }
416
417 public function getFinancialAccount($financialTypeId, $relationTypeId) {
418 $financialAccounts = $this->getFinancialAccounts($financialTypeId);
419 return CRM_Utils_Array::value($relationTypeId, $financialAccounts);
420 }
421
422 public function preProcessPledge() {
423 //get the payment values associated with given pledge payment id OR check for payments due.
424 $this->_pledgeValues = array();
425 if ($this->_ppID) {
426 $payParams = array('id' => $this->_ppID);
427
428 CRM_Pledge_BAO_PledgePayment::retrieve($payParams, $this->_pledgeValues['pledgePayment']);
429 $this->_pledgeID = CRM_Utils_Array::value('pledge_id', $this->_pledgeValues['pledgePayment']);
430 $paymentStatusID = CRM_Utils_Array::value('status_id', $this->_pledgeValues['pledgePayment']);
431 $this->_id = CRM_Utils_Array::value('contribution_id', $this->_pledgeValues['pledgePayment']);
432
433 //get all status
434 $allStatus = CRM_Contribute_PseudoConstant::contributionStatus(NULL, 'name');
435 if (!($paymentStatusID == array_search('Pending', $allStatus) || $paymentStatusID == array_search('Overdue', $allStatus))) {
436 CRM_Core_Error::fatal(ts("Pledge payment status should be 'Pending' or 'Overdue'."));
437 }
438
439 //get the pledge values associated with given pledge payment.
440
441 $ids = array();
442 $pledgeParams = array('id' => $this->_pledgeID);
443 CRM_Pledge_BAO_Pledge::getValues($pledgeParams, $this->_pledgeValues, $ids);
444 $this->assign('ppID', $this->_ppID);
445 }
446 else {
447 // Not making a pledge payment, so if adding a new contribution we should check if pledge payment(s) are due for this contact so we can alert the user. CRM-5206
448 if (isset($this->_contactID)) {
449 $contactPledges = CRM_Pledge_BAO_Pledge::getContactPledges($this->_contactID);
450
451 if (!empty($contactPledges)) {
452 $payments = $paymentsDue = NULL;
453 $multipleDue = FALSE;
454 foreach ($contactPledges as $key => $pledgeId) {
455 $payments = CRM_Pledge_BAO_PledgePayment::getOldestPledgePayment($pledgeId);
456 if ($payments) {
457 if ($paymentsDue) {
458 $multipleDue = TRUE;
459 break;
460 }
461 else {
462 $paymentsDue = $payments;
463 }
464 }
465 }
466 if ($multipleDue) {
467 // Show link to pledge tab since more than one pledge has a payment due
468 $pledgeTab = CRM_Utils_System::url('civicrm/contact/view',
469 "reset=1&force=1&cid={$this->_contactID}&selectedChild=pledge"
470 );
471 CRM_Core_Session::setStatus(ts('This contact has pending or overdue pledge payments. <a href="%1">Click here to view their Pledges tab</a> and verify whether this contribution should be applied as a pledge payment.', array(1 => $pledgeTab)), ts('Notice'), 'alert');
472 }
473 elseif ($paymentsDue) {
474 // Show user link to oldest Pending or Overdue pledge payment
475 $ppAmountDue = CRM_Utils_Money::format($payments['amount'], $payments['currency']);
476 $ppSchedDate = CRM_Utils_Date::customFormat(CRM_Core_DAO::getFieldValue('CRM_Pledge_DAO_PledgePayment', $payments['id'], 'scheduled_date'));
477 if ($this->_mode) {
478 $ppUrl = CRM_Utils_System::url('civicrm/contact/view/contribution',
479 "reset=1&action=add&cid={$this->_contactID}&ppid={$payments['id']}&context=pledge&mode=live"
480 );
481 }
482 else {
483 $ppUrl = CRM_Utils_System::url('civicrm/contact/view/contribution',
484 "reset=1&action=add&cid={$this->_contactID}&ppid={$payments['id']}&context=pledge"
485 );
486 }
487 CRM_Core_Session::setStatus(ts('This contact has a pending or overdue pledge payment of %2 which is scheduled for %3. <a href="%1">Click here to enter a pledge payment</a>.', array(
488 1 => $ppUrl,
489 2 => $ppAmountDue,
490 3 => $ppSchedDate
491 )), ts('Notice'), 'alert');
492 }
493 }
494 }
495 }
496 }
497
498 public function unsetCreditCardFields($submittedValues) {
499 //Offline Contribution.
500 $unsetParams = array(
501 'payment_processor_id',
502 "email-{$this->_bltID}",
503 'hidden_buildCreditCard',
504 'hidden_buildDirectDebit',
505 'billing_first_name',
506 'billing_middle_name',
507 'billing_last_name',
508 'street_address-5',
509 "city-{$this->_bltID}",
510 "state_province_id-{$this->_bltID}",
511 "postal_code-{$this->_bltID}",
512 "country_id-{$this->_bltID}",
513 'credit_card_number',
514 'cvv2',
515 'credit_card_exp_date',
516 'credit_card_type',
517 );
518 foreach ($unsetParams as $key) {
519 if (isset($submittedValues[$key])) {
520 unset($submittedValues[$key]);
521 }
522 }
523 return $submittedValues;
524 }
525
526}