Merge pull request #15865 from eileenmcnaughton/query
[civicrm-core.git] / CRM / Member / Form / MembershipRenewal.php
1 <?php
2 /*
3 +--------------------------------------------------------------------+
4 | Copyright CiviCRM LLC. All rights reserved. |
5 | |
6 | This work is published under the GNU AGPLv3 license with some |
7 | permitted exceptions and without any warranty. For full license |
8 | and copyright information, see https://civicrm.org/licensing |
9 +--------------------------------------------------------------------+
10 */
11
12 /**
13 *
14 * @package CRM
15 * @copyright CiviCRM LLC https://civicrm.org/licensing
16 */
17
18 /**
19 * This class generates form components for Membership Renewal
20 */
21 class CRM_Member_Form_MembershipRenewal extends CRM_Member_Form {
22
23 /**
24 * Display name of the member.
25 *
26 * @var string
27 */
28 protected $_memberDisplayName = NULL;
29
30 /**
31 * email of the person paying for the membership (used for receipts)
32 * @var string
33 */
34 protected $_memberEmail = NULL;
35
36 /**
37 * Contact ID of the member.
38 *
39 *
40 * @var int
41 */
42 public $_contactID = NULL;
43
44 /**
45 * Display name of the person paying for the membership (used for receipts)
46 *
47 * @var string
48 */
49 protected $_contributorDisplayName = NULL;
50
51 /**
52 * email of the person paying for the membership (used for receipts)
53 * @var string
54 */
55 protected $_contributorEmail = NULL;
56
57 /**
58 * email of the person paying for the membership (used for receipts)
59 *
60 * @var int
61 */
62 protected $_contributorContactID = NULL;
63
64 /**
65 * ID of the person the receipt is to go to
66 *
67 * @var int
68 */
69 protected $_receiptContactId = NULL;
70
71 /**
72 * context would be set to standalone if the contact is use is being selected from
73 * the form rather than in the URL
74 * @var string
75 */
76 public $_context;
77
78 /**
79 * End date of renewed membership.
80 *
81 * @var string
82 */
83 protected $endDate = NULL;
84
85 /**
86 * Has an email been sent.
87 *
88 * @var string
89 */
90 protected $isMailSent = FALSE;
91
92 /**
93 * The name of the renewed membership type.
94 *
95 * @var string
96 */
97 protected $membershipTypeName = '';
98
99 /**
100 * Set entity fields to be assigned to the form.
101 */
102 protected function setEntityFields() {}
103
104 /**
105 * Set the delete message.
106 *
107 * We do this from the constructor in order to do a translation.
108 */
109 public function setDeleteMessage() {}
110
111 /**
112 * Pre-process form.
113 *
114 * @throws \Exception
115 */
116
117 /**
118 * Set the renewal notification status message.
119 */
120 public function setRenewalMessage() {
121 $statusMsg = ts('%1 membership for %2 has been renewed.', array(1 => $this->membershipTypeName, 2 => $this->_memberDisplayName));
122
123 if ($this->isMailSent) {
124 $statusMsg .= ' ' . ts('A renewal confirmation and receipt has been sent to %1.', array(
125 1 => $this->_contributorEmail,
126 ));
127 }
128 CRM_Core_Session::setStatus($statusMsg, ts('Complete'), 'success');
129 }
130
131 public function preProcess() {
132
133 // This string makes up part of the class names, differentiating them (not sure why) from the membership fields.
134 $this->assign('formClass', 'membershiprenew');
135 parent::preProcess();
136
137 $this->assign('endDate', CRM_Utils_Date::customFormat(CRM_Core_DAO::getFieldValue('CRM_Member_DAO_Membership',
138 $this->_id, 'end_date'
139 )
140 ));
141 $this->assign('membershipStatus',
142 CRM_Core_DAO::getFieldValue('CRM_Member_DAO_MembershipStatus',
143 CRM_Core_DAO::getFieldValue('CRM_Member_DAO_Membership',
144 $this->_id, 'status_id'
145 ),
146 'name'
147 )
148 );
149
150 if ($this->_mode) {
151 $membershipFee = CRM_Core_DAO::getFieldValue('CRM_Member_DAO_MembershipType', $this->_memType, 'minimum_fee');
152 if (!$membershipFee) {
153 $statusMsg = ts('Membership Renewal using a credit card requires a Membership fee. Since there is no fee associated with the selected membership type, you can use the normal renewal mode.');
154 CRM_Core_Session::setStatus($statusMsg, '', 'info');
155 CRM_Utils_System::redirect(CRM_Utils_System::url('civicrm/contact/view/membership',
156 "reset=1&action=renew&cid={$this->_contactID}&id={$this->_id}&context=membership"
157 ));
158 }
159 }
160
161 // when custom data is included in this page
162 if (!empty($_POST['hidden_custom'])) {
163 CRM_Custom_Form_CustomData::preProcess($this, NULL, $this->_memType, 1, 'Membership', $this->_id);
164 CRM_Custom_Form_CustomData::buildQuickForm($this);
165 CRM_Custom_Form_CustomData::setDefaultValues($this);
166 }
167
168 CRM_Utils_System::setTitle(ts('Renew Membership'));
169
170 parent::preProcess();
171 }
172
173 /**
174 * Set default values for the form.
175 * the default values are retrieved from the database
176 *
177 * @return array
178 * Default values.
179 */
180 public function setDefaultValues() {
181
182 $defaults = parent::setDefaultValues();
183
184 // set renewal_date and receive_date to today in correct input format (setDateDefaults uses today if no value passed)
185 $now = date('Y-m-d');
186 $defaults['renewal_date'] = $now;
187 $defaults['receive_date'] = $now . ' ' . date('H:i:s');
188
189 if ($defaults['id']) {
190 $defaults['record_contribution'] = CRM_Core_DAO::getFieldValue('CRM_Member_DAO_MembershipPayment',
191 $defaults['id'],
192 'contribution_id',
193 'membership_id'
194 );
195 }
196
197 $defaults['financial_type_id'] = CRM_Core_DAO::getFieldValue('CRM_Member_DAO_MembershipType', $this->_memType, 'financial_type_id');
198
199 //CRM-13420
200 if (empty($defaults['payment_instrument_id'])) {
201 $defaults['payment_instrument_id'] = key(CRM_Core_OptionGroup::values('payment_instrument', FALSE, FALSE, FALSE, 'AND is_default = 1'));
202 }
203
204 $defaults['total_amount'] = CRM_Utils_Money::format(CRM_Core_DAO::getFieldValue('CRM_Member_DAO_MembershipType',
205 $this->_memType,
206 'minimum_fee'
207 ), NULL, '%a');
208
209 $defaults['record_contribution'] = 0;
210 $defaults['num_terms'] = 1;
211 $defaults['send_receipt'] = 0;
212
213 //set Soft Credit Type to Gift by default
214 $scTypes = CRM_Core_OptionGroup::values("soft_credit_type");
215 $defaults['soft_credit_type_id'] = CRM_Utils_Array::value(ts('Gift'), array_flip($scTypes));
216
217 $renewalDate = CRM_Utils_Array::value('renewal_date', $defaults);
218 $this->assign('renewalDate', $renewalDate);
219 $this->assign('member_is_test', CRM_Utils_Array::value('member_is_test', $defaults));
220
221 if ($this->_mode) {
222 $defaults = $this->getBillingDefaults($defaults);
223 }
224 return $defaults;
225 }
226
227 /**
228 * Build the form object.
229 */
230 public function buildQuickForm() {
231
232 parent::buildQuickForm();
233
234 $defaults = parent::setDefaultValues();
235 $this->assign('customDataType', 'Membership');
236 $this->assign('customDataSubType', $this->_memType);
237 $this->assign('entityID', $this->_id);
238 $selOrgMemType[0][0] = $selMemTypeOrg[0] = ts('- select -');
239
240 $allMembershipInfo = [];
241
242 // CRM-21485
243 if (is_array($defaults['membership_type_id'])) {
244 $defaults['membership_type_id'] = $defaults['membership_type_id'][1];
245 }
246
247 //CRM-16950
248 $taxRate = $this->getTaxRateForFinancialType($this->allMembershipTypeDetails[$defaults['membership_type_id']]['financial_type_id']);
249
250 $contactField = $this->addEntityRef('contact_id', ts('Member'), ['create' => TRUE, 'api' => ['extra' => ['email']]], TRUE);
251 $contactField->freeze();
252
253 // auto renew options if enabled for the membership
254 $options = CRM_Core_SelectValues::memberAutoRenew();
255
256 foreach ($this->allMembershipTypeDetails as $key => $values) {
257 if (!empty($values['is_active'])) {
258 if ($this->_mode && empty($values['minimum_fee'])) {
259 continue;
260 }
261 else {
262 $memberOfContactId = CRM_Utils_Array::value('member_of_contact_id', $values);
263 if (empty($selMemTypeOrg[$memberOfContactId])) {
264 $selMemTypeOrg[$memberOfContactId] = CRM_Core_DAO::getFieldValue('CRM_Contact_DAO_Contact',
265 $memberOfContactId,
266 'display_name',
267 'id'
268 );
269
270 $selOrgMemType[$memberOfContactId][0] = ts('- select -');
271 }
272 if (empty($selOrgMemType[$memberOfContactId][$key])) {
273 $selOrgMemType[$memberOfContactId][$key] = CRM_Utils_Array::value('name', $values);
274 }
275 }
276
277 //CRM-16950
278 $taxAmount = NULL;
279 $totalAmount = CRM_Utils_Array::value('minimum_fee', $values);
280 // @todo - feels a bug - we use taxRate from the form default rather than from the specified type?!?
281 if ($this->getTaxRateForFinancialType($values['financial_type_id'])) {
282 $taxAmount = ($taxRate / 100) * CRM_Utils_Array::value('minimum_fee', $values);
283 $totalAmount = $totalAmount + $taxAmount;
284 }
285
286 // build membership info array, which is used to set the payment information block when
287 // membership type is selected.
288 $allMembershipInfo[$key] = [
289 'financial_type_id' => CRM_Utils_Array::value('financial_type_id', $values),
290 'total_amount' => CRM_Utils_Money::format($totalAmount, NULL, '%a'),
291 'total_amount_numeric' => $totalAmount,
292 'tax_message' => $taxAmount ? ts("Includes %1 amount of %2", [1 => $this->getSalesTaxTerm(), 2 => CRM_Utils_Money::format($taxAmount)]) : $taxAmount,
293 ];
294
295 if (!empty($values['auto_renew'])) {
296 $allMembershipInfo[$key]['auto_renew'] = $options[$values['auto_renew']];
297 }
298 }
299 }
300
301 $this->assign('allMembershipInfo', json_encode($allMembershipInfo));
302
303 if ($this->_memType) {
304 $this->assign('orgName', $selMemTypeOrg[$this->allMembershipTypeDetails[$this->_memType]['member_of_contact_id']]);
305 $this->assign('memType', $this->allMembershipTypeDetails[$this->_memType]['name']);
306 }
307
308 // force select of organization by default, if only one organization in
309 // the list
310 if (count($selMemTypeOrg) == 2) {
311 unset($selMemTypeOrg[0], $selOrgMemType[0][0]);
312 }
313 //sort membership organization and type, CRM-6099
314 natcasesort($selMemTypeOrg);
315 foreach ($selOrgMemType as $index => $orgMembershipType) {
316 natcasesort($orgMembershipType);
317 $selOrgMemType[$index] = $orgMembershipType;
318 }
319
320 $js = ['onChange' => "setPaymentBlock(); CRM.buildCustomData('Membership', this.value);"];
321 $sel = &$this->addElement('hierselect',
322 'membership_type_id',
323 ts('Renewal Membership Organization and Type'), $js
324 );
325
326 $sel->setOptions([$selMemTypeOrg, $selOrgMemType]);
327 $elements = [];
328 if ($sel) {
329 $elements[] = $sel;
330 }
331
332 $this->applyFilter('__ALL__', 'trim');
333
334 $this->add('datepicker', 'renewal_date', ts('Date Renewal Entered'), [], FALSE, ['time' => FALSE]);
335
336 $this->add('select', 'financial_type_id', ts('Financial Type'),
337 ['' => ts('- select -')] + CRM_Contribute_PseudoConstant::financialType()
338 );
339
340 $this->add('number', 'num_terms', ts('Extend Membership by'), ['onchange' => "setPaymentBlock();"], TRUE);
341 $this->addRule('num_terms', ts('Please enter a whole number for how many periods to renew.'), 'integer');
342
343 if (CRM_Core_Permission::access('CiviContribute') && !$this->_mode) {
344 $this->addElement('checkbox', 'record_contribution', ts('Record Renewal Payment?'), NULL, ['onclick' => "checkPayment();"]);
345
346 $this->add('text', 'total_amount', ts('Amount'));
347 $this->addRule('total_amount', ts('Please enter a valid amount.'), 'money');
348
349 $this->add('datepicker', 'receive_date', ts('Received'), [], FALSE, ['time' => TRUE]);
350
351 $this->add('select', 'payment_instrument_id', ts('Payment Method'),
352 ['' => ts('- select -')] + CRM_Contribute_PseudoConstant::paymentInstrument(),
353 FALSE, ['onChange' => "return showHideByValue('payment_instrument_id','4','checkNumber','table-row','select',false);"]
354 );
355
356 $this->add('text', 'trxn_id', ts('Transaction ID'));
357 $this->addRule('trxn_id', ts('Transaction ID already exists in Database.'),
358 'objectExists', ['CRM_Contribute_DAO_Contribution', $this->_id, 'trxn_id']
359 );
360
361 $this->add('select', 'contribution_status_id', ts('Payment Status'),
362 CRM_Contribute_BAO_Contribution_Utils::getContributionStatuses('membership')
363 );
364
365 $this->add('text', 'check_number', ts('Check Number'),
366 CRM_Core_DAO::getAttribute('CRM_Contribute_DAO_Contribution', 'check_number')
367 );
368 }
369 else {
370 $this->add('text', 'total_amount', ts('Amount'));
371 $this->addRule('total_amount', ts('Please enter a valid amount.'), 'money');
372 }
373 $this->addElement('checkbox', 'send_receipt', ts('Send Confirmation and Receipt?'), NULL,
374 ['onclick' => "showHideByValue( 'send_receipt', '', 'notice', 'table-row', 'radio', false ); showHideByValue( 'send_receipt', '', 'fromEmail', 'table-row', 'radio',false);"]
375 );
376
377 $this->add('select', 'from_email_address', ts('Receipt From'), $this->_fromEmails);
378
379 $this->add('textarea', 'receipt_text_renewal', ts('Renewal Message'));
380
381 // Retrieve the name and email of the contact - this will be the TO for receipt email
382 list($this->_contributorDisplayName,
383 $this->_contributorEmail
384 ) = CRM_Contact_BAO_Contact_Location::getEmailDetails($this->_contactID);
385 $this->assign('email', $this->_contributorEmail);
386 // The member form uses emailExists. Assigning both while we transition / synchronise.
387 $this->assign('emailExists', $this->_contributorEmail);
388
389 $mailingInfo = Civi::settings()->get('mailing_backend');
390 $this->assign('outBound_option', $mailingInfo['outBound_option']);
391
392 if (CRM_Core_DAO::getFieldValue('CRM_Member_DAO_Membership', $this->_id, 'contribution_recur_id')) {
393 if (CRM_Member_BAO_Membership::isCancelSubscriptionSupported($this->_id)) {
394 $this->assign('cancelAutoRenew',
395 CRM_Utils_System::url('civicrm/contribute/unsubscribe', "reset=1&mid={$this->_id}")
396 );
397 }
398 }
399 $this->addFormRule(['CRM_Member_Form_MembershipRenewal', 'formRule'], $this);
400 $this->addElement('checkbox', 'is_different_contribution_contact', ts('Record Payment from a Different Contact?'));
401 $this->addSelect('soft_credit_type_id', ['entity' => 'contribution_soft']);
402 $this->addEntityRef('soft_credit_contact_id', ts('Payment From'), ['create' => TRUE]);
403 }
404
405 /**
406 * Validation.
407 *
408 * @param array $params
409 * (ref.) an assoc array of name/value pairs.
410 * @param $files
411 * @param $self
412 *
413 * @return bool|array
414 * mixed true or array of errors
415 */
416 public static function formRule($params, $files, $self) {
417 $errors = [];
418 if ($params['membership_type_id'][0] == 0) {
419 $errors['membership_type_id'] = ts('Oops. It looks like you are trying to change the membership type while renewing the membership. Please click the "change membership type" link, and select a Membership Organization.');
420 }
421 if ($params['membership_type_id'][1] == 0) {
422 $errors['membership_type_id'] = ts('Oops. It looks like you are trying to change the membership type while renewing the membership. Please click the "change membership type" link and select a Membership Type from the list.');
423 }
424
425 // CRM-20571
426 // Get the Join Date from Membership info as it is not available in the Renewal form
427 $joinDate = CRM_Core_DAO::getFieldValue('CRM_Member_DAO_Membership', $self->_id, 'join_date');
428
429 // CRM-20571: Check if the renewal date is not before Join Date, if it is then add to 'errors' array
430 // The fields in Renewal form come into this routine in $params array. 'renewal_date' is in the form
431 // We process both the dates before comparison using CRM utils so that they are in same date format
432 if (isset($params['renewal_date'])) {
433 if ($params['renewal_date'] < $joinDate) {
434 $errors['renewal_date'] = ts('Renewal date must be the same or later than Member since (Join Date).');
435 }
436 }
437
438 //total amount condition arise when membership type having no
439 //minimum fee
440 if (isset($params['record_contribution'])) {
441 if (!$params['financial_type_id']) {
442 $errors['financial_type_id'] = ts('Please select a Financial Type.');
443 }
444 if (!$params['total_amount']) {
445 $errors['total_amount'] = ts('Please enter a Contribution Amount.');
446 }
447 if (empty($params['payment_instrument_id'])) {
448 $errors['payment_instrument_id'] = ts('Payment Method is a required field.');
449 }
450 }
451 return empty($errors) ? TRUE : $errors;
452 }
453
454 /**
455 * Process the renewal form.
456 */
457 public function postProcess() {
458 // get the submitted form values.
459 $this->_params = $this->controller->exportValues($this->_name);
460 $this->assignBillingName();
461
462 try {
463 $this->submit();
464 $this->setRenewalMessage();
465 }
466 catch (\Civi\Payment\Exception\PaymentProcessorException $e) {
467 CRM_Core_Session::singleton()->setStatus($e->getMessage());
468 CRM_Utils_System::redirect(CRM_Utils_System::url('civicrm/contact/view/membership',
469 "reset=1&action=renew&cid={$this->_contactID}&id={$this->_id}&context=membership&mode={$this->_mode}"
470 ));
471 }
472 }
473
474 /**
475 * Process form submission.
476 *
477 * This function is also accessed by a unit test.
478 *
479 * @throws \CRM_Core_Exception
480 */
481 protected function submit() {
482 $this->storeContactFields($this->_params);
483 $this->beginPostProcess();
484 $now = CRM_Utils_Date::getToday(NULL, 'YmdHis');
485 $this->assign('receive_date', CRM_Utils_Array::value('receive_date', $this->_params, date('Y-m-d H:i:s')));
486 $this->processBillingAddress();
487 list($userName) = CRM_Contact_BAO_Contact_Location::getEmailDetails(CRM_Core_Session::singleton()->get('userID'));
488 $this->_params['total_amount'] = CRM_Utils_Array::value('total_amount', $this->_params,
489 CRM_Core_DAO::getFieldValue('CRM_Member_DAO_MembershipType', $this->_memType, 'minimum_fee')
490 );
491 $this->_membershipId = $this->_id;
492 $customFieldsFormatted = CRM_Core_BAO_CustomField::postProcess($this->_params,
493 $this->_id,
494 'Membership'
495 );
496 if (empty($this->_params['financial_type_id'])) {
497 $this->_params['financial_type_id'] = CRM_Core_DAO::getFieldValue('CRM_Member_DAO_MembershipType', $this->_memType, 'financial_type_id');
498 }
499 $contributionRecurID = NULL;
500 $this->assign('membershipID', $this->_id);
501 $this->assign('contactID', $this->_contactID);
502 $this->assign('module', 'Membership');
503 $this->assign('receiptType', 'membership renewal');
504 $this->_params['currencyID'] = CRM_Core_Config::singleton()->defaultCurrency;
505 $this->_params['invoice_id'] = $this->_params['invoiceID'] = md5(uniqid(rand(), TRUE));
506
507 if (!empty($this->_params['send_receipt'])) {
508 $this->_params['receipt_date'] = $now;
509 $this->assign('receipt_date', CRM_Utils_Date::mysqlToIso($this->_params['receipt_date']));
510 }
511 else {
512 $this->_params['receipt_date'] = NULL;
513 }
514
515 if ($this->_mode) {
516 $this->_params['register_date'] = $now;
517 $this->_params['description'] = ts("Contribution submitted by a staff person using member's credit card for renewal");
518 $this->_params['amount'] = $this->_params['total_amount'];
519 $this->_params['payment_instrument_id'] = $this->_paymentProcessor['payment_instrument_id'];
520 $this->_params['receive_date'] = $now;
521
522 // at this point we've created a contact and stored its address etc
523 // all the payment processors expect the name and address to be in the passed params
524 // so we copy stuff over to first_name etc.
525 $paymentParams = $this->_params;
526 if (!empty($this->_params['send_receipt'])) {
527 $paymentParams['email'] = $this->_contributorEmail;
528 }
529 $paymentParams['is_email_receipt'] = !empty($this->_params['send_receipt']);
530
531 $paymentParams['contactID'] = $this->_contributorContactID;
532
533 CRM_Core_Payment_Form::mapParams($this->_bltID, $this->_params, $paymentParams, TRUE);
534
535 $payment = $this->_paymentProcessor['object'];
536
537 if (!empty($this->_params['auto_renew'])) {
538 $contributionRecurParams = $this->processRecurringContribution($paymentParams);
539 $contributionRecurID = $contributionRecurParams['contributionRecurID'];
540 $paymentParams = array_merge($paymentParams, $contributionRecurParams);
541 }
542
543 $result = $payment->doPayment($paymentParams);
544 $this->_params = array_merge($this->_params, $result);
545
546 $this->_params['contribution_status_id'] = $result['payment_status_id'];
547 $this->_params['trxn_id'] = $result['trxn_id'];
548 $this->_params['is_test'] = ($this->_mode == 'live') ? 0 : 1;
549 $this->set('params', $this->_params);
550 $this->assign('trxn_id', $result['trxn_id']);
551 }
552
553 $renewalDate = !empty($this->_params['renewal_date']) ? $renewalDate = $this->_params['renewal_date'] : NULL;
554
555 // check for test membership.
556 $isTestMembership = CRM_Core_DAO::getFieldValue('CRM_Member_DAO_Membership', $this->_membershipId, 'is_test');
557
558 // chk for renewal for multiple terms CRM-8750
559 $numRenewTerms = 1;
560 if (is_numeric(CRM_Utils_Array::value('num_terms', $this->_params))) {
561 $numRenewTerms = $this->_params['num_terms'];
562 }
563
564 //if contribution status is pending then set pay later
565 $this->_params['is_pay_later'] = FALSE;
566 if ($this->_params['contribution_status_id'] == array_search('Pending', CRM_Contribute_PseudoConstant::contributionStatus(NULL, 'label'))) {
567 $this->_params['is_pay_later'] = 1;
568 }
569
570 // These variable sets prior to membership may not be required for this form. They were in
571 // a function this form shared with other forms.
572 $membershipSource = NULL;
573 if (!empty($this->_params['membership_source'])) {
574 $membershipSource = $this->_params['membership_source'];
575 }
576
577 // @todo Move this into CRM_Member_BAO_Membership::processMembership
578 $pending = ($this->_params['contribution_status_id'] == CRM_Core_PseudoConstant::getKey('CRM_Contribute_BAO_Contribution', 'contribution_status_id', 'Pending'));
579 list($membership) = CRM_Member_BAO_Membership::processMembership(
580 $this->_contactID, $this->_params['membership_type_id'][1], $isTestMembership,
581 $renewalDate, NULL, $customFieldsFormatted, $numRenewTerms, $this->_membershipId,
582 $pending,
583 $contributionRecurID, $membershipSource, $this->_params['is_pay_later'], CRM_Utils_Array::value('campaign_id',
584 $this->_params)
585 );
586
587 $this->endDate = CRM_Utils_Date::processDate($membership->end_date);
588
589 $this->membershipTypeName = CRM_Core_DAO::getFieldValue('CRM_Member_DAO_MembershipType', $membership->membership_type_id,
590 'name');
591
592 if (!empty($this->_params['record_contribution']) || $this->_mode) {
593 // set the source
594 $this->_params['contribution_source'] = "{$this->membershipTypeName} Membership: Offline membership renewal (by {$userName})";
595
596 //create line items
597 $lineItem = [];
598 $this->_params = $this->setPriceSetParameters($this->_params);
599 CRM_Price_BAO_PriceSet::processAmount($this->_priceSet['fields'],
600 $this->_params, $lineItem[$this->_priceSetId], NULL, $this->_priceSetId
601 );
602 //CRM-11529 for quick config backoffice transactions
603 //when financial_type_id is passed in form, update the
604 //line items with the financial type selected in form
605 if ($submittedFinancialType = CRM_Utils_Array::value('financial_type_id', $this->_params)) {
606 foreach ($lineItem[$this->_priceSetId] as &$li) {
607 $li['financial_type_id'] = $submittedFinancialType;
608 }
609 }
610
611 if (!empty($lineItem)) {
612 $this->_params['lineItems'] = $lineItem;
613 $this->_params['processPriceSet'] = TRUE;
614 }
615
616 //assign contribution contact id to the field expected by recordMembershipContribution
617 if ($this->_contributorContactID != $this->_contactID) {
618 $this->_params['contribution_contact_id'] = $this->_contributorContactID;
619 if (!empty($this->_params['soft_credit_type_id'])) {
620 $this->_params['soft_credit'] = [
621 'soft_credit_type_id' => $this->_params['soft_credit_type_id'],
622 'contact_id' => $this->_contactID,
623 ];
624 }
625 }
626 $this->_params['contact_id'] = $this->_contactID;
627 //recordMembershipContribution receives params as a reference & adds one variable. This is
628 // not a great pattern & ideally it would not receive as a reference. We assign our params as a
629 // temporary variable to avoid e-notice & to make it clear to future refactorer that
630 // this function is NOT reliant on that var being set
631 $temporaryParams = array_merge($this->_params, [
632 'membership_id' => $membership->id,
633 'contribution_recur_id' => $contributionRecurID,
634 ]);
635 //Remove `tax_amount` if it is not calculated.
636 if (CRM_Utils_Array::value('tax_amount', $temporaryParams) === 0) {
637 unset($temporaryParams['tax_amount']);
638 }
639 CRM_Member_BAO_Membership::recordMembershipContribution($temporaryParams);
640 }
641
642 if (!empty($this->_params['send_receipt'])) {
643 $this->sendReceipt($membership);
644 }
645 }
646
647 /**
648 * Send a receipt.
649 *
650 * @param array $membership
651 *
652 * @throws \CRM_Core_Exception
653 */
654 protected function sendReceipt($membership) {
655 $receiptFrom = $this->_params['from_email_address'];
656
657 if (!empty($this->_params['payment_instrument_id'])) {
658 $paymentInstrument = CRM_Contribute_PseudoConstant::paymentInstrument();
659 $this->_params['paidBy'] = $paymentInstrument[$this->_params['payment_instrument_id']];
660 }
661 //get the group Tree
662 $this->_groupTree = CRM_Core_BAO_CustomGroup::getTree('Membership', NULL, $this->_id, FALSE, $this->_memType);
663
664 // retrieve custom data
665 $customFields = $customValues = $fo = [];
666 foreach ($this->_groupTree as $groupID => $group) {
667 if ($groupID == 'info') {
668 continue;
669 }
670 foreach ($group['fields'] as $k => $field) {
671 $field['title'] = $field['label'];
672 $customFields["custom_{$k}"] = $field;
673 }
674 }
675 $members = [['member_id', '=', $this->_membershipId, 0, 0]];
676 // check whether its a test drive
677 if ($this->_mode == 'test') {
678 $members[] = ['member_test', '=', 1, 0, 0];
679 }
680 CRM_Core_BAO_UFGroup::getValues($this->_contactID, $customFields, $customValues, FALSE, $members);
681
682 $this->assign_by_ref('formValues', $this->_params);
683 if (!empty($this->_params['contribution_id'])) {
684 $this->assign('contributionID', $this->_params['contribution_id']);
685 }
686
687 $this->assign('membership_name', CRM_Core_DAO::getFieldValue('CRM_Member_DAO_MembershipType',
688 $membership->membership_type_id
689 ));
690 $this->assign('customValues', $customValues);
691 $this->assign('mem_start_date', CRM_Utils_Date::customFormat($membership->start_date));
692 $this->assign('mem_end_date', CRM_Utils_Date::customFormat($membership->end_date));
693 if ($this->_mode) {
694 $this->assign('address', CRM_Utils_Address::getFormattedBillingAddressFieldsFromParameters(
695 $this->_params,
696 $this->_bltID
697 ));
698 $this->assign('contributeMode', 'direct');
699 $this->assign('isAmountzero', 0);
700 $this->assign('is_pay_later', 0);
701 $this->assign('isPrimary', 1);
702 $this->assign('receipt_text_renewal', $this->_params['receipt_text']);
703 if ($this->_mode == 'test') {
704 $this->assign('action', '1024');
705 }
706 }
707
708 list($this->isMailSent) = CRM_Core_BAO_MessageTemplate::sendTemplate(
709 [
710 'groupName' => 'msg_tpl_workflow_membership',
711 'valueName' => 'membership_offline_receipt',
712 'contactId' => $this->_receiptContactId,
713 'from' => $receiptFrom,
714 'toName' => $this->_contributorDisplayName,
715 'toEmail' => $this->_contributorEmail,
716 'isTest' => $this->_mode == 'test',
717 ]
718 );
719 }
720
721 }