CRM-13929 Refactor contribution forms
[civicrm-core.git] / CRM / Batch / Form / Entry.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 useful, but |
15 | WITHOUT ANY WARRANTY; without even the implied warranty of |
16 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. |
17 | See the GNU Affero General Public License for more details. |
18 | |
19 | You should have received a copy of the GNU Affero General Public |
20 | License and the CiviCRM Licensing Exception along |
21 | with this program; if not, contact CiviCRM LLC |
22 | at info[AT]civicrm[DOT]org. If you have questions about the |
23 | GNU Affero General Public License or the licensing of CiviCRM, |
24 | see the CiviCRM license FAQ at http://civicrm.org/licensing |
25 +--------------------------------------------------------------------+
26 */
27
28 /**
29 *
30 * @package CRM
31 * @copyright CiviCRM LLC (c) 2004-2013
32 * $Id$
33 *
34 */
35
36 /**
37 * This class provides the functionality for batch entry for contributions/memeberships
38 */
39 class CRM_Batch_Form_Entry extends CRM_Core_Form {
40
41 /**
42 * maximum profile fields that will be displayed
43 *
44 */
45 protected $_rowCount = 1;
46
47 /**
48 * Batch id
49 */
50 protected $_batchId;
51
52 /**
53 * Batch informtaion
54 */
55 protected $_batchInfo = array();
56
57 /**
58 * store the profile id associated with the batch type
59 */
60 protected $_profileId;
61
62 public $_action;
63
64 public $_mode;
65
66 public $_params;
67
68 public $_membershipId = null;
69 /**
70 * when not to reset sort_name
71 */
72 protected $_preserveDefault = TRUE;
73
74 /**
75 * Contact fields
76 */
77 protected $_contactFields = array();
78
79 /**
80 * Fields array of fields in the batch profile
81 * (based on the uf_field table data)
82 * (this can't be protected as it is passed into the CRM_Contact_Form_Task_Batch::parseStreetAddress function
83 * (although a future refactoring might hopefully change that so it uses the api & the function is not
84 * required
85 * @var array
86 */
87 public $_fields = array();
88 /**
89 * build all the data structures needed to build the form
90 *
91 * @return void
92 * @access public
93 */
94 function preProcess() {
95 $this->_batchId = CRM_Utils_Request::retrieve('id', 'Positive', $this, TRUE);
96
97 $this->_action = CRM_Utils_Request::retrieve('action', 'String', $this, FALSE, 'browse');
98
99 if (empty($this->_batchInfo)) {
100 $params = array('id' => $this->_batchId);
101 CRM_Batch_BAO_Batch::retrieve($params, $this->_batchInfo);
102
103 $this->assign('batchTotal', !empty($this->_batchInfo['total']) ? $this->_batchInfo['total'] : NULL);
104 $this->assign('batchType', $this->_batchInfo['type_id']);
105
106 // get the profile id associted with this batch type
107 $this->_profileId = CRM_Batch_BAO_Batch::getProfileId($this->_batchInfo['type_id']);
108 }
109 CRM_Core_Resources::singleton()
110 ->addScriptFile('civicrm', 'templates/CRM/Batch/Form/Entry.js')
111 ->addSetting(array('batch' => array('type_id' => $this->_batchInfo['type_id'])))
112 ->addSetting(array('setting' => array('monetaryThousandSeparator' => CRM_Core_Config::singleton()->monetaryThousandSeparator)))
113 ->addSetting(array('setting' => array('monetaryDecimalPoint' => CRM_Core_Config::singleton()->monetaryDecimalPoint)));
114
115 }
116
117 /**
118 * Build the form
119 *
120 * @access public
121 *
122 * @return void
123 */
124 function buildQuickForm() {
125 if (!$this->_profileId) {
126 CRM_Core_Error::fatal(ts('Profile for bulk data entry is missing.'));
127 }
128
129 $this->addElement('hidden', 'batch_id', $this->_batchId);
130
131 // get the profile information
132 if ($this->_batchInfo['type_id'] == 1) {
133 CRM_Utils_System::setTitle(ts('Batch Data Entry for Contributions'));
134 $customFields = CRM_Core_BAO_CustomField::getFields('Contribution');
135 }
136 else {
137 CRM_Utils_System::setTitle(ts('Batch Data Entry for Memberships'));
138 $customFields = CRM_Core_BAO_CustomField::getFields('Membership');
139 }
140
141 $this->_fields = array();
142 $this->_fields = CRM_Core_BAO_UFGroup::getFields($this->_profileId, FALSE, CRM_Core_Action::VIEW);
143
144 // remove file type field and then limit fields
145 $suppressFields = FALSE;
146 $removehtmlTypes = array('File', 'Autocomplete-Select');
147 foreach ($this->_fields as $name => $field) {
148 if ($cfID = CRM_Core_BAO_CustomField::getKeyID($name) &&
149 in_array($this->_fields[$name]['html_type'], $removehtmlTypes)
150 ) {
151 $suppressFields = TRUE;
152 unset($this->_fields[$name]);
153 }
154
155 //fix to reduce size as we are using this field in grid
156 if (is_array($field['attributes']) && $this->_fields[$name]['attributes']['size'] > 19) {
157 //shrink class to "form-text-medium"
158 $this->_fields[$name]['attributes']['size'] = 19;
159 }
160 }
161
162 $this->addFormRule(array('CRM_Batch_Form_Entry', 'formRule'), $this);
163
164 // add the force save button
165 $forceSave = $this->getButtonName('upload', 'force');
166
167 $this->addElement('submit',
168 $forceSave,
169 ts('Ignore Mismatch & Process the Batch?')
170 );
171
172 $this->addButtons(array(
173 array(
174 'type' => 'upload',
175 'name' => ts('Validate & Process the Batch'),
176 'isDefault' => TRUE
177 ),
178 array(
179 'type' => 'cancel',
180 'name' => ts('Save & Continue Later'),
181 )
182 )
183 );
184
185 $this->assign('rowCount', $this->_batchInfo['item_count'] + 1);
186
187 $fileFieldExists = FALSE;
188 $preserveDefaultsArray = array(
189 'first_name', 'last_name', 'middle_name',
190 'organization_name',
191 'household_name',
192 );
193
194 $contactTypes = array('Contact', 'Individual', 'Household', 'Organization');
195 $contactReturnProperties = array();
196 for ($rowNumber = 1; $rowNumber <= $this->_batchInfo['item_count']; $rowNumber++) {
197 $this->addEntityRef("primary_contact_id[{$rowNumber}]", '', array('create' => TRUE));
198
199 // special field specific to membership batch udpate
200 if ($this->_batchInfo['type_id'] == 2) {
201 $options = array(
202 1 => ts('Add Membership'),
203 2 => ts('Renew Membership'),
204 );
205 $this->add('select', "member_option[$rowNumber]", '', $options);
206 }
207
208 foreach ($this->_fields as $name => $field) {
209 if (in_array($field['field_type'], $contactTypes)) {
210 $fld = explode('-', $field['name']);
211 $contactReturnProperties[$field['name']] = $fld[0];
212 }
213 CRM_Core_BAO_UFGroup::buildProfile($this, $field, NULL, NULL, FALSE, FALSE, $rowNumber);
214
215 if (in_array($field['name'], $preserveDefaultsArray)) {
216 $this->_preserveDefault = FALSE;
217 }
218 }
219 }
220
221 $this->assign('fields', $this->_fields);
222 CRM_Core_Resources::singleton()
223 ->addSetting(array('contact' => array(
224 'return' => implode(',', $contactReturnProperties),
225 'fieldmap' => array_flip($contactReturnProperties),
226 )));
227
228 // don't set the status message when form is submitted.
229 $buttonName = $this->controller->getButtonName('submit');
230
231 if ($suppressFields && $buttonName != '_qf_Entry_next') {
232 CRM_Core_Session::setStatus(ts("FILE or Autocomplete Select type field(s) in the selected profile are not supported for Batch Update."), ts("Some fields have been excluded."), "info");
233 }
234 }
235
236 /**
237 * form validations
238 *
239 * @param array $params posted values of the form
240 * @param array $files list of errors to be posted back to the form
241 * @param array $self form object
242 *
243 * @return array list of errors to be posted back to the form
244 * @static
245 * @access public
246 */
247 static function formRule($params, $files, $self) {
248 $errors = array();
249
250 if (!empty($params['_qf_Entry_upload_force'])) {
251 return TRUE;
252 }
253
254 $batchTotal = 0;
255 foreach ($params['field'] as $key => $value) {
256 $batchTotal += $value['total_amount'];
257
258 //validate for soft credit fields
259 if (!empty($params['soft_credit_contact_id'][$key]) && empty($params['soft_credit_amount'][$key])) {
260 $errors["soft_credit_amount[$key]"] = ts('Please enter the soft credit amount.');
261 }
262 if (!empty($params['soft_credit_amount']) && !empty($params['soft_credit_amount'][$key]) && CRM_Utils_Rule::cleanMoney(CRM_Utils_Array::value($key, $params['soft_credit_amount'])) > CRM_Utils_Rule::cleanMoney($value['total_amount'])) {
263 $errors["soft_credit_amount[$key]"] = ts('Soft credit amount should not be greater than the total amount');
264 }
265
266 //membership type is required for membership batch entry
267 if ( $self->_batchInfo['type_id'] == 2 ) {
268 if (empty($value['membership_type'][1])) {
269 $errors["field[$key][membership_type]"] = ts('Membership type is a required field.');
270 }
271 }
272 }
273
274 if ($batchTotal != $self->_batchInfo['total']) {
275 $self->assign('batchAmountMismatch', TRUE);
276 $errors['_qf_defaults'] = ts('Total for amounts entered below does not match the expected batch total.');
277 }
278
279 if (!empty($errors)) {
280 return $errors;
281 }
282
283 $self->assign('batchAmountMismatch', FALSE);
284 return TRUE;
285 }
286
287 /**
288 * Override default cancel action
289 */
290 function cancelAction() {
291 // redirect to batch listing
292 CRM_Utils_System::redirect(CRM_Utils_System::url('civicrm/batch', 'reset=1'));
293 CRM_Utils_System::civiExit();
294 }
295
296 /**
297 * This function sets the default values for the form.
298 *
299 * @access public
300 *
301 * @return void
302 */
303 function setDefaultValues() {
304 if (empty($this->_fields)) {
305 return;
306 }
307
308 // for add mode set smart defaults
309 if ( $this->_action & CRM_Core_Action::ADD ) {
310 list( $currentDate, $currentTime ) = CRM_Utils_Date::setDateDefaults( NULL, 'activityDateTime' );
311
312 //get all status
313 $allStatus = CRM_Contribute_PseudoConstant::contributionStatus(NULL, 'name');
314 $completeStatus = array_search( 'Completed', $allStatus );
315 $specialFields = array(
316 'join_date' => $currentDate,
317 'receive_date' => $currentDate,
318 'receive_date_time' => $currentTime,
319 'contribution_status_id' => $completeStatus
320 );
321
322 for ($rowNumber = 1; $rowNumber <= $this->_batchInfo['item_count']; $rowNumber++) {
323 foreach ($specialFields as $key => $value ) {
324 $defaults['field'][$rowNumber][$key] = $value;
325 }
326 }
327 }
328 else {
329 // get the cached info from data column of civicrm_batch
330 $data = CRM_Core_DAO::getFieldValue('CRM_Batch_BAO_Batch', $this->_batchId, 'data');
331 $defaults = json_decode($data, TRUE);
332 $defaults = $defaults['values'];
333 }
334
335 return $defaults;
336 }
337
338 /**
339 * process the form after the input has been submitted and validated
340 *
341 * @access public
342 *
343 * @return void
344 */
345 public function postProcess() {
346 $params = $this->controller->exportValues($this->_name);
347
348 $params['actualBatchTotal'] = 0;
349
350 // get the profile information
351 if ($this->_batchInfo['type_id'] == 1) {
352 $this->processContribution($params);
353 }
354 else {
355 $this->processMembership($params);
356 }
357
358 // update batch to close status
359 $paramValues = array(
360 'id' => $this->_batchId,
361 // close status
362 'status_id' => 2,
363 'total' => $params['actualBatchTotal'],
364 );
365
366 CRM_Batch_BAO_Batch::create($paramValues);
367
368 // set success status
369 CRM_Core_Session::setStatus("", ts("Batch Processed."), "success");
370
371 CRM_Utils_System::redirect(CRM_Utils_System::url('civicrm/batch', 'reset=1'));
372 }
373
374 /**
375 * process contribution records
376 *
377 * @param array $params associated array of submitted values
378 *
379 * @access public
380 *
381 * @return void
382 */
383 private function processContribution(&$params) {
384 $dates = array(
385 'receive_date',
386 'receipt_date',
387 'thankyou_date',
388 'cancel_date',
389 );
390
391 // get the price set associated with offline contribution record.
392 $priceSetId = CRM_Core_DAO::getFieldValue('CRM_Price_DAO_PriceSet', 'default_contribution_amount', 'id', 'name');
393 $this->_priceSet = current(CRM_Price_BAO_PriceSet::getSetDetail($priceSetId));
394 $fieldID = key($this->_priceSet['fields']);
395
396 if (isset($params['field'])) {
397 foreach ($params['field'] as $key => $value) {
398 // if contact is not selected we should skip the row
399 if (empty($params['primary_contact_id'][$key])) {
400 continue;
401 }
402
403 $value['contact_id'] = CRM_Utils_Array::value($key, $params['primary_contact_id']);
404
405 // update contact information
406 $this->updateContactInfo($value);
407
408 //build soft credit params
409 if (!empty($params['soft_credit_contact_id'][$key]) && !empty($params['soft_credit_amount'][$key])) {
410 $value['soft_credit'][$key]['contact_id'] = $params['soft_credit_contact_id'][$key];
411 $value['soft_credit'][$key]['amount'] = CRM_Utils_Rule::cleanMoney($params['soft_credit_amount'][$key]);
412 $value['soft_credit'][$key]['soft_credit_type_id'] = $params['field'][$key]['soft_credit_type'];
413 }
414
415 $value['custom'] = CRM_Core_BAO_CustomField::postProcess($value,
416 CRM_Core_DAO::$_nullObject,
417 NULL,
418 'Contribution'
419 );
420
421 foreach ($dates as $val) {
422 if (!empty($value[$val])) {
423 $value[$val] = CRM_Utils_Date::processDate( $value[$val], $value[$val . '_time'], TRUE );
424 }
425 }
426
427 if (!empty($value['send_receipt'])) {
428 $value['receipt_date'] = date('Y-m-d His');
429 }
430
431 if ($value['financial_type']) {
432 $value['financial_type_id'] = $value['financial_type'];
433 }
434
435 if (!empty($value['payment_instrument'])) {
436 $value['payment_instrument_id'] = $value['payment_instrument'];
437 }
438
439 if (!empty($value['contribution_source'])) {
440 $value['source'] = $value['contribution_source'];
441 }
442
443 if (!empty($value['contribution_note'])) {
444 $value['note'] = $value['contribution_note'];
445 }
446
447 $params['actualBatchTotal'] += $value['total_amount'];
448
449 unset($value['contribution_note']);
450 unset($value['financial_type']);
451 unset($value['contribution_source']);
452
453 $value['batch_id'] = $this->_batchId;
454 $value['skipRecentView'] = TRUE;
455
456 // build line item params
457 $this->_priceSet['fields'][$fieldID]['options'][$fieldID]['amount'] = $value['total_amount'];
458 $value['price_'.$fieldID] = 1;
459
460 $lineItem = array();
461 CRM_Price_BAO_PriceSet::processAmount($this->_priceSet['fields'], $value, $lineItem[$priceSetId]);
462
463 //unset amount level since we always use quick config price set
464 unset($value['amount_level']);
465
466 //CRM-11529 for backoffice transactions
467 //when financial_type_id is passed in form, update the
468 //lineitems with the financial type selected in form
469 if (!empty($value['financial_type_id']) && !empty($lineItem[$priceSetId])) {
470 foreach ($lineItem[$priceSetId] as &$values) {
471 $values['financial_type_id'] = $value['financial_type_id'];
472 }
473 }
474 $value['line_item'] = $lineItem;
475
476 //finally call contribution create for all the magic
477 $contribution = CRM_Contribute_BAO_Contribution::create($value, CRM_Core_DAO::$_nullArray);
478
479 //process premiums
480 if (!empty($value['product_name'])) {
481 if ($value['product_name'][0] > 0) {
482 list($products, $options) = CRM_Contribute_BAO_Premium::getPremiumProductInfo();
483
484 $value['hidden_Premium'] = 1;
485 $value['product_option'] = CRM_Utils_Array::value(
486 $value['product_name'][1],
487 $options[$value['product_name'][0]]
488 );
489
490 $premiumParams = array(
491 'product_id' => $value['product_name'][0],
492 'contribution_id' => $contribution->id,
493 'product_option' => $value['product_option'],
494 'quantity' => 1,
495 );
496 CRM_Contribute_BAO_Contribution::addPremium($premiumParams);
497 }
498 }
499 // end of premium
500
501 //send receipt mail.
502 if ( $contribution->id && !empty($value['send_receipt'])) {
503 // add the domain email id
504 $domainEmail = CRM_Core_BAO_Domain::getNameAndEmail();
505 $domainEmail = "$domainEmail[0] <$domainEmail[1]>";
506
507 $value['from_email_address'] = $domainEmail;
508 $value['contribution_id'] = $contribution->id;
509 CRM_Contribute_Form_AdditionalInfo::emailReceipt( $this, $value );
510 }
511 }
512 }
513 }
514 //end of function
515
516 /**
517 * process membership records
518 *
519 * @param array $params associated array of submitted values
520 *
521 * @access public
522 *
523 * @return void
524 */
525 private function processMembership(&$params) {
526 $dateTypes = array(
527 'join_date' => 'joinDate',
528 'membership_start_date' => 'startDate',
529 'membership_end_date' => 'endDate'
530 );
531
532 $dates = array(
533 'join_date',
534 'start_date',
535 'end_date',
536 'reminder_date'
537 );
538
539 // get the price set associated with offline memebership
540 $priceSetId = CRM_Core_DAO::getFieldValue('CRM_Price_DAO_PriceSet', 'default_membership_type_amount', 'id', 'name');
541 $this->_priceSet = $priceSets = current(CRM_Price_BAO_PriceSet::getSetDetail($priceSetId));
542
543 if (isset($params['field'])) {
544 $customFields = array();
545 foreach ($params['field'] as $key => $value) {
546 // if contact is not selected we should skip the row
547 if (empty($params['primary_contact_id'][$key])) {
548 continue;
549 }
550
551 $value['contact_id'] = CRM_Utils_Array::value($key, $params['primary_contact_id']);
552
553 // update contact information
554 $this->updateContactInfo($value);
555
556 $membershipTypeId = $value['membership_type_id'] = $value['membership_type'][1];
557
558 foreach ($dateTypes as $dateField => $dateVariable) {
559 $$dateVariable = CRM_Utils_Date::processDate($value[$dateField]);
560 }
561
562 $calcDates = array();
563 $calcDates[$membershipTypeId] = CRM_Member_BAO_MembershipType::getDatesForMembershipType($membershipTypeId,
564 $joinDate, $startDate, $endDate
565 );
566
567 foreach ($calcDates as $memType => $calcDate) {
568 foreach ($dates as $d) {
569 //first give priority to form values then calDates.
570 $date = CRM_Utils_Array::value($d, $value);
571 if (!$date) {
572 $date = CRM_Utils_Array::value($d, $calcDate);
573 }
574
575 $value[$d] = CRM_Utils_Date::processDate($date);
576 }
577 }
578
579 if (!empty($value['send_receipt'])) {
580 $value['receipt_date'] = date('Y-m-d His');
581 }
582
583 if (!empty($value['membership_source'])) {
584 $value['source'] = $value['membership_source'];
585 }
586
587 unset($value['membership_source']);
588
589 //Get the membership status
590 if (!empty($value['membership_status'])) {
591 $value['status_id'] = $value['membership_status'];
592 unset($value['membership_status']);
593 }
594
595 if (empty($customFields)) {
596 // membership type custom data
597 $customFields = CRM_Core_BAO_CustomField::getFields('Membership', FALSE, FALSE, $membershipTypeId);
598
599 $customFields = CRM_Utils_Array::crmArrayMerge($customFields,
600 CRM_Core_BAO_CustomField::getFields('Membership',
601 FALSE, FALSE, NULL, NULL, TRUE
602 )
603 );
604 }
605
606 //check for custom data
607 $value['custom'] = CRM_Core_BAO_CustomField::postProcess($params['field'][$key],
608 $customFields,
609 $key,
610 'Membership',
611 $membershipTypeId
612 );
613
614 if (!empty($value['financial_type'])) {
615 $value['financial_type_id'] = $value['financial_type'];
616 }
617
618 if (!empty($value['payment_instrument'])) {
619 $value['payment_instrument_id'] = $value['payment_instrument'];
620 }
621
622 // handle soft credit
623 if (is_array(CRM_Utils_Array::value('soft_credit_contact_id', $params)) && !empty($params['soft_credit_contact_id'][$key]) && CRM_Utils_Array::value($key, $params['soft_credit_amount'])) {
624 $value['soft_credit'][$key]['contact_id'] = $params['soft_credit_contact_id'][$key];
625 $value['soft_credit'][$key]['amount'] = CRM_Utils_Rule::cleanMoney($params['soft_credit_amount'][$key]);
626 }
627
628 if (!empty($value['receive_date'])) {
629 $value['receive_date'] = CRM_Utils_Date::processDate( $value['receive_date'], $value['receive_date_time'] , TRUE );
630 }
631
632 $params['actualBatchTotal'] += $value['total_amount'];
633
634 unset($value['financial_type']);
635 unset($value['payment_instrument']);
636
637 $value['batch_id'] = $this->_batchId;
638 $value['skipRecentView'] = TRUE;
639
640 // make entry in line item for contribution
641
642 $editedFieldParams = array(
643 'price_set_id' => $priceSetId,
644 'name' => $value['membership_type'][0]
645 );
646
647 $editedResults = array();
648 CRM_Price_BAO_PriceField::retrieve($editedFieldParams, $editedResults);
649
650 if (!empty($editedResults)) {
651 unset($this->_priceSet['fields']);
652 $this->_priceSet['fields'][$editedResults['id']] = $priceSets['fields'][$editedResults['id']];
653 unset($this->_priceSet['fields'][$editedResults['id']]['options']);
654 $fid = $editedResults['id'];
655 $editedFieldParams = array(
656 'price_field_id' => $editedResults['id'],
657 'membership_type_id' => $value['membership_type_id']
658 );
659
660 $editedResults = array();
661 CRM_Price_BAO_PriceFieldValue::retrieve($editedFieldParams, $editedResults);
662 $this->_priceSet['fields'][$fid]['options'][$editedResults['id']] = $priceSets['fields'][$fid]['options'][$editedResults['id']];
663 if (!empty($value['total_amount'])) {
664 $this->_priceSet['fields'][$fid]['options'][$editedResults['id']]['amount'] = $value['total_amount'];
665 }
666
667 $fieldID = key($this->_priceSet['fields']);
668 $value['price_' . $fieldID] = $editedResults['id'];
669
670 $lineItem = array();
671 CRM_Price_BAO_PriceSet::processAmount($this->_priceSet['fields'],
672 $value, $lineItem[$priceSetId]
673 );
674
675 //CRM-11529 for backoffice transactions
676 //when financial_type_id is passed in form, update the
677 //lineitems with the financial type selected in form
678 if (!empty($value['financial_type_id']) && !empty($lineItem[$priceSetId])) {
679 foreach ($lineItem[$priceSetId] as &$values) {
680 $values['financial_type_id'] = $value['financial_type_id'];
681 }
682 }
683
684 $value['lineItems'] = $lineItem;
685 $value['processPriceSet'] = TRUE;
686 }
687 // end of contribution related section
688
689 unset($value['membership_type']);
690 unset($value['membership_start_date']);
691 unset($value['membership_end_date']);
692
693 $value['is_renew'] = false;
694 if (!empty($params['member_option']) && CRM_Utils_Array::value( $key, $params['member_option'] ) == 2 ) {
695 $this->_params = $params;
696 $value['is_renew'] = true;
697 $membership = CRM_Member_BAO_Membership::renewMembership(
698 $value['contact_id'],
699 $value['membership_type_id'],
700 FALSE, $this, NULL, NULL,
701 $value['custom']
702 );
703
704 // make contribution entry
705 CRM_Member_BAO_Membership::recordMembershipContribution( array_merge($value, array('membership_id' => $membership->id)));
706 }
707 else {
708 $membership = CRM_Member_BAO_Membership::create($value, CRM_Core_DAO::$_nullArray);
709 }
710
711 //process premiums
712 if (!empty($value['product_name'])) {
713 if ($value['product_name'][0] > 0) {
714 list($products, $options) = CRM_Contribute_BAO_Premium::getPremiumProductInfo();
715
716 $value['hidden_Premium'] = 1;
717 $value['product_option'] = CRM_Utils_Array::value(
718 $value['product_name'][1],
719 $options[$value['product_name'][0]]
720 );
721
722 $premiumParams = array(
723 'product_id' => $value['product_name'][0],
724 'contribution_id' => $value['contribution_id'],
725 'product_option' => $value['product_option'],
726 'quantity' => 1,
727 );
728 CRM_Contribute_BAO_Contribution::addPremium($premiumParams);
729 }
730 }
731 // end of premium
732
733 //send receipt mail.
734 if ( $membership->id && !empty($value['send_receipt'])) {
735
736 // add the domain email id
737 $domainEmail = CRM_Core_BAO_Domain::getNameAndEmail();
738 $domainEmail = "$domainEmail[0] <$domainEmail[1]>";
739
740 $value['from_email_address'] = $domainEmail;
741 $value['membership_id'] = $membership->id;
742 CRM_Member_Form_Membership::emailReceipt( $this, $value, $membership );
743 }
744 }
745 }
746 return TRUE;
747 }
748
749 /**
750 * update contact information
751 *
752 * @param array $value associated array of submitted values
753 *
754 * @access public
755 *
756 * @return void
757 */
758 private function updateContactInfo(&$value) {
759 $value['preserveDBName'] = $this->_preserveDefault;
760
761 //parse street address, CRM-7768
762 CRM_Contact_Form_Task_Batch::parseStreetAddress($value, $this);
763
764 CRM_Contact_BAO_Contact::createProfileContact($value, $this->_fields,
765 $value['contact_id']
766 );
767 }
768 /**
769 * Function exists purely for unit testing purposes. If you feel tempted to use this in live code
770 * then it probably means there is some functionality that needs to be moved
771 * out of the form layer
772 * @param unknown_type $params
773 */
774 function testProcessMembership($params) {
775 return $this->processMembership($params);
776 }
777 }
778