Merge pull request #4863 from totten/master-phpcbf4
[civicrm-core.git] / CRM / Pledge / Form / Pledge.php
1 <?php
2 /*
3 +--------------------------------------------------------------------+
4 | CiviCRM version 4.6 |
5 +--------------------------------------------------------------------+
6 | Copyright CiviCRM LLC (c) 2004-2014 |
7 +--------------------------------------------------------------------+
8 | This file is a part of CiviCRM. |
9 | |
10 | CiviCRM is free software; you can copy, modify, and distribute it |
11 | under the terms of the GNU Affero General Public License |
12 | Version 3, 19 November 2007 and the CiviCRM Licensing Exception. |
13 | |
14 | CiviCRM is distributed in the hope that it will be useful, but |
15 | WITHOUT ANY WARRANTY; without even the implied warranty of |
16 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. |
17 | See the GNU Affero General Public License for more details. |
18 | |
19 | You should have received a copy of the GNU Affero General Public |
20 | License and the CiviCRM Licensing Exception along |
21 | with this program; if not, contact CiviCRM LLC |
22 | at info[AT]civicrm[DOT]org. If you have questions about the |
23 | GNU Affero General Public License or the licensing of CiviCRM, |
24 | see the CiviCRM license FAQ at http://civicrm.org/licensing |
25 +--------------------------------------------------------------------+
26 */
27
28 /**
29 *
30 * @package CRM
31 * @copyright CiviCRM LLC (c) 2004-2014
32 * $Id$
33 *
34 */
35
36 /**
37 * This class generates form components for processing a pledge
38 *
39 */
40 class CRM_Pledge_Form_Pledge extends CRM_Core_Form {
41 public $_action;
42
43 /**
44 * The id of the pledge that we are proceessing
45 *
46 * @var int
47 */
48 public $_id;
49
50 /**
51 * The id of the contact associated with this pledge
52 *
53 * @var int
54 */
55 public $_contactID;
56
57 /**
58 * The Pledge values if an existing pledge
59 */
60 public $_values;
61
62 /**
63 * The Pledge frequency Units
64 */
65 public $_freqUnits;
66
67 /**
68 * Is current pledge pending.
69 */
70 public $_isPending = FALSE;
71
72 /**
73 * Set variables up before form is built
74 *
75 * @return void
76 */
77 public function preProcess() {
78 $this->_contactID = CRM_Utils_Request::retrieve('cid', 'Positive', $this);
79 $this->_action = CRM_Utils_Request::retrieve('action', 'String',
80 $this, FALSE, 'add'
81 );
82 $this->_id = CRM_Utils_Request::retrieve('id', 'Positive', $this);
83 $this->_context = CRM_Utils_Request::retrieve('context', 'String', $this);
84
85 // check for action permissions.
86 if (!CRM_Core_Permission::checkActionPermission('CiviPledge', $this->_action)) {
87 CRM_Core_Error::fatal(ts('You do not have permission to access this page.'));
88 }
89
90 $this->assign('action', $this->_action);
91 $this->assign('context', $this->_context);
92 if ($this->_action & CRM_Core_Action::DELETE) {
93 return;
94 }
95
96 $this->userDisplayName = $this->userEmail = NULL;
97 if ($this->_contactID) {
98 list($this->userDisplayName,
99 $this->userEmail
100 ) = CRM_Contact_BAO_Contact_Location::getEmailDetails($this->_contactID);
101 $this->assign('displayName', $this->userDisplayName);
102 }
103
104 $this->setPageTitle(ts('Pledge'));
105
106 //build custom data
107 CRM_Custom_Form_CustomData::preProcess($this, NULL, NULL, 1, 'Pledge', $this->_id);
108 $this->_values = array();
109 // current pledge id
110 if ($this->_id) {
111 //get the contribution id
112 $this->_contributionID = CRM_Core_DAO::getFieldValue('CRM_Pledge_DAO_PledgePayment',
113 $this->_id, 'contribution_id', 'pledge_id'
114 );
115 $params = array('id' => $this->_id);
116 CRM_Pledge_BAO_Pledge::getValues($params, $this->_values);
117
118 $this->_isPending = (CRM_Pledge_BAO_Pledge::pledgeHasFinancialTransactions($this->_id, CRM_Utils_Array::value('status_id', $this->_values))) ? FALSE : T;
119 }
120
121 //get the pledge frequency units.
122 $this->_freqUnits = CRM_Core_OptionGroup::values('recur_frequency_units');
123
124 $this->_fromEmails = CRM_Core_BAO_Email::getFromEmail();
125 }
126
127
128 /**
129 * Set default values for the form.
130 * the default values are retrieved from the database
131 *
132 *
133 * @return void
134 */
135 public function setDefaultValues() {
136 $defaults = $this->_values;
137
138 $fields = array();
139 if ($this->_action & CRM_Core_Action::DELETE) {
140 return $defaults;
141 }
142
143 if (!empty($defaults['is_test'])) {
144 $this->assign('is_test', TRUE);
145 }
146
147 if ($this->_id) {
148 $startDate = CRM_Utils_Array::value('start_date', $this->_values);
149 $createDate = CRM_Utils_Array::value('create_date', $this->_values);
150 list($defaults['start_date']) = CRM_Utils_Date::setDateDefaults($startDate);
151 list($defaults['create_date']) = CRM_Utils_Date::setDateDefaults($createDate);
152
153 if ($ackDate = CRM_Utils_Array::value('acknowledge_date', $this->_values)) {
154 list($defaults['acknowledge_date']) = CRM_Utils_Date::setDateDefaults($ackDate);
155 }
156
157 //check is this pledge pending
158 // fix the display of the monetary value, CRM-4038
159 if ($this->_isPending) {
160 $defaults['eachPaymentAmount'] = $this->_values['amount'] / $this->_values['installments'];
161 $defaults['eachPaymentAmount'] = CRM_Utils_Money::format($defaults['eachPaymentAmount'], NULL, '%a');
162 }
163 else {
164 $this->assign('start_date', $startDate);
165 $this->assign('create_date', $createDate);
166 }
167 // fix the display of the monetary value, CRM-4038
168 if (isset($this->_values['amount'])) {
169 $defaults['amount'] = CRM_Utils_Money::format($this->_values['amount'], NULL, '%a');
170 }
171 $this->assign('amount', $this->_values['amount']);
172 $this->assign('installments', $defaults['installments']);
173 }
174 else {
175 //default values.
176 list($now) = CRM_Utils_Date::setDateDefaults();
177 $defaults['create_date'] = $now;
178 $defaults['start_date'] = $now;
179 $defaults['installments'] = 12;
180 $defaults['frequency_interval'] = 1;
181 $defaults['frequency_day'] = 1;
182 $defaults['initial_reminder_day'] = 5;
183 $defaults['max_reminders'] = 1;
184 $defaults['additional_reminder_day'] = 5;
185 $defaults['frequency_unit'] = array_search('month', $this->_freqUnits);
186 $defaults['financial_type_id'] = array_search( 'Donation', CRM_Contribute_PseudoConstant::financialType() );
187 }
188
189 $pledgeStatus = CRM_Contribute_PseudoConstant::contributionStatus();
190 $pledgeStatusNames = CRM_Core_OptionGroup::values('contribution_status',
191 FALSE, FALSE, FALSE, NULL, 'name', TRUE
192 );
193 // get default status label (pending)
194 $defaultPledgeStatus = CRM_Utils_Array::value(array_search('Pending', $pledgeStatusNames),
195 $pledgeStatus
196 );
197
198 //assign status.
199 $this->assign('status', CRM_Utils_Array::value(CRM_Utils_Array::value('status_id', $this->_values),
200 $pledgeStatus,
201 $defaultPledgeStatus
202 ));
203
204 if (isset($this->userEmail)) {
205 $this->assign('email', $this->userEmail);
206 }
207
208 // custom data set defaults
209 $defaults += CRM_Custom_Form_CustomData::setDefaultValues($this);
210
211 return $defaults;
212 }
213
214 /**
215 * Build the form object
216 *
217 * @return void
218 */
219 public function buildQuickForm() {
220 if ($this->_action & CRM_Core_Action::DELETE) {
221 $this->addButtons(array(
222 array(
223 'type' => 'next',
224 'name' => ts('Delete'),
225 'spacing' => '&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;',
226 'isDefault' => TRUE,
227 ),
228 array(
229 'type' => 'cancel',
230 'name' => ts('Cancel'),
231 ),
232 )
233 );
234 return;
235 }
236
237 if ($this->_context == 'standalone') {
238 $this->addEntityRef('contact_id', ts('Contact'), array('create' => TRUE, 'api' => array('extra' => array('email'))), TRUE);
239 }
240
241 $showAdditionalInfo = FALSE;
242 $this->_formType = CRM_Utils_Array::value('formType', $_GET);
243
244 $defaults = array();
245
246 $paneNames = array(
247 'Payment Reminders' => 'PaymentReminders',
248 );
249 foreach ($paneNames as $name => $type) {
250 $urlParams = "snippet=4&formType={$type}";
251 $allPanes[$name] = array(
252 'url' => CRM_Utils_System::url('civicrm/contact/view/pledge', $urlParams),
253 'open' => 'false',
254 'id' => $type,
255 );
256 //see if we need to include this paneName in the current form
257 if ($this->_formType == $type || !empty($_POST["hidden_{$type}"]) ||
258 CRM_Utils_Array::value("hidden_{$type}", $defaults)
259 ) {
260 $showAdditionalInfo = TRUE;
261 $allPanes[$name]['open'] = 'true';
262 }
263 $fnName = "build{$type}";
264 CRM_Contribute_Form_AdditionalInfo::$fnName($this);
265 }
266
267 $this->assign('allPanes', $allPanes);
268 $this->assign('showAdditionalInfo', $showAdditionalInfo);
269
270 if ($this->_formType) {
271 $this->assign('formType', $this->_formType);
272 return;
273 }
274
275 $this->applyFilter('__ALL__', 'trim');
276
277 //pledge fields.
278 $attributes = CRM_Core_DAO::getAttribute('CRM_Pledge_DAO_Pledge');
279
280 $this->assign('isPending', $this->_isPending);
281
282 $js = array(
283 'onblur' => "calculatedPaymentAmount( );",
284 'onkeyup' => "calculatedPaymentAmount( );",
285 );
286
287 $currencyFreeze = FALSE;
288 if ($this->_id &&
289 !$this->_isPending
290 ) {
291 $currencyFreeze = TRUE;
292 }
293
294 $element = $this->addMoney('amount', ts('Total Pledge Amount'), TRUE,
295 array_merge($attributes['pledge_amount'], $js), TRUE,
296 'currency', NULL, $currencyFreeze
297 );
298
299 if ($this->_id &&
300 !$this->_isPending
301 ) {
302 $element->freeze();
303 }
304
305 $element = &$this->add('text', 'installments', ts('To be paid in'),
306 array_merge($attributes['installments'], $js), TRUE
307 );
308 $this->addRule('installments', ts('Please enter a valid number of installments.'), 'positiveInteger');
309 if ($this->_id &&
310 !$this->_isPending
311 ) {
312 $element->freeze();
313 }
314
315 $element = &$this->add('text', 'frequency_interval', ts('every'),
316 $attributes['pledge_frequency_interval'], TRUE
317 );
318 $this->addRule('frequency_interval', ts('Please enter a number for frequency (e.g. every "3" months).'), 'positiveInteger');
319 if ($this->_id &&
320 !$this->_isPending
321 ) {
322 $element->freeze();
323 }
324
325 // Fix frequency unit display for use with frequency_interval
326 $freqUnitsDisplay = array();
327 foreach ($this->_freqUnits as $val => $label) {
328 $freqUnitsDisplay[$val] = ts('%1(s)', array(1 => $label));
329 }
330 $element = &$this->add('select', 'frequency_unit',
331 ts('Frequency'),
332 array(
333 '' => ts('- select -')) + $freqUnitsDisplay,
334 TRUE
335 );
336
337 if ($this->_id &&
338 !$this->_isPending
339 ) {
340 $element->freeze();
341 }
342
343 $element = &$this->add('text', 'frequency_day', ts('Payments are due on the'), $attributes['frequency_day'], TRUE);
344 $this->addRule('frequency_day', ts('Please enter a valid payment due day.'), 'positiveInteger');
345 if ($this->_id &&
346 !$this->_isPending
347 ) {
348 $element->freeze();
349 }
350
351 $this->add('text', 'eachPaymentAmount', ts('each'), array('size' => 10, 'style' => "background-color:#EBECE4", 'READONLY'));
352
353 //add various dates
354 if (!$this->_id || $this->_isPending) {
355 $this->addDate('create_date', ts('Pledge Made'), TRUE);
356 $this->addDate('start_date', ts('Payments Start'), TRUE);
357 }
358
359 if ($this->_id &&
360 !$this->_isPending
361 ) {
362 $eachPaymentAmount = $this->_values['original_installment_amount'];
363 $this->assign('currency', $this->_values['currency']);
364 $this->assign('eachPaymentAmount', $eachPaymentAmount);
365 $this->assign('hideCalender', TRUE);
366 }
367
368 if (CRM_Utils_Array::value('status_id', $this->_values) !=
369 array_search('Cancelled', CRM_Contribute_PseudoConstant::contributionStatus(NULL, 'name'))
370 ) {
371
372 $this->addElement('checkbox', 'is_acknowledge', ts('Send Acknowledgment?'), NULL,
373 array('onclick' => "showHideByValue( 'is_acknowledge', '', 'acknowledgeDate', 'table-row', 'radio', true); showHideByValue( 'is_acknowledge', '', 'fromEmail', 'table-row', 'radio', false );")
374 );
375
376 $this->add('select', 'from_email_address', ts('Receipt From'), $this->_fromEmails);
377 }
378
379 $this->addDate('acknowledge_date', ts('Acknowledgment Date'));
380
381 $this->add('select', 'financial_type_id',
382 ts( 'Financial Type' ),
383 array('' => ts( '- select -' )) + CRM_Contribute_PseudoConstant::financialType( ),
384 TRUE
385 );
386
387 //CRM-7362 --add campaigns.
388 CRM_Campaign_BAO_Campaign::addCampaign($this, CRM_Utils_Array::value('campaign_id', $this->_values));
389
390 $pageIds = array();
391 CRM_Core_DAO::commonRetrieveAll('CRM_Pledge_DAO_PledgeBlock', 'entity_table',
392 'civicrm_contribution_page', $pageIds, array('entity_id')
393 );
394 $pages = CRM_Contribute_PseudoConstant::contributionPage();
395 $pledgePages = array();
396 foreach ($pageIds as $key => $value) {
397 $pledgePages[$value['entity_id']] = $pages[$value['entity_id']];
398 }
399 $ele = $this->add('select', 'contribution_page_id', ts('Self-service Payments Page'),
400 array(
401 '' => ts('- select -')) + $pledgePages
402 );
403
404 $mailingInfo = CRM_Core_BAO_Setting::getItem(CRM_Core_BAO_Setting::MAILING_PREFERENCES_NAME,
405 'mailing_backend'
406 );
407 $this->assign('outBound_option', $mailingInfo['outBound_option']);
408
409 //build custom data
410 CRM_Custom_Form_CustomData::buildQuickForm($this);
411
412 // make this form an upload since we dont know if the custom data injected dynamically
413 // is of type file etc $uploadNames = $this->get( 'uploadNames' );
414 $this->addButtons(array(
415 array(
416 'type' => 'upload',
417 'name' => ts('Save'),
418 'js' => array('onclick' => "return verify( );"),
419 'isDefault' => TRUE,
420 ),
421 array(
422 'type' => 'upload',
423 'name' => ts('Save and New'),
424 'js' => array('onclick' => "return verify( );"),
425 'subName' => 'new',
426 ),
427 array(
428 'type' => 'cancel',
429 'name' => ts('Cancel'),
430 ),
431 )
432 );
433
434 $this->addFormRule(array('CRM_Pledge_Form_Pledge', 'formRule'), $this);
435
436 if ($this->_action & CRM_Core_Action::VIEW) {
437 $this->freeze();
438 }
439 }
440
441 /**
442 * Global form rule
443 *
444 * @param array $fields
445 * The input form values.
446 * @param array $files
447 * The uploaded files if any.
448 * @param $self
449 *
450 *
451 * @return true if no errors, else array of errors
452 * @static
453 */
454 public static function formRule($fields, $files, $self) {
455 $errors = array();
456
457 if ($fields['amount'] <= 0) {
458 $errors['amount'] = ts('Total Pledge Amount should be greater than zero.');
459 }
460 if ($fields['installments'] <= 0) {
461 $errors['installments'] = ts('Installments should be greater than zero.');
462 }
463
464 if ($fields['frequency_unit'] != 'week') {
465 if ($fields['frequency_day'] > 31 || $fields['frequency_day'] == 0) {
466 $errors['frequency_day'] = ts('Please enter a valid frequency day ie. 1 through 31.');
467 }
468 }
469 elseif ($fields['frequency_unit'] == 'week') {
470 if ($fields['frequency_day'] > 7 || $fields['frequency_day'] == 0) {
471 $errors['frequency_day'] = ts('Please enter a valid frequency day ie. 1 through 7.');
472 }
473 }
474 return $errors;
475 }
476
477 /**
478 * Process the form submission
479 *
480 *
481 * @return void
482 */
483 public function postProcess() {
484 if ($this->_action & CRM_Core_Action::DELETE) {
485 CRM_Pledge_BAO_Pledge::deletePledge($this->_id);
486 return;
487 }
488
489 //get the submitted form values.
490 $formValues = $this->controller->exportValues($this->_name);
491
492 // set the contact, when contact is selected
493 if (!empty($formValues['contact_id'])) {
494 $this->_contactID = $formValues['contact_id'];
495 }
496
497 $session = CRM_Core_Session::singleton();
498
499 //get All Payments status types.
500 $paymentStatusTypes = CRM_Contribute_PseudoConstant::contributionStatus(NULL, 'name');
501
502 $fields = array(
503 'frequency_unit',
504 'frequency_interval',
505 'frequency_day',
506 'installments',
507 'financial_type_id',
508 'initial_reminder_day',
509 'max_reminders',
510 'additional_reminder_day',
511 'contribution_page_id',
512 'campaign_id',
513 );
514 foreach ($fields as $f) {
515 $params[$f] = CRM_Utils_Array::value($f, $formValues);
516 }
517
518 //defaults status is "Pending".
519 //if update get status.
520 if ($this->_id) {
521 $params['pledge_status_id'] = $params['status_id'] = $this->_values['status_id'];
522 }
523 else {
524 $params['pledge_status_id'] = $params['status_id'] = array_search('Pending', $paymentStatusTypes);
525 }
526 //format amount
527 $params['amount'] = CRM_Utils_Rule::cleanMoney(CRM_Utils_Array::value('amount', $formValues));
528 $params['currency'] = CRM_Utils_Array::value('currency', $formValues);
529 $params['original_installment_amount'] = ($params['amount'] / $params['installments']);
530
531 $dates = array('create_date', 'start_date', 'acknowledge_date', 'cancel_date');
532 foreach ($dates as $d) {
533 if ($this->_id && (!$this->_isPending) && !empty($this->_values[$d])) {
534 if ($d == 'start_date') {
535 $params['scheduled_date'] = CRM_Utils_Date::processDate($this->_values[$d]);
536 }
537 $params[$d] = CRM_Utils_Date::processDate($this->_values[$d]);
538 }
539 elseif (!empty($formValues[$d]) && !CRM_Utils_System::isNull($formValues[$d])) {
540 if ($d == 'start_date') {
541 $params['scheduled_date'] = CRM_Utils_Date::processDate($formValues[$d]);
542 }
543 $params[$d] = CRM_Utils_Date::processDate($formValues[$d]);
544 }
545 else {
546 $params[$d] = 'null';
547 }
548 }
549
550 if (!empty($formValues['is_acknowledge'])) {
551 $params['acknowledge_date'] = date('Y-m-d');
552 }
553
554 // assign id only in update mode
555 if ($this->_action & CRM_Core_Action::UPDATE) {
556 $params['id'] = $this->_id;
557 }
558
559 $params['contact_id'] = $this->_contactID;
560
561 //format custom data
562 if (!empty($formValues['hidden_custom'])) {
563 $params['hidden_custom'] = 1;
564
565 $customFields = CRM_Core_BAO_CustomField::getFields('Pledge');
566 $params['custom'] = CRM_Core_BAO_CustomField::postProcess($formValues,
567 $customFields,
568 $this->_id,
569 'Pledge'
570 );
571 }
572
573 //handle pending pledge.
574 $params['is_pledge_pending'] = $this->_isPending;
575
576 //create pledge record.
577 $pledge = CRM_Pledge_BAO_Pledge::create($params);
578
579 $statusMsg = NULL;
580
581 if ($pledge->id) {
582 //set the status msg.
583 if ($this->_action & CRM_Core_Action::ADD) {
584 $statusMsg = ts('Pledge has been recorded and the payment schedule has been created.<br />');
585 }
586 elseif ($this->_action & CRM_Core_Action::UPDATE) {
587 $statusMsg = ts('Pledge has been updated.<br />');
588 }
589 }
590
591 //handle Acknowledgment.
592 if (!empty($formValues['is_acknowledge']) && $pledge->id) {
593
594 //calculate scheduled amount.
595 $params['scheduled_amount'] = round($params['amount'] / $params['installments']);
596 $params['total_pledge_amount'] = $params['amount'];
597 //get some required pledge values in params.
598 $params['id'] = $pledge->id;
599 $params['acknowledge_date'] = $pledge->acknowledge_date;
600 $params['is_test'] = $pledge->is_test;
601 $params['currency'] = $pledge->currency;
602 // retrieve 'from email id' for acknowledgement
603 $params['from_email_id'] = $formValues['from_email_address'];
604
605 $this->paymentId = NULL;
606 //send Acknowledgment mail.
607 CRM_Pledge_BAO_Pledge::sendAcknowledgment($this, $params);
608
609 if (!isset($this->userEmail)) {
610 list($this->userDisplayName,
611 $this->userEmail
612 ) = CRM_Contact_BAO_Contact_Location::getEmailDetails($this->_contactID);
613 }
614
615 $statusMsg .= ' ' . ts("An acknowledgment email has been sent to %1.<br />", array(1 => $this->userEmail));
616
617 //build the payment urls.
618 if ($this->paymentId) {
619 $urlParams = "reset=1&action=add&cid={$this->_contactID}&ppid={$this->paymentId}&context=pledge";
620 $contribURL = CRM_Utils_System::url('civicrm/contact/view/contribution', $urlParams);
621 $urlParams .= "&mode=live";
622 $creditURL = CRM_Utils_System::url('civicrm/contact/view/contribution', $urlParams);
623
624 //check if we can process credit card payment.
625 $processors = CRM_Core_PseudoConstant::paymentProcessor(FALSE, FALSE,
626 "billing_mode IN ( 1, 3 )"
627 );
628 if (count($processors) > 0) {
629 $statusMsg .= ' ' . ts("If a payment is due now, you can record <a href='%1'>a check, EFT, or cash payment for this pledge</a> OR <a href='%2'>submit a credit card payment</a>.", array(1 => $contribURL, 2 => $creditURL));
630 }
631 else {
632 $statusMsg .= ' ' . ts("If a payment is due now, you can record <a href='%1'>a check, EFT, or cash payment for this pledge</a>.", array(1 => $contribURL));
633 }
634 }
635 }
636 CRM_Core_Session::setStatus($statusMsg, ts('Payment Due'), 'info');
637
638 $buttonName = $this->controller->getButtonName();
639 if ($this->_context == 'standalone') {
640 if ($buttonName == $this->getButtonName('upload', 'new')) {
641 $session->replaceUserContext(CRM_Utils_System::url('civicrm/pledge/add',
642 'reset=1&action=add&context=standalone'
643 ));
644 }
645 else {
646 $session->replaceUserContext(CRM_Utils_System::url('civicrm/contact/view',
647 "reset=1&cid={$this->_contactID}&selectedChild=pledge"
648 ));
649 }
650 }
651 elseif ($buttonName == $this->getButtonName('upload', 'new')) {
652 $session->replaceUserContext(CRM_Utils_System::url('civicrm/contact/view/pledge',
653 "reset=1&action=add&context=pledge&cid={$this->_contactID}"
654 ));
655 }
656 }
657 }