Merge pull request #4892 from colemanw/INFRA-132
[civicrm-core.git] / CRM / Member / Form / MembershipRenewal.php
CommitLineData
6a488035
TO
1<?php
2/*
3 +--------------------------------------------------------------------+
39de6fd5 4 | CiviCRM version 4.6 |
6a488035 5 +--------------------------------------------------------------------+
06b69b18 6 | Copyright CiviCRM LLC (c) 2004-2014 |
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 +--------------------------------------------------------------------+
26*/
27
28/**
29 *
30 * @package CRM
06b69b18 31 * @copyright CiviCRM LLC (c) 2004-2014
6a488035
TO
32 * $Id$
33 *
34 */
35
36/**
37 * This class generates form components for Membership Renewal
38 *
39 */
40class CRM_Member_Form_MembershipRenewal extends CRM_Member_Form {
41 /*
42 * Display name of the member
43 */
b09fe5ed 44 protected $_memberDisplayName = NULL;
6a488035
TO
45 /*
46 * email of the person paying for the membership (used for receipts)
47 */
b09fe5ed 48 protected $_memberEmail = NULL;
6a488035
TO
49 /*
50 * Contact ID of the member
51 */
b09fe5ed 52 public $_contactID = NULL;
6a488035
TO
53 /*
54 * Display name of the person paying for the membership (used for receipts)
55 */
b09fe5ed
TO
56 protected $_contributorDisplayName = NULL;
57 /*
6a488035
TO
58 * email of the person paying for the membership (used for receipts)
59 */
b09fe5ed 60 protected $_contributorEmail = NULL;
6a488035
TO
61 /*
62 * email of the person paying for the membership (used for receipts)
63 */
b09fe5ed
TO
64 protected $_contributorContactID = NULL;
65 /*
6a488035
TO
66 * ID of the person the receipt is to go to
67 */
b09fe5ed 68 protected $_receiptContactId = NULL;
6a488035
TO
69 /*
70 * context would be set to standalone if the contact is use is being selected from
71 * the form rather than in the URL
72 */
dda27a57 73 public $_context;
6a488035 74
5d86176b 75 /**
76 * An array to hold a list of datefields on the form
77 * so that they can be converted to ISO in a consistent manner
78 *
79 * @var array
80 */
81 protected $_dateFields = array(
82 'receive_date' => array('default' => 'now'),
83 );
84
6a488035
TO
85 public function preProcess() {
86 //custom data related code
87 $this->_cdType = CRM_Utils_Array::value('type', $_GET);
88 $this->assign('cdType', FALSE);
89 if ($this->_cdType) {
90 $this->assign('cdType', TRUE);
91 return CRM_Custom_Form_CustomData::preProcess($this);
92 }
93
a6513ad5 94 parent::preProcess();
6a488035
TO
95 // check for edit permission
96 if (!CRM_Core_Permission::check('edit memberships')) {
0499b0ad 97 CRM_Core_Error::fatal(ts('You do not have permission to access this page.'));
6a488035 98 }
6a488035
TO
99
100 $this->assign('endDate', CRM_Utils_Date::customFormat(CRM_Core_DAO::getFieldValue('CRM_Member_DAO_Membership',
101 $this->_id, 'end_date'
102 )
103 ));
104 $this->assign('membershipStatus',
105 CRM_Core_DAO::getFieldValue('CRM_Member_DAO_MembershipStatus',
106 CRM_Core_DAO::getFieldValue('CRM_Member_DAO_Membership',
107 $this->_id, 'status_id'
108 ),
109 'name'
110 )
111 );
112
6a488035
TO
113 if ($this->_mode) {
114 $membershipFee = CRM_Core_DAO::getFieldValue('CRM_Member_DAO_MembershipType', $this->_memType, 'minimum_fee');
115 if (!$membershipFee) {
a6513ad5 116 $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
117 CRM_Core_Session::setStatus($statusMsg, '', 'info');
118 CRM_Utils_System::redirect(CRM_Utils_System::url('civicrm/contact/view/membership',
119 "reset=1&action=renew&cid={$this->_contactID}&id={$this->_id}&context=membership"
120 ));
121 }
6a488035
TO
122 }
123
124 // when custom data is included in this page
a7488080 125 if (!empty($_POST['hidden_custom'])) {
6a488035
TO
126 CRM_Custom_Form_CustomData::preProcess($this);
127 CRM_Custom_Form_CustomData::buildQuickForm($this);
128 CRM_Custom_Form_CustomData::setDefaultValues($this);
129 }
130
e2046b33
CW
131 CRM_Utils_System::setTitle(ts('Renew Membership'));
132
6a488035
TO
133 parent::preProcess();
134 }
135
136 /**
c490a46a 137 * Set default values for the form.
6a488035
TO
138 * the default values are retrieved from the database
139 *
6a488035 140 *
355ba699 141 * @return void
6a488035
TO
142 */
143 public function setDefaultValues() {
144 if ($this->_cdType) {
145 return CRM_Custom_Form_CustomData::setDefaultValues($this);
146 }
a6513ad5 147
6a488035
TO
148 $defaults = parent::setDefaultValues();
149 $this->_memType = $defaults['membership_type_id'];
150
151 // set renewal_date and receive_date to today in correct input format (setDateDefaults uses today if no value passed)
a9c72cdb 152 list($now, $currentTime) = CRM_Utils_Date::setDateDefaults();
6a488035
TO
153 $defaults['renewal_date'] = $now;
154 $defaults['receive_date'] = $now;
a9c72cdb 155 $defaults['receive_date_time'] = $currentTime;
6a488035
TO
156
157 if ($defaults['id']) {
158 $defaults['record_contribution'] = CRM_Core_DAO::getFieldValue('CRM_Member_DAO_MembershipPayment',
159 $defaults['id'],
160 'contribution_id',
161 'membership_id'
162 );
163 }
164
165 if (is_numeric($this->_memType)) {
166 $defaults['membership_type_id'] = array();
167 $defaults['membership_type_id'][0] = CRM_Core_DAO::getFieldValue('CRM_Member_DAO_MembershipType',
168 $this->_memType,
169 'member_of_contact_id',
170 'id'
171 );
172 $defaults['membership_type_id'][1] = $this->_memType;
173 }
174 else {
175 $defaults['membership_type_id'] = $this->_memType;
176 }
177
178 $defaults['financial_type_id'] = CRM_Core_DAO::getFieldValue('CRM_Member_DAO_MembershipType', $this->_memType, 'financial_type_id');
133e2c99 179
d96cf288 180 //CRM-13420
a7488080 181 if (empty($defaults['payment_instrument_id'])) {
d96cf288
DG
182 $defaults['payment_instrument_id'] = key(CRM_Core_OptionGroup::values('payment_instrument', FALSE, FALSE, FALSE, 'AND is_default = 1'));
183 }
6a488035
TO
184
185 $defaults['total_amount'] = CRM_Utils_Money::format(CRM_Core_DAO::getFieldValue('CRM_Member_DAO_MembershipType',
186 $this->_memType,
187 'minimum_fee'
188 ), NULL, '%a');
189
6a488035
TO
190 $defaults['record_contribution'] = 0;
191 $defaults['num_terms'] = 1;
192 $defaults['send_receipt'] = 0;
193
374a4dd6 194 //set Soft Credit Type to Gift by default
195 $scTypes = CRM_Core_OptionGroup::values("soft_credit_type");
196 $defaults['soft_credit_type_id'] = CRM_Utils_Array::value(ts('Gift'), array_flip($scTypes));
197
6a488035
TO
198 $renewalDate = CRM_Utils_Date::processDate(CRM_Utils_Array::value('renewal_date', $defaults),
199 NULL, NULL, 'Y-m-d'
200 );
201 $this->assign('renewalDate', $renewalDate);
202 $this->assign('member_is_test', CRM_Utils_Array::value('member_is_test', $defaults));
203
204 if ($this->_mode) {
205 $fields = array();
206
207 foreach ($this->_fields as $name => $dontCare) {
208 $fields[$name] = 1;
209 }
210
211 $names = array(
212 'first_name', 'middle_name', 'last_name', "street_address-{$this->_bltID}",
213 "city-{$this->_bltID}", "postal_code-{$this->_bltID}", "country_id-{$this->_bltID}",
214 "state_province_id-{$this->_bltID}",
215 );
216 foreach ($names as $name) {
217 $fields[$name] = 1;
218 }
219
220 $fields["state_province-{$this->_bltID}"] = 1;
221 $fields["country-{$this->_bltID}"] = 1;
222 $fields["email-{$this->_bltID}"] = 1;
223 $fields['email-Primary'] = 1;
224
225 CRM_Core_BAO_UFGroup::setProfileDefaults($this->_contactID, $fields, $this->_defaults);
226
227 // use primary email address if billing email address is empty
228 if (empty($this->_defaults["email-{$this->_bltID}"]) &&
229 !empty($this->_defaults['email-Primary'])
230 ) {
231 $defaults["email-{$this->_bltID}"] = $this->_defaults['email-Primary'];
232 }
233
234 foreach ($names as $name) {
235 if (!empty($this->_defaults[$name])) {
236 $defaults['billing_' . $name] = $this->_defaults[$name];
237 }
238 }
239 }
240
241 return $defaults;
242 }
243
244 /**
c490a46a 245 * Build the form object
6a488035 246 *
355ba699 247 * @return void
6a488035
TO
248 */
249 public function buildQuickForm() {
250 if ($this->_cdType) {
251 return CRM_Custom_Form_CustomData::buildQuickForm($this);
252 }
253
254 parent::buildQuickForm();
255
6a488035
TO
256 $defaults = parent::setDefaultValues();
257 $this->_memType = $defaults['membership_type_id'];
258 $this->assign('customDataType', 'Membership');
259 $this->assign('customDataSubType', $this->_memType);
260 $this->assign('entityID', $this->_id);
261 $selOrgMemType[0][0] = $selMemTypeOrg[0] = ts('- select -');
262
263 $allMemberships = CRM_Member_BAO_Membership::buildMembershipTypeValues($this);
264
265 $allMembershipInfo = $membershipType = array();
266
267 // auto renew options if enabled for the membership
dbd82592 268 $options = CRM_Core_SelectValues::memberAutoRenew();
6a488035 269
481a74f4 270 foreach ($allMemberships as $key => $values) {
a7488080 271 if (!empty($values['is_active'])) {
6a488035 272 $membershipType[$key] = CRM_Utils_Array::value('name', $values);
8cc574cf 273 if ($this->_mode && empty($values['minimum_fee'])) {
6a488035
TO
274 continue;
275 }
276 else {
277 $memberOfContactId = CRM_Utils_Array::value('member_of_contact_id', $values);
a7488080 278 if (empty($selMemTypeOrg[$memberOfContactId])) {
6a488035
TO
279 $selMemTypeOrg[$memberOfContactId] = CRM_Core_DAO::getFieldValue('CRM_Contact_DAO_Contact',
280 $memberOfContactId,
281 'display_name',
282 'id'
283 );
284
285 $selOrgMemType[$memberOfContactId][0] = ts('- select -');
286 }
a7488080 287 if (empty($selOrgMemType[$memberOfContactId][$key])) {
6a488035
TO
288 $selOrgMemType[$memberOfContactId][$key] = CRM_Utils_Array::value('name', $values);
289 }
290 }
291
292 // build membership info array, which is used to set the payment information block when
293 // membership type is selected.
294 $allMembershipInfo[$key] = array(
295 'financial_type_id' => CRM_Utils_Array::value('financial_type_id', $values),
296 'total_amount' => CRM_Utils_Money::format($values['minimum_fee'], NULL, '%a'),
21dfd5f5 297 'total_amount_numeric' => CRM_Utils_Array::value('minimum_fee', $values),
6a488035
TO
298 );
299
a7488080 300 if (!empty($values['auto_renew'])) {
6a488035 301 $allMembershipInfo[$key]['auto_renew'] = $options[$values['auto_renew']];
b09fe5ed 302 }
6a488035
TO
303 }
304 }
6a488035
TO
305
306 $this->assign('allMembershipInfo', json_encode($allMembershipInfo));
307
308 if ($this->_memType) {
309 $this->assign('orgName', $selMemTypeOrg[$allMemberships[$this->_memType]['member_of_contact_id']]);
310 $this->assign('memType', $allMemberships[$this->_memType]['name']);
311 }
312
313 // force select of organization by default, if only one organization in
314 // the list
315 if (count($selMemTypeOrg) == 2) {
316 unset($selMemTypeOrg[0], $selOrgMemType[0][0]);
317 }
318 //sort membership organization and type, CRM-6099
319 natcasesort($selMemTypeOrg);
320 foreach ($selOrgMemType as $index => $orgMembershipType) {
321 natcasesort($orgMembershipType);
322 $selOrgMemType[$index] = $orgMembershipType;
323 }
324
325 $js = array('onChange' => "setPaymentBlock( ); CRM.buildCustomData( 'Membership', this.value );");
326
327 //build the form for auto renew.
328 $recurProcessor = array();
329 if ($this->_mode || ($this->_action & CRM_Core_Action::UPDATE)) {
330 //get the valid recurring processors.
331 $recurring = CRM_Core_PseudoConstant::paymentProcessor(FALSE, FALSE, 'is_recur = 1');
332 $recurProcessor = array_intersect_assoc($this->_processors, $recurring);
333 if (!empty($recurProcessor)) {
334 $autoRenew = array();
335 if (!empty($membershipType)) {
336 $sql = '
03e04002 337SELECT id,
6a488035
TO
338 auto_renew,
339 duration_unit,
340 duration_interval
341 FROM civicrm_membership_type
342WHERE id IN ( ' . implode(' , ', array_keys($membershipType)) . ' )';
343 $recurMembershipTypes = CRM_Core_DAO::executeQuery($sql);
344 while ($recurMembershipTypes->fetch()) {
345 $autoRenew[$recurMembershipTypes->id] = $recurMembershipTypes->auto_renew;
346 foreach (array(
347 'id', 'auto_renew', 'duration_unit', 'duration_interval') as $fld) {
348 $this->_recurMembershipTypes[$recurMembershipTypes->id][$fld] = $recurMembershipTypes->$fld;
349 }
350 }
351 }
352 $js = array('onChange' => "setPaymentBlock(); CRM.buildCustomData( 'Membership', this.value );");
353 $this->assign('autoRenew', json_encode($autoRenew));
354 }
355 $autoRenewElement = $this->addElement('checkbox', 'auto_renew', ts('Membership renewed automatically'),
356 NULL, array('onclick' => "showHideByValue('auto_renew','','send-receipt','table-row','radio',true); showHideNotice( );")
357 );
358 if ($this->_action & CRM_Core_Action::UPDATE) {
359 $autoRenewElement->freeze();
360 }
361 }
362 $this->assign('recurProcessor', json_encode($recurProcessor));
363
364 $sel = &$this->addElement('hierselect',
365 'membership_type_id',
366 ts('Renewal Membership Organization and Type'), $js
367 );
368
369 $sel->setOptions(array($selMemTypeOrg, $selOrgMemType));
370 $elements = array();
371 if ($sel) {
372 $elements[] = $sel;
373 }
374
375 $this->applyFilter('__ALL__', 'trim');
376
377 $this->addDate('renewal_date', ts('Date Renewal Entered'), FALSE, array('formatType' => 'activityDate'));
378
03e04002 379 $this->add('select', 'financial_type_id', ts('Financial Type'),
6a488035
TO
380 array('' => ts('- select -')) + CRM_Contribute_PseudoConstant::financialType()
381 );
382 if (CRM_Core_Permission::access('CiviContribute') && !$this->_mode) {
383 $this->addElement('checkbox', 'record_contribution', ts('Record Renewal Payment?'), NULL, array('onclick' => "checkPayment();"));
384
385 $this->add('text', 'total_amount', ts('Amount'));
386 $this->addRule('total_amount', ts('Please enter a valid amount.'), 'money');
387
5d86176b 388 $this->addDate('receive_date', ts('Received'), FALSE, array('formatType' => 'activityDateTime'));
6a488035
TO
389
390 $this->add('text', 'num_terms', ts('Extend Membership by'), array('onchange' => "setPaymentBlock();"), TRUE);
391 $this->addRule('num_terms', ts('Please enter a whole number for how many periods to renew.'), 'integer');
392
393 $this->add('select', 'payment_instrument_id', ts('Paid By'),
394 array('' => ts('- select -')) + CRM_Contribute_PseudoConstant::paymentInstrument(),
395 FALSE, array('onChange' => "return showHideByValue('payment_instrument_id','4','checkNumber','table-row','select',false);")
396 );
397
398 $this->add('text', 'trxn_id', ts('Transaction ID'));
399 $this->addRule('trxn_id', ts('Transaction ID already exists in Database.'),
400 'objectExists', array('CRM_Contribute_DAO_Contribution', $this->_id, 'trxn_id')
401 );
402
403 $this->add('select', 'contribution_status_id', ts('Payment Status'),
404 CRM_Contribute_PseudoConstant::contributionStatus()
405 );
406
407 $this->add('text', 'check_number', ts('Check Number'),
408 CRM_Core_DAO::getAttribute('CRM_Contribute_DAO_Contribution', 'check_number')
409 );
410 }
411 else {
412 $this->add('text', 'total_amount', ts('Amount'));
413 $this->addRule('total_amount', ts('Please enter a valid amount.'), 'money');
414 }
415 $this->addElement('checkbox', 'send_receipt', ts('Send Confirmation and Receipt?'), NULL,
416 array('onclick' => "showHideByValue( 'send_receipt', '', 'notice', 'table-row', 'radio', false ); showHideByValue( 'send_receipt', '', 'fromEmail', 'table-row', 'radio',false);")
417 );
418
419 $this->add('select', 'from_email_address', ts('Receipt From'), $this->_fromEmails);
420
421 $this->add('textarea', 'receipt_text_renewal', ts('Renewal Message'));
422
6a488035
TO
423 // Retrieve the name and email of the contact - this will be the TO for receipt email
424 list($this->_contributorDisplayName,
425 $this->_contributorEmail
426 ) = CRM_Contact_BAO_Contact_Location::getEmailDetails($this->_contactID);
427 $this->assign('email', $this->_contributorEmail);
428
429 $mailingInfo = CRM_Core_BAO_Setting::getItem(CRM_Core_BAO_Setting::MAILING_PREFERENCES_NAME,
430 'mailing_backend'
431 );
432 $this->assign('outBound_option', $mailingInfo['outBound_option']);
433
434 if (CRM_Core_DAO::getFieldValue('CRM_Member_DAO_Membership', $this->_id, 'contribution_recur_id')) {
435 if (CRM_Member_BAO_Membership::isCancelSubscriptionSupported($this->_id)) {
436 $this->assign('cancelAutoRenew',
437 CRM_Utils_System::url('civicrm/contribute/unsubscribe', "reset=1&mid={$this->_id}")
438 );
439 }
440 }
441 $this->addFormRule(array('CRM_Member_Form_MembershipRenewal', 'formRule'));
442 if ($this->_context != 'standalone') {
443 //CRM-10223 - allow contribution to be recorded against different contact
444 // causes a conflict in standalone mode so skip in standalone for now
445 $this->addElement('checkbox', 'contribution_contact', ts('Record Payment from a Different Contact?'));
4c7aa1f7
CW
446 $this->addSelect('soft_credit_type_id', array('entity' => 'contribution_soft'));
447 $this->addEntityRef('soft_credit_contact_id', ts('Payment From'), array('create' => TRUE));
6a488035 448 }
b09fe5ed 449 }
6a488035
TO
450
451 /**
100fef9d 452 * Validation
6a488035 453 *
b2363ea8
TO
454 * @param array $params
455 * (ref.) an assoc array of name/value pairs.
6a488035
TO
456 *
457 * @return mixed true or array of errors
6a488035
TO
458 * @static
459 */
00be9182 460 public static function formRule($params) {
6a488035
TO
461 $errors = array();
462 if ($params['membership_type_id'][0] == 0) {
463 $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.');
464 }
465 if ($params['membership_type_id'][1] == 0) {
466 $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.');
467 }
468
469 //total amount condition arise when membership type having no
470 //minimum fee
471 if (isset($params['record_contribution'])) {
472 if (!$params['financial_type_id']) {
473 $errors['financial_type_id'] = ts('Please select a Financial Type.');
474 }
475 if (!$params['total_amount']) {
476 $errors['total_amount'] = ts('Please enter a Contribution Amount.');
477 }
a7488080 478 if (empty($params['payment_instrument_id'])) {
d96cf288
DG
479 $errors['payment_instrument_id'] = ts('Paid By is a required field.');
480 }
6a488035
TO
481 }
482 return empty($errors) ? TRUE : $errors;
483 }
484
485 /**
100fef9d 486 * Process the renewal form
6a488035 487 *
6a488035 488 *
355ba699 489 * @return void
6a488035
TO
490 */
491 public function postProcess() {
492
493 $ids = array();
494 $config = CRM_Core_Config::singleton();
495
496 // get the submitted form values.
497 $this->_params = $formValues = $this->controller->exportValues($this->_name);
498
499 $this->storeContactFields($formValues);
500 // use values from screen
501
502 if ($formValues['membership_type_id'][1] <> 0) {
503 $defaults['receipt_text_renewal'] = CRM_Core_DAO::getFieldValue('CRM_Member_DAO_MembershipType',
504 $formValues['membership_type_id'][1],
505 'receipt_text_renewal'
506 );
507 }
508
481a74f4 509 $now = CRM_Utils_Date::getToday(NULL, 'YmdHis');
5d86176b 510 $this->convertDateFieldsToMySQL($formValues);
6a488035
TO
511 $this->assign('receive_date', $formValues['receive_date']);
512
a7488080 513 if (!empty($this->_params['send_receipt'])) {
6a488035
TO
514 $formValues['receipt_date'] = $now;
515 $this->assign('receipt_date', CRM_Utils_Date::mysqlToIso($formValues['receipt_date']));
516 }
517 else {
518 $formValues['receipt_date'] = NULL;
519 }
520
521 if ($this->_mode) {
522 $formValues['total_amount'] = CRM_Utils_Array::value('total_amount', $this->_params, CRM_Core_DAO::getFieldValue('CRM_Member_DAO_MembershipType',
523 $this->_memType, 'minimum_fee'
524 ));
a7488080 525 if (empty($formValues['financial_type_id'])) {
b09fe5ed 526 $formValues['financial_type_id'] = CRM_Core_DAO::getFieldValue('CRM_Member_DAO_MembershipType', $this->_memType, 'financial_type_id');
6a488035
TO
527 }
528
529 $this->_paymentProcessor = CRM_Financial_BAO_PaymentProcessor::getPayment($formValues['payment_processor_id'],
530 $this->_mode
531 );
03e04002 532
6a488035
TO
533 $fields = array();
534
535 // set email for primary location.
536 $fields['email-Primary'] = 1;
537 $formValues['email-5'] = $formValues['email-Primary'] = $this->_contributorEmail;
538 $formValues['register_date'] = $now;
539
540 // now set the values for the billing location.
541 foreach ($this->_fields as $name => $dontCare) {
542 $fields[$name] = 1;
543 }
544
545 // also add location name to the array
546 $formValues["address_name-{$this->_bltID}"] = CRM_Utils_Array::value('billing_first_name', $formValues) . ' ' . CRM_Utils_Array::value('billing_middle_name', $formValues) . ' ' . CRM_Utils_Array::value('billing_last_name', $formValues);
547
548 $formValues["address_name-{$this->_bltID}"] = trim($formValues["address_name-{$this->_bltID}"]);
549
550 $fields["address_name-{$this->_bltID}"] = 1;
551
552 $fields["email-{$this->_bltID}"] = 1;
553
554 $ctype = CRM_Core_DAO::getFieldValue('CRM_Contact_DAO_Contact', $this->_contactID, 'contact_type');
555
556 $nameFields = array('first_name', 'middle_name', 'last_name');
557
558 foreach ($nameFields as $name) {
559 $fields[$name] = 1;
560 if (array_key_exists("billing_$name", $formValues)) {
561 $formValues[$name] = $formValues["billing_{$name}"];
562 $formValues['preserveDBName'] = TRUE;
563 }
564 }
565
566 //here we are setting up the billing contact - if different from the member they are already created
567 // but they will get billing details assigned
568 CRM_Contact_BAO_Contact::createProfileContact($formValues, $fields,
569 $this->_contributorContactID, NULL, NULL, $ctype
570 );
571
572 // add all the additional payment params we need
573 $this->_params["state_province-{$this->_bltID}"] = $this->_params["billing_state_province-{$this->_bltID}"] = CRM_Core_PseudoConstant::stateProvinceAbbreviation($this->_params["billing_state_province_id-{$this->_bltID}"]);
574 $this->_params["country-{$this->_bltID}"] = $this->_params["billing_country-{$this->_bltID}"] = CRM_Core_PseudoConstant::countryIsoCode($this->_params["billing_country_id-{$this->_bltID}"]);
575
576 $this->_params['year'] = CRM_Core_Payment_Form::getCreditCardExpirationYear($this->_params);
577 $this->_params['month'] = CRM_Core_Payment_Form::getCreditCardExpirationMonth($this->_params);
cafb3b7b 578 $this->_params['description'] = ts('Office Credit Card Membership Renewal Contribution');
6a488035
TO
579 $this->_params['ip_address'] = CRM_Utils_System::ipAddress();
580 $this->_params['amount'] = $formValues['total_amount'];
581 $this->_params['currencyID'] = $config->defaultCurrency;
582 $this->_params['payment_action'] = 'Sale';
583 $this->_params['invoiceID'] = md5(uniqid(rand(), TRUE));
584
585 // at this point we've created a contact and stored its address etc
586 // all the payment processors expect the name and address to be in the passed params
587 // so we copy stuff over to first_name etc.
588 $paymentParams = $this->_params;
a7488080 589 if (!empty($this->_params['send_receipt'])) {
6a488035
TO
590 $paymentParams['email'] = $this->_contributorEmail;
591 }
592
593 $paymentParams['contactID'] = $this->_contributorContactID;
6a488035
TO
594
595 CRM_Core_Payment_Form::mapParams($this->_bltID, $this->_params, $paymentParams, TRUE);
596
597 $payment = CRM_Core_Payment::singleton($this->_mode, $this->_paymentProcessor, $this);
598
599 $result = &$payment->doDirectPayment($paymentParams);
600
601 if (is_a($result, 'CRM_Core_Error')) {
602 CRM_Core_Error::displaySessionError($result);
603 CRM_Utils_System::redirect(CRM_Utils_System::url('civicrm/contact/view/membership',
604 "reset=1&action=renew&cid={$this->_contactID}&id={$this->_id}&context=membership&mode={$this->_mode}"
605 ));
606 }
607
608 if ($result) {
609 $this->_params = array_merge($this->_params, $result);
610 }
611 $formValues['contribution_status_id'] = 1;
612 $formValues['invoice_id'] = $this->_params['invoiceID'];
613 $formValues['trxn_id'] = $result['trxn_id'];
614 $formValues['payment_instrument_id'] = 1;
615 $formValues['is_test'] = ($this->_mode == 'live') ? 0 : 1;
616 $this->set('params', $this->_params);
617 $this->assign('trxn_id', $result['trxn_id']);
618 }
619
620 $renewalDate = NULL;
621
622 if ($formValues['renewal_date']) {
623 $this->set('renewalDate', CRM_Utils_Date::processDate($formValues['renewal_date']));
624 }
625 $this->_membershipId = $this->_id;
626
627 // membership type custom data
628 $customFields = CRM_Core_BAO_CustomField::getFields('Membership', FALSE, FALSE,
629 $formValues['membership_type_id'][1]
630 );
631
632 $customFields = CRM_Utils_Array::crmArrayMerge($customFields,
633 CRM_Core_BAO_CustomField::getFields('Membership',
634 FALSE, FALSE,
635 NULL, NULL, TRUE
636 )
637 );
638
639 $customFieldsFormatted = CRM_Core_BAO_CustomField::postProcess($formValues,
640 $customFields,
641 $this->_id,
642 'Membership'
643 );
644
645 // check for test membership.
646 $isTestMembership = CRM_Core_DAO::getFieldValue('CRM_Member_DAO_Membership', $this->_membershipId, 'is_test');
647
648 // chk for renewal for multiple terms CRM-8750
649 $numRenewTerms = 1;
650 if (is_numeric(CRM_Utils_Array::value('num_terms', $formValues))) {
651 $numRenewTerms = $formValues['num_terms'];
652 }
653
654 //if contribution status is pending then set pay later
655 if ($formValues['contribution_status_id'] == array_search('Pending', CRM_Contribute_PseudoConstant::contributionStatus())) {
656 $this->_params['is_pay_later'] = 1;
657 }
c98997b9 658 $renewMembership = CRM_Member_BAO_Membership::renewMembershipFormWrapper($this->_contactID,
6a488035
TO
659 $formValues['membership_type_id'][1],
660 $isTestMembership, $this, NULL, NULL,
c98997b9
EM
661 $customFieldsFormatted, $numRenewTerms,
662 $this->_membershipId
6a488035
TO
663 );
664
665 $endDate = CRM_Utils_Date::processDate($renewMembership->end_date);
666
667 // Retrieve the name and email of the current user - this will be the FROM for the receipt email
668 $session = CRM_Core_Session::singleton();
669 $userID = $session->get('userID');
670
671 list($userName, $userEmail) = CRM_Contact_BAO_Contact_Location::getEmailDetails($userID);
672
673 $memType = CRM_Core_DAO::getFieldValue('CRM_Member_DAO_MembershipType', $renewMembership->membership_type_id, 'name');
674
a7488080 675 if (!empty($formValues['record_contribution']) || $this->_mode) {
6a488035
TO
676 // set the source
677 $formValues['contribution_source'] = "{$memType} Membership: Offline membership renewal (by {$userName})";
03e04002 678
6a488035
TO
679 //create line items
680 $lineItem = array();
b09fe5ed 681 $priceSetId = NULL;
6a488035 682 CRM_Member_BAO_Membership::createLineItems($this, $formValues['membership_type_id'], $priceSetId);
9da8dc8c 683 CRM_Price_BAO_PriceSet::processAmount($this->_priceSet['fields'],
6a488035
TO
684 $this->_params, $lineItem[$priceSetId]
685 );
03e04002 686 //CRM-11529 for quick config backoffice transactions
687 //when financial_type_id is passed in form, update the
1f676e92 688 //line items with the financial type selected in form
6a488035
TO
689 if ($submittedFinancialType = CRM_Utils_Array::value('financial_type_id', $formValues)) {
690 foreach ($lineItem[$priceSetId] as &$li) {
691 $li['financial_type_id'] = $submittedFinancialType;
692 }
693 }
694 $formValues['total_amount'] = CRM_Utils_Array::value('amount', $this->_params);
695 if (!empty($lineItem)) {
696 $formValues['lineItems'] = $lineItem;
697 $formValues['processPriceSet'] = TRUE;
698 }
699
700 //assign contribution contact id to the field expected by recordMembershipContribution
9b873358 701 if ($this->_contributorContactID != $this->_contactID) {
91ef9be0 702 $formValues['contribution_contact_id'] = $this->_contributorContactID;
9b873358 703 if (!empty($this->_params['soft_credit_type_id'])) {
d80dbc14 704 $formValues['soft_credit'] = array(
133e2c99 705 'soft_credit_type_id' => $this->_params['soft_credit_type_id'],
91ef9be0 706 'contact_id' => $this->_contactID,
133e2c99 707 );
6a488035
TO
708 }
709 }
710 $formValues['contact_id'] = $this->_contactID;
1acc24d5
EM
711 //recordMembershipContribution receives params as a reference & adds one variable. This is
712 // not a great pattern & ideally it would not receive as a reference. We assign our params as a
713 // temporary variable to avoid e-notice & to make it clear to future refactorer that
714 // this function is NOT reliant on that var being set
715 $temporaryParams = array_merge($formValues, array('membership_id' => $renewMembership->id));
716 CRM_Member_BAO_Membership::recordMembershipContribution($temporaryParams);
6a488035
TO
717 }
718
6a488035 719 $receiptSend = FALSE;
a7488080 720 if (!empty($formValues['send_receipt'])) {
6a488035
TO
721 $receiptSend = TRUE;
722
723 $receiptFrom = $formValues['from_email_address'];
724
a7488080 725 if (!empty($formValues['payment_instrument_id'])) {
6a488035
TO
726 $paymentInstrument = CRM_Contribute_PseudoConstant::paymentInstrument();
727 $formValues['paidBy'] = $paymentInstrument[$formValues['payment_instrument_id']];
728 }
729 //get the group Tree
730 $this->_groupTree = CRM_Core_BAO_CustomGroup::getTree('Membership', $this, $this->_id, FALSE, $this->_memType);
731
732 // retrieve custom data
733 $customFields = $customValues = $fo = array();
734 foreach ($this->_groupTree as $groupID => $group) {
735 if ($groupID == 'info') {
736 continue;
737 }
738 foreach ($group['fields'] as $k => $field) {
739 $field['title'] = $field['label'];
740 $customFields["custom_{$k}"] = $field;
741 }
742 }
743 $members = array(array('member_id', '=', $this->_membershipId, 0, 0));
744 // check whether its a test drive
745 if ($this->_mode == 'test') {
746 $members[] = array('member_test', '=', 1, 0, 0);
747 }
748 CRM_Core_BAO_UFGroup::getValues($this->_contactID, $customFields, $customValues, FALSE, $members);
749
750 $this->assign_by_ref('formValues', $formValues);
a7488080 751 if (!empty($formValues['contribution_id'])) {
6a488035
TO
752 $this->assign('contributionID', $formValues['contribution_id']);
753 }
754 $this->assign('membershipID', $this->_id);
755 $this->assign('contactID', $this->_contactID);
756 $this->assign('module', 'Membership');
757 $this->assign('receiptType', 'membership renewal');
758 $this->assign('mem_start_date', CRM_Utils_Date::customFormat($renewMembership->start_date));
759 $this->assign('mem_end_date', CRM_Utils_Date::customFormat($renewMembership->end_date));
760 $this->assign('membership_name', CRM_Core_DAO::getFieldValue('CRM_Member_DAO_MembershipType',
761 $renewMembership->membership_type_id
762 ));
763 $this->assign('customValues', $customValues);
764 if ($this->_mode) {
a7488080 765 if (!empty($this->_params['billing_first_name'])) {
6a488035
TO
766 $name = $this->_params['billing_first_name'];
767 }
768
a7488080 769 if (!empty($this->_params['billing_middle_name'])) {
6a488035
TO
770 $name .= " {$this->_params['billing_middle_name']}";
771 }
772
a7488080 773 if (!empty($this->_params['billing_last_name'])) {
6a488035
TO
774 $name .= " {$this->_params['billing_last_name']}";
775 }
776 $this->assign('billingName', $name);
777
778 // assign the address formatted up for display
779 $addressParts = array(
780 "street_address-{$this->_bltID}",
781 "city-{$this->_bltID}",
782 "postal_code-{$this->_bltID}",
783 "state_province-{$this->_bltID}",
784 "country-{$this->_bltID}",
785 );
786 $addressFields = array();
787 foreach ($addressParts as $part) {
788 list($n, $id) = explode('-', $part);
789 if (isset($this->_params['billing_' . $part])) {
790 $addressFields[$n] = $this->_params['billing_' . $part];
791 }
792 }
793 $this->assign('address', CRM_Utils_Address::format($addressFields));
794 $date = CRM_Utils_Date::format($this->_params['credit_card_exp_date']);
795 $date = CRM_Utils_Date::mysqlToIso($date);
796 $this->assign('credit_card_exp_date', $date);
797 $this->assign('credit_card_number',
798 CRM_Utils_System::mungeCreditCard($this->_params['credit_card_number'])
799 );
800 $this->assign('credit_card_type', $this->_params['credit_card_type']);
801 $this->assign('contributeMode', 'direct');
802 $this->assign('isAmountzero', 0);
803 $this->assign('is_pay_later', 0);
804 $this->assign('isPrimary', 1);
805 if ($this->_mode == 'test') {
806 $this->assign('action', '1024');
807 }
808 }
809
c6327d7d 810 list($mailSend, $subject, $message, $html) = CRM_Core_BAO_MessageTemplate::sendTemplate(
6a488035
TO
811 array(
812 'groupName' => 'msg_tpl_workflow_membership',
813 'valueName' => 'membership_offline_receipt',
814 'contactId' => $this->_receiptContactId,
815 'from' => $receiptFrom,
816 'toName' => $this->_contributorDisplayName,
817 'toEmail' => $this->_contributorEmail,
818 'isTest' => $this->_mode == 'test',
819 )
820 );
821 }
822
823 $statusMsg = ts('%1 membership for %2 has been renewed.', array(1 => $memType, 2 => $this->_memberDisplayName));
824
825 if ($endDate) {
b09fe5ed 826 $statusMsg .= ' ' . ts('The new membership End Date is %1.', array(1 => CRM_Utils_Date::customFormat(substr($endDate, 0, 8))));
6a488035
TO
827 }
828
829 if ($receiptSend && $mailSend) {
830 $statusMsg .= ' ' . ts('A renewal confirmation and receipt has been sent to %1.', array(1 => $this->_contributorEmail));
831 }
832
833 CRM_Core_Session::setStatus($statusMsg, ts('Complete'), 'success');
834 }
835}