INFRA-132 - CRM/Mailing - Convert single-line @param to multi-line
[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 */
44 protected $_memberDisplayName = null;
45 /*
46 * email of the person paying for the membership (used for receipts)
47 */
48 protected $_memberEmail = null;
49 /*
50 * Contact ID of the member
51 */
dda27a57 52 public $_contactID = null;
6a488035
TO
53 /*
54 * Display name of the person paying for the membership (used for receipts)
55 */
56 protected $_contributorDisplayName = null;
57 /*
58 * email of the person paying for the membership (used for receipts)
59 */
60 protected $_contributorEmail = null;
61 /*
62 * email of the person paying for the membership (used for receipts)
63 */
64 protected $_contributorContactID = null;
65 /*
66 * ID of the person the receipt is to go to
67 */
68 protected $_receiptContactId = null;
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
190
191 $defaults['record_contribution'] = 0;
192 $defaults['num_terms'] = 1;
193 $defaults['send_receipt'] = 0;
194
374a4dd6 195 //set Soft Credit Type to Gift by default
196 $scTypes = CRM_Core_OptionGroup::values("soft_credit_type");
197 $defaults['soft_credit_type_id'] = CRM_Utils_Array::value(ts('Gift'), array_flip($scTypes));
198
6a488035
TO
199 $renewalDate = CRM_Utils_Date::processDate(CRM_Utils_Array::value('renewal_date', $defaults),
200 NULL, NULL, 'Y-m-d'
201 );
202 $this->assign('renewalDate', $renewalDate);
203 $this->assign('member_is_test', CRM_Utils_Array::value('member_is_test', $defaults));
204
205 if ($this->_mode) {
206 $fields = array();
207
208 foreach ($this->_fields as $name => $dontCare) {
209 $fields[$name] = 1;
210 }
211
212 $names = array(
213 'first_name', 'middle_name', 'last_name', "street_address-{$this->_bltID}",
214 "city-{$this->_bltID}", "postal_code-{$this->_bltID}", "country_id-{$this->_bltID}",
215 "state_province_id-{$this->_bltID}",
216 );
217 foreach ($names as $name) {
218 $fields[$name] = 1;
219 }
220
221 $fields["state_province-{$this->_bltID}"] = 1;
222 $fields["country-{$this->_bltID}"] = 1;
223 $fields["email-{$this->_bltID}"] = 1;
224 $fields['email-Primary'] = 1;
225
226 CRM_Core_BAO_UFGroup::setProfileDefaults($this->_contactID, $fields, $this->_defaults);
227
228 // use primary email address if billing email address is empty
229 if (empty($this->_defaults["email-{$this->_bltID}"]) &&
230 !empty($this->_defaults['email-Primary'])
231 ) {
232 $defaults["email-{$this->_bltID}"] = $this->_defaults['email-Primary'];
233 }
234
235 foreach ($names as $name) {
236 if (!empty($this->_defaults[$name])) {
237 $defaults['billing_' . $name] = $this->_defaults[$name];
238 }
239 }
240 }
241
242 return $defaults;
243 }
244
245 /**
c490a46a 246 * Build the form object
6a488035 247 *
355ba699 248 * @return void
6a488035
TO
249 */
250 public function buildQuickForm() {
251 if ($this->_cdType) {
252 return CRM_Custom_Form_CustomData::buildQuickForm($this);
253 }
254
255 parent::buildQuickForm();
256
6a488035
TO
257 $defaults = parent::setDefaultValues();
258 $this->_memType = $defaults['membership_type_id'];
259 $this->assign('customDataType', 'Membership');
260 $this->assign('customDataSubType', $this->_memType);
261 $this->assign('entityID', $this->_id);
262 $selOrgMemType[0][0] = $selMemTypeOrg[0] = ts('- select -');
263
264 $allMemberships = CRM_Member_BAO_Membership::buildMembershipTypeValues($this);
265
266 $allMembershipInfo = $membershipType = array();
267
268 // auto renew options if enabled for the membership
dbd82592 269 $options = CRM_Core_SelectValues::memberAutoRenew();
6a488035
TO
270
271 foreach( $allMemberships as $key => $values ) {
a7488080 272 if (!empty($values['is_active'])) {
6a488035 273 $membershipType[$key] = CRM_Utils_Array::value('name', $values);
8cc574cf 274 if ($this->_mode && empty($values['minimum_fee'])) {
6a488035
TO
275 continue;
276 }
277 else {
278 $memberOfContactId = CRM_Utils_Array::value('member_of_contact_id', $values);
a7488080 279 if (empty($selMemTypeOrg[$memberOfContactId])) {
6a488035
TO
280 $selMemTypeOrg[$memberOfContactId] = CRM_Core_DAO::getFieldValue('CRM_Contact_DAO_Contact',
281 $memberOfContactId,
282 'display_name',
283 'id'
284 );
285
286 $selOrgMemType[$memberOfContactId][0] = ts('- select -');
287 }
a7488080 288 if (empty($selOrgMemType[$memberOfContactId][$key])) {
6a488035
TO
289 $selOrgMemType[$memberOfContactId][$key] = CRM_Utils_Array::value('name', $values);
290 }
291 }
292
293 // build membership info array, which is used to set the payment information block when
294 // membership type is selected.
295 $allMembershipInfo[$key] = array(
296 'financial_type_id' => CRM_Utils_Array::value('financial_type_id', $values),
297 'total_amount' => CRM_Utils_Money::format($values['minimum_fee'], NULL, '%a'),
298 'total_amount_numeric' => CRM_Utils_Array::value('minimum_fee', $values)
299 );
300
a7488080 301 if (!empty($values['auto_renew'])) {
6a488035
TO
302 $allMembershipInfo[$key]['auto_renew'] = $options[$values['auto_renew']];
303 }
304 }
305 }
306
307 $this->assign('allMembershipInfo', json_encode($allMembershipInfo));
308
309 if ($this->_memType) {
310 $this->assign('orgName', $selMemTypeOrg[$allMemberships[$this->_memType]['member_of_contact_id']]);
311 $this->assign('memType', $allMemberships[$this->_memType]['name']);
312 }
313
314 // force select of organization by default, if only one organization in
315 // the list
316 if (count($selMemTypeOrg) == 2) {
317 unset($selMemTypeOrg[0], $selOrgMemType[0][0]);
318 }
319 //sort membership organization and type, CRM-6099
320 natcasesort($selMemTypeOrg);
321 foreach ($selOrgMemType as $index => $orgMembershipType) {
322 natcasesort($orgMembershipType);
323 $selOrgMemType[$index] = $orgMembershipType;
324 }
325
326 $js = array('onChange' => "setPaymentBlock( ); CRM.buildCustomData( 'Membership', this.value );");
327
328 //build the form for auto renew.
329 $recurProcessor = array();
330 if ($this->_mode || ($this->_action & CRM_Core_Action::UPDATE)) {
331 //get the valid recurring processors.
332 $recurring = CRM_Core_PseudoConstant::paymentProcessor(FALSE, FALSE, 'is_recur = 1');
333 $recurProcessor = array_intersect_assoc($this->_processors, $recurring);
334 if (!empty($recurProcessor)) {
335 $autoRenew = array();
336 if (!empty($membershipType)) {
337 $sql = '
03e04002 338SELECT id,
6a488035
TO
339 auto_renew,
340 duration_unit,
341 duration_interval
342 FROM civicrm_membership_type
343WHERE id IN ( ' . implode(' , ', array_keys($membershipType)) . ' )';
344 $recurMembershipTypes = CRM_Core_DAO::executeQuery($sql);
345 while ($recurMembershipTypes->fetch()) {
346 $autoRenew[$recurMembershipTypes->id] = $recurMembershipTypes->auto_renew;
347 foreach (array(
348 'id', 'auto_renew', 'duration_unit', 'duration_interval') as $fld) {
349 $this->_recurMembershipTypes[$recurMembershipTypes->id][$fld] = $recurMembershipTypes->$fld;
350 }
351 }
352 }
353 $js = array('onChange' => "setPaymentBlock(); CRM.buildCustomData( 'Membership', this.value );");
354 $this->assign('autoRenew', json_encode($autoRenew));
355 }
356 $autoRenewElement = $this->addElement('checkbox', 'auto_renew', ts('Membership renewed automatically'),
357 NULL, array('onclick' => "showHideByValue('auto_renew','','send-receipt','table-row','radio',true); showHideNotice( );")
358 );
359 if ($this->_action & CRM_Core_Action::UPDATE) {
360 $autoRenewElement->freeze();
361 }
362 }
363 $this->assign('recurProcessor', json_encode($recurProcessor));
364
365 $sel = &$this->addElement('hierselect',
366 'membership_type_id',
367 ts('Renewal Membership Organization and Type'), $js
368 );
369
370 $sel->setOptions(array($selMemTypeOrg, $selOrgMemType));
371 $elements = array();
372 if ($sel) {
373 $elements[] = $sel;
374 }
375
376 $this->applyFilter('__ALL__', 'trim');
377
378 $this->addDate('renewal_date', ts('Date Renewal Entered'), FALSE, array('formatType' => 'activityDate'));
379
03e04002 380 $this->add('select', 'financial_type_id', ts('Financial Type'),
6a488035
TO
381 array('' => ts('- select -')) + CRM_Contribute_PseudoConstant::financialType()
382 );
383 if (CRM_Core_Permission::access('CiviContribute') && !$this->_mode) {
384 $this->addElement('checkbox', 'record_contribution', ts('Record Renewal Payment?'), NULL, array('onclick' => "checkPayment();"));
385
386 $this->add('text', 'total_amount', ts('Amount'));
387 $this->addRule('total_amount', ts('Please enter a valid amount.'), 'money');
388
5d86176b 389 $this->addDate('receive_date', ts('Received'), FALSE, array('formatType' => 'activityDateTime'));
6a488035
TO
390
391 $this->add('text', 'num_terms', ts('Extend Membership by'), array('onchange' => "setPaymentBlock();"), TRUE);
392 $this->addRule('num_terms', ts('Please enter a whole number for how many periods to renew.'), 'integer');
393
394 $this->add('select', 'payment_instrument_id', ts('Paid By'),
395 array('' => ts('- select -')) + CRM_Contribute_PseudoConstant::paymentInstrument(),
396 FALSE, array('onChange' => "return showHideByValue('payment_instrument_id','4','checkNumber','table-row','select',false);")
397 );
398
399 $this->add('text', 'trxn_id', ts('Transaction ID'));
400 $this->addRule('trxn_id', ts('Transaction ID already exists in Database.'),
401 'objectExists', array('CRM_Contribute_DAO_Contribution', $this->_id, 'trxn_id')
402 );
403
404 $this->add('select', 'contribution_status_id', ts('Payment Status'),
405 CRM_Contribute_PseudoConstant::contributionStatus()
406 );
407
408 $this->add('text', 'check_number', ts('Check Number'),
409 CRM_Core_DAO::getAttribute('CRM_Contribute_DAO_Contribution', 'check_number')
410 );
411 }
412 else {
413 $this->add('text', 'total_amount', ts('Amount'));
414 $this->addRule('total_amount', ts('Please enter a valid amount.'), 'money');
415 }
416 $this->addElement('checkbox', 'send_receipt', ts('Send Confirmation and Receipt?'), NULL,
417 array('onclick' => "showHideByValue( 'send_receipt', '', 'notice', 'table-row', 'radio', false ); showHideByValue( 'send_receipt', '', 'fromEmail', 'table-row', 'radio',false);")
418 );
419
420 $this->add('select', 'from_email_address', ts('Receipt From'), $this->_fromEmails);
421
422 $this->add('textarea', 'receipt_text_renewal', ts('Renewal Message'));
423
6a488035
TO
424 // Retrieve the name and email of the contact - this will be the TO for receipt email
425 list($this->_contributorDisplayName,
426 $this->_contributorEmail
427 ) = CRM_Contact_BAO_Contact_Location::getEmailDetails($this->_contactID);
428 $this->assign('email', $this->_contributorEmail);
429
430 $mailingInfo = CRM_Core_BAO_Setting::getItem(CRM_Core_BAO_Setting::MAILING_PREFERENCES_NAME,
431 'mailing_backend'
432 );
433 $this->assign('outBound_option', $mailingInfo['outBound_option']);
434
435 if (CRM_Core_DAO::getFieldValue('CRM_Member_DAO_Membership', $this->_id, 'contribution_recur_id')) {
436 if (CRM_Member_BAO_Membership::isCancelSubscriptionSupported($this->_id)) {
437 $this->assign('cancelAutoRenew',
438 CRM_Utils_System::url('civicrm/contribute/unsubscribe', "reset=1&mid={$this->_id}")
439 );
440 }
441 }
442 $this->addFormRule(array('CRM_Member_Form_MembershipRenewal', 'formRule'));
443 if ($this->_context != 'standalone') {
444 //CRM-10223 - allow contribution to be recorded against different contact
445 // causes a conflict in standalone mode so skip in standalone for now
446 $this->addElement('checkbox', 'contribution_contact', ts('Record Payment from a Different Contact?'));
4c7aa1f7
CW
447 $this->addSelect('soft_credit_type_id', array('entity' => 'contribution_soft'));
448 $this->addEntityRef('soft_credit_contact_id', ts('Payment From'), array('create' => TRUE));
6a488035
TO
449 }
450 }
451
452 /**
100fef9d 453 * Validation
6a488035
TO
454 *
455 * @param array $params (ref.) an assoc array of name/value pairs
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
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'])) {
6a488035
TO
526 $formValues['financial_type_id'] = CRM_Core_DAO::getFieldValue('CRM_Member_DAO_MembershipType', $this->_memType,'financial_type_id');
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();
681 $priceSetId = null;
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
6a488035
TO
688 //lineitems with the financial type selected in form
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
701 if($this->_contributorContactID != $this->_contactID){
91ef9be0 702 $formValues['contribution_contact_id'] = $this->_contributorContactID;
a7488080 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;
03e04002 711
73b31047 712 CRM_Member_BAO_Membership::recordMembershipContribution(array_merge($formValues, array('membership_id' => $renewMembership->id)));
6a488035
TO
713 }
714
6a488035 715 $receiptSend = FALSE;
a7488080 716 if (!empty($formValues['send_receipt'])) {
6a488035
TO
717 $receiptSend = TRUE;
718
719 $receiptFrom = $formValues['from_email_address'];
720
a7488080 721 if (!empty($formValues['payment_instrument_id'])) {
6a488035
TO
722 $paymentInstrument = CRM_Contribute_PseudoConstant::paymentInstrument();
723 $formValues['paidBy'] = $paymentInstrument[$formValues['payment_instrument_id']];
724 }
725 //get the group Tree
726 $this->_groupTree = CRM_Core_BAO_CustomGroup::getTree('Membership', $this, $this->_id, FALSE, $this->_memType);
727
728 // retrieve custom data
729 $customFields = $customValues = $fo = array();
730 foreach ($this->_groupTree as $groupID => $group) {
731 if ($groupID == 'info') {
732 continue;
733 }
734 foreach ($group['fields'] as $k => $field) {
735 $field['title'] = $field['label'];
736 $customFields["custom_{$k}"] = $field;
737 }
738 }
739 $members = array(array('member_id', '=', $this->_membershipId, 0, 0));
740 // check whether its a test drive
741 if ($this->_mode == 'test') {
742 $members[] = array('member_test', '=', 1, 0, 0);
743 }
744 CRM_Core_BAO_UFGroup::getValues($this->_contactID, $customFields, $customValues, FALSE, $members);
745
746 $this->assign_by_ref('formValues', $formValues);
a7488080 747 if (!empty($formValues['contribution_id'])) {
6a488035
TO
748 $this->assign('contributionID', $formValues['contribution_id']);
749 }
750 $this->assign('membershipID', $this->_id);
751 $this->assign('contactID', $this->_contactID);
752 $this->assign('module', 'Membership');
753 $this->assign('receiptType', 'membership renewal');
754 $this->assign('mem_start_date', CRM_Utils_Date::customFormat($renewMembership->start_date));
755 $this->assign('mem_end_date', CRM_Utils_Date::customFormat($renewMembership->end_date));
756 $this->assign('membership_name', CRM_Core_DAO::getFieldValue('CRM_Member_DAO_MembershipType',
757 $renewMembership->membership_type_id
758 ));
759 $this->assign('customValues', $customValues);
760 if ($this->_mode) {
a7488080 761 if (!empty($this->_params['billing_first_name'])) {
6a488035
TO
762 $name = $this->_params['billing_first_name'];
763 }
764
a7488080 765 if (!empty($this->_params['billing_middle_name'])) {
6a488035
TO
766 $name .= " {$this->_params['billing_middle_name']}";
767 }
768
a7488080 769 if (!empty($this->_params['billing_last_name'])) {
6a488035
TO
770 $name .= " {$this->_params['billing_last_name']}";
771 }
772 $this->assign('billingName', $name);
773
774 // assign the address formatted up for display
775 $addressParts = array(
776 "street_address-{$this->_bltID}",
777 "city-{$this->_bltID}",
778 "postal_code-{$this->_bltID}",
779 "state_province-{$this->_bltID}",
780 "country-{$this->_bltID}",
781 );
782 $addressFields = array();
783 foreach ($addressParts as $part) {
784 list($n, $id) = explode('-', $part);
785 if (isset($this->_params['billing_' . $part])) {
786 $addressFields[$n] = $this->_params['billing_' . $part];
787 }
788 }
789 $this->assign('address', CRM_Utils_Address::format($addressFields));
790 $date = CRM_Utils_Date::format($this->_params['credit_card_exp_date']);
791 $date = CRM_Utils_Date::mysqlToIso($date);
792 $this->assign('credit_card_exp_date', $date);
793 $this->assign('credit_card_number',
794 CRM_Utils_System::mungeCreditCard($this->_params['credit_card_number'])
795 );
796 $this->assign('credit_card_type', $this->_params['credit_card_type']);
797 $this->assign('contributeMode', 'direct');
798 $this->assign('isAmountzero', 0);
799 $this->assign('is_pay_later', 0);
800 $this->assign('isPrimary', 1);
801 if ($this->_mode == 'test') {
802 $this->assign('action', '1024');
803 }
804 }
805
c6327d7d 806 list($mailSend, $subject, $message, $html) = CRM_Core_BAO_MessageTemplate::sendTemplate(
6a488035
TO
807 array(
808 'groupName' => 'msg_tpl_workflow_membership',
809 'valueName' => 'membership_offline_receipt',
810 'contactId' => $this->_receiptContactId,
811 'from' => $receiptFrom,
812 'toName' => $this->_contributorDisplayName,
813 'toEmail' => $this->_contributorEmail,
814 'isTest' => $this->_mode == 'test',
815 )
816 );
817 }
818
819 $statusMsg = ts('%1 membership for %2 has been renewed.', array(1 => $memType, 2 => $this->_memberDisplayName));
820
821 if ($endDate) {
822 $statusMsg .= ' ' . ts('The new membership End Date is %1.', array(1 => CRM_Utils_Date::customFormat(substr($endDate,0,8))));
823 }
824
825 if ($receiptSend && $mailSend) {
826 $statusMsg .= ' ' . ts('A renewal confirmation and receipt has been sent to %1.', array(1 => $this->_contributorEmail));
827 }
828
829 CRM_Core_Session::setStatus($statusMsg, ts('Complete'), 'success');
830 }
831}