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