Merge remote-tracking branch 'origin/4.4' into 4.4-4.5-2014-09-14-13-58-42
[civicrm-core.git] / CRM / Batch / Form / Entry.php
1 <?php
2 /*
3 +--------------------------------------------------------------------+
4 | CiviCRM version 4.5 |
5 +--------------------------------------------------------------------+
6 | Copyright CiviCRM LLC (c) 2004-2014 |
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-2014
32 * $Id$
33 *
34 */
35
36 /**
37 * This class provides the functionality for batch entry for contributions/memberships
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 information
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, 'placeholder' => ts('- select -')));
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' => CRM_Core_OptionGroup::getValue('batch_status', 'Closed', 'name'),
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 $priceFieldID = CRM_Price_BAO_PriceSet::getOnlyPriceFieldID($this->_priceSet);
395 $priceFieldValueID = CRM_Price_BAO_PriceSet::getOnlyPriceFieldValueID($this->_priceSet);
396
397 if (isset($params['field'])) {
398 foreach ($params['field'] as $key => $value) {
399 // if contact is not selected we should skip the row
400 if (empty($params['primary_contact_id'][$key])) {
401 continue;
402 }
403
404 $value['contact_id'] = CRM_Utils_Array::value($key, $params['primary_contact_id']);
405
406 // update contact information
407 $this->updateContactInfo($value);
408
409 //build soft credit params
410 if (!empty($params['soft_credit_contact_id'][$key]) && !empty($params['soft_credit_amount'][$key])) {
411 $value['soft_credit'][$key]['contact_id'] = $params['soft_credit_contact_id'][$key];
412 $value['soft_credit'][$key]['amount'] = CRM_Utils_Rule::cleanMoney($params['soft_credit_amount'][$key]);
413 $value['soft_credit'][$key]['soft_credit_type_id'] = $params['field'][$key]['soft_credit_type'];
414 }
415
416 $value['custom'] = CRM_Core_BAO_CustomField::postProcess($value,
417 CRM_Core_DAO::$_nullObject,
418 NULL,
419 'Contribution'
420 );
421
422 foreach ($dates as $val) {
423 if (!empty($value[$val])) {
424 $value[$val] = CRM_Utils_Date::processDate( $value[$val], $value[$val . '_time'], TRUE );
425 }
426 }
427
428 if (!empty($value['send_receipt'])) {
429 $value['receipt_date'] = date('Y-m-d His');
430 }
431 // these translations & date handling are required because we are calling BAO directly rather than the api
432 $fieldTranslations = array(
433 'financial_type' => 'financial_type_id',
434 'payment_instrument' => 'payment_instrument_id',
435 'contribution_source' => 'source',
436 'contribution_note' => 'note',
437
438 );
439 foreach ($fieldTranslations as $formField => $baoField) {
440 if(isset($value[$formField])) {
441 $value[$baoField] = $value[$formField];
442 }
443 unset($value[$formField]);
444 }
445
446 $params['actualBatchTotal'] += $value['total_amount'];
447 $value['batch_id'] = $this->_batchId;
448 $value['skipRecentView'] = TRUE;
449
450 // build line item params
451 $this->_priceSet['fields'][$priceFieldID]['options'][$priceFieldValueID ]['amount'] = $value['total_amount'];
452 $value['price_'. $priceFieldID] = 1;
453
454 $lineItem = array();
455 CRM_Price_BAO_PriceSet::processAmount($this->_priceSet['fields'], $value, $lineItem[$priceSetId]);
456
457 //unset amount level since we always use quick config price set
458 unset($value['amount_level']);
459
460 //CRM-11529 for back office transactions
461 //when financial_type_id is passed in form, update the
462 //line items with the financial type selected in form
463 if (!empty($value['financial_type_id']) && !empty($lineItem[$priceSetId])) {
464 foreach ($lineItem[$priceSetId] as &$values) {
465 $values['financial_type_id'] = $value['financial_type_id'];
466 }
467 }
468 $value['line_item'] = $lineItem;
469
470 //finally call contribution create for all the magic
471 $contribution = CRM_Contribute_BAO_Contribution::create($value, CRM_Core_DAO::$_nullArray);
472
473 //process premiums
474 if (!empty($value['product_name'])) {
475 if ($value['product_name'][0] > 0) {
476 list($products, $options) = CRM_Contribute_BAO_Premium::getPremiumProductInfo();
477
478 $value['hidden_Premium'] = 1;
479 $value['product_option'] = CRM_Utils_Array::value(
480 $value['product_name'][1],
481 $options[$value['product_name'][0]]
482 );
483
484 $premiumParams = array(
485 'product_id' => $value['product_name'][0],
486 'contribution_id' => $contribution->id,
487 'product_option' => $value['product_option'],
488 'quantity' => 1,
489 );
490 CRM_Contribute_BAO_Contribution::addPremium($premiumParams);
491 }
492 }
493 // end of premium
494
495 //send receipt mail.
496 if ( $contribution->id && !empty($value['send_receipt'])) {
497 // add the domain email id
498 $domainEmail = CRM_Core_BAO_Domain::getNameAndEmail();
499 $domainEmail = "$domainEmail[0] <$domainEmail[1]>";
500
501 $value['from_email_address'] = $domainEmail;
502 $value['contribution_id'] = $contribution->id;
503 CRM_Contribute_Form_AdditionalInfo::emailReceipt( $this, $value );
504 }
505 }
506 }
507 return TRUE;
508 }
509 //end of function
510
511 /**
512 * process membership records
513 *
514 * @param array $params associated array of submitted values
515 *
516 * @access public
517 *
518 * @return bool
519 */
520 private function processMembership(&$params) {
521 $dateTypes = array(
522 'join_date' => 'joinDate',
523 'membership_start_date' => 'startDate',
524 'membership_end_date' => 'endDate'
525 );
526
527 $dates = array(
528 'join_date',
529 'start_date',
530 'end_date',
531 'reminder_date'
532 );
533
534 // get the price set associated with offline memebership
535 $priceSetId = CRM_Core_DAO::getFieldValue('CRM_Price_DAO_PriceSet', 'default_membership_type_amount', 'id', 'name');
536 $this->_priceSet = $priceSets = current(CRM_Price_BAO_PriceSet::getSetDetail($priceSetId));
537
538 if (isset($params['field'])) {
539 $customFields = array();
540 foreach ($params['field'] as $key => $value) {
541 // if contact is not selected we should skip the row
542 if (empty($params['primary_contact_id'][$key])) {
543 continue;
544 }
545
546 $value['contact_id'] = CRM_Utils_Array::value($key, $params['primary_contact_id']);
547
548 // update contact information
549 $this->updateContactInfo($value);
550
551 $membershipTypeId = $value['membership_type_id'] = $value['membership_type'][1];
552
553 foreach ($dateTypes as $dateField => $dateVariable) {
554 $$dateVariable = CRM_Utils_Date::processDate($value[$dateField]);
555 }
556
557 $calcDates = array();
558 $calcDates[$membershipTypeId] = CRM_Member_BAO_MembershipType::getDatesForMembershipType($membershipTypeId,
559 $joinDate, $startDate, $endDate
560 );
561
562 foreach ($calcDates as $memType => $calcDate) {
563 foreach ($dates as $d) {
564 //first give priority to form values then calDates.
565 $date = CRM_Utils_Array::value($d, $value);
566 if (!$date) {
567 $date = CRM_Utils_Array::value($d, $calcDate);
568 }
569
570 $value[$d] = CRM_Utils_Date::processDate($date);
571 }
572 }
573
574 if (!empty($value['send_receipt'])) {
575 $value['receipt_date'] = date('Y-m-d His');
576 }
577
578 if (!empty($value['membership_source'])) {
579 $value['source'] = $value['membership_source'];
580 }
581
582 unset($value['membership_source']);
583
584 //Get the membership status
585 if (!empty($value['membership_status'])) {
586 $value['status_id'] = $value['membership_status'];
587 unset($value['membership_status']);
588 }
589
590 if (empty($customFields)) {
591 // membership type custom data
592 $customFields = CRM_Core_BAO_CustomField::getFields('Membership', FALSE, FALSE, $membershipTypeId);
593
594 $customFields = CRM_Utils_Array::crmArrayMerge($customFields,
595 CRM_Core_BAO_CustomField::getFields('Membership',
596 FALSE, FALSE, NULL, NULL, TRUE
597 )
598 );
599 }
600
601 //check for custom data
602 $value['custom'] = CRM_Core_BAO_CustomField::postProcess($params['field'][$key],
603 $customFields,
604 $key,
605 'Membership',
606 $membershipTypeId
607 );
608
609 if (!empty($value['financial_type'])) {
610 $value['financial_type_id'] = $value['financial_type'];
611 }
612
613 if (!empty($value['payment_instrument'])) {
614 $value['payment_instrument_id'] = $value['payment_instrument'];
615 }
616
617 // handle soft credit
618 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'])) {
619 $value['soft_credit'][$key]['contact_id'] = $params['soft_credit_contact_id'][$key];
620 $value['soft_credit'][$key]['amount'] = CRM_Utils_Rule::cleanMoney($params['soft_credit_amount'][$key]);
621 }
622
623 if (!empty($value['receive_date'])) {
624 $value['receive_date'] = CRM_Utils_Date::processDate( $value['receive_date'], $value['receive_date_time'] , TRUE );
625 }
626
627 $params['actualBatchTotal'] += $value['total_amount'];
628
629 unset($value['financial_type']);
630 unset($value['payment_instrument']);
631
632 $value['batch_id'] = $this->_batchId;
633 $value['skipRecentView'] = TRUE;
634
635 // make entry in line item for contribution
636
637 $editedFieldParams = array(
638 'price_set_id' => $priceSetId,
639 'name' => $value['membership_type'][0]
640 );
641
642 $editedResults = array();
643 CRM_Price_BAO_PriceField::retrieve($editedFieldParams, $editedResults);
644
645 if (!empty($editedResults)) {
646 unset($this->_priceSet['fields']);
647 $this->_priceSet['fields'][$editedResults['id']] = $priceSets['fields'][$editedResults['id']];
648 unset($this->_priceSet['fields'][$editedResults['id']]['options']);
649 $fid = $editedResults['id'];
650 $editedFieldParams = array(
651 'price_field_id' => $editedResults['id'],
652 'membership_type_id' => $value['membership_type_id']
653 );
654
655 $editedResults = array();
656 CRM_Price_BAO_PriceFieldValue::retrieve($editedFieldParams, $editedResults);
657 $this->_priceSet['fields'][$fid]['options'][$editedResults['id']] = $priceSets['fields'][$fid]['options'][$editedResults['id']];
658 if (!empty($value['total_amount'])) {
659 $this->_priceSet['fields'][$fid]['options'][$editedResults['id']]['amount'] = $value['total_amount'];
660 }
661
662 $fieldID = key($this->_priceSet['fields']);
663 $value['price_' . $fieldID] = $editedResults['id'];
664
665 $lineItem = array();
666 CRM_Price_BAO_PriceSet::processAmount($this->_priceSet['fields'],
667 $value, $lineItem[$priceSetId]
668 );
669
670 //CRM-11529 for backoffice transactions
671 //when financial_type_id is passed in form, update the
672 //lineitems with the financial type selected in form
673 if (!empty($value['financial_type_id']) && !empty($lineItem[$priceSetId])) {
674 foreach ($lineItem[$priceSetId] as &$values) {
675 $values['financial_type_id'] = $value['financial_type_id'];
676 }
677 }
678
679 $value['lineItems'] = $lineItem;
680 $value['processPriceSet'] = TRUE;
681 }
682 // end of contribution related section
683
684 unset($value['membership_type']);
685 unset($value['membership_start_date']);
686 unset($value['membership_end_date']);
687
688 $value['is_renew'] = false;
689 if (!empty($params['member_option']) && CRM_Utils_Array::value( $key, $params['member_option'] ) == 2 ) {
690 $this->_params = $params;
691 $value['is_renew'] = true;
692 $membership = CRM_Member_BAO_Membership::renewMembershipFormWrapper(
693 $value['contact_id'],
694 $value['membership_type_id'],
695 FALSE, $this, NULL, NULL,
696 $value['custom']
697 );
698
699 // make contribution entry
700 CRM_Member_BAO_Membership::recordMembershipContribution( array_merge($value, array('membership_id' => $membership->id)));
701 }
702 else {
703 $membership = CRM_Member_BAO_Membership::create($value, CRM_Core_DAO::$_nullArray);
704 }
705
706 //process premiums
707 if (!empty($value['product_name'])) {
708 if ($value['product_name'][0] > 0) {
709 list($products, $options) = CRM_Contribute_BAO_Premium::getPremiumProductInfo();
710
711 $value['hidden_Premium'] = 1;
712 $value['product_option'] = CRM_Utils_Array::value(
713 $value['product_name'][1],
714 $options[$value['product_name'][0]]
715 );
716
717 $premiumParams = array(
718 'product_id' => $value['product_name'][0],
719 'contribution_id' => $value['contribution_id'],
720 'product_option' => $value['product_option'],
721 'quantity' => 1,
722 );
723 CRM_Contribute_BAO_Contribution::addPremium($premiumParams);
724 }
725 }
726 // end of premium
727
728 //send receipt mail.
729 if ( $membership->id && !empty($value['send_receipt'])) {
730
731 // add the domain email id
732 $domainEmail = CRM_Core_BAO_Domain::getNameAndEmail();
733 $domainEmail = "$domainEmail[0] <$domainEmail[1]>";
734
735 $value['from_email_address'] = $domainEmail;
736 $value['membership_id'] = $membership->id;
737 CRM_Member_Form_Membership::emailReceipt( $this, $value, $membership );
738 }
739 }
740 }
741 return TRUE;
742 }
743
744 /**
745 * update contact information
746 *
747 * @param array $value associated array of submitted values
748 *
749 * @access public
750 *
751 * @return void
752 */
753 private function updateContactInfo(&$value) {
754 $value['preserveDBName'] = $this->_preserveDefault;
755
756 //parse street address, CRM-7768
757 CRM_Contact_Form_Task_Batch::parseStreetAddress($value, $this);
758
759 CRM_Contact_BAO_Contact::createProfileContact($value, $this->_fields,
760 $value['contact_id']
761 );
762 }
763
764 /**
765 * Function exists purely for unit testing purposes. If you feel tempted to use this in live code
766 * then it probably means there is some functionality that needs to be moved
767 * out of the form layer
768 *
769 * @param unknown_type $params
770 *
771 * @return bool
772 */
773 function testProcessMembership($params) {
774 return $this->processMembership($params);
775 }
776
777 /**
778 * Function exists purely for unit testing purposes. If you feel tempted to use this in live code
779 * then it probably means there is some functionality that needs to be moved
780 * out of the form layer
781 *
782 * @param array $params
783 *
784 * @return bool
785 */
786 function testProcessContribution($params) {
787 return $this->processContribution($params);
788 }
789 }
790