ICM-18 Jenkins fixes
[civicrm-core.git] / CRM / Event / Form / ManageEvent / Fee.php
CommitLineData
6a488035
TO
1<?php
2/*
3 +--------------------------------------------------------------------+
7e9e8871 4 | CiviCRM version 4.7 |
6a488035 5 +--------------------------------------------------------------------+
e7112fa7 6 | Copyright CiviCRM LLC (c) 2004-2015 |
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
e7112fa7 31 * @copyright CiviCRM LLC (c) 2004-2015
6a488035
TO
32 * $Id$
33 *
34 */
35
36/**
37 * This class generates form components for Event Fees
38 *
39 */
40class CRM_Event_Form_ManageEvent_Fee extends CRM_Event_Form_ManageEvent {
41
42 /**
43 * Constants for number of options for data types of multiple option.
44 */
7da04cde 45 const NUM_OPTION = 11;
6a488035
TO
46
47 /**
48 * Constants for number of discounts for the event.
49 */
7da04cde 50 const NUM_DISCOUNT = 6;
6a488035
TO
51
52 /**
66f9e52b 53 * Page action.
6a488035
TO
54 */
55 public $_action;
56
57 /**
66f9e52b 58 * In Date.
6a488035
TO
59 */
60 private $_inDate;
61
62 /**
66f9e52b 63 * Set variables up before form is built.
6a488035
TO
64 *
65 * @return void
6a488035 66 */
00be9182 67 public function preProcess() {
6a488035
TO
68 parent::preProcess();
69 }
70
71 /**
c490a46a 72 * Set default values for the form. For edit/view mode
6a488035
TO
73 * the default values are retrieved from the database
74 *
6a488035 75 *
355ba699 76 * @return void
6a488035 77 */
00be9182 78 public function setDefaultValues() {
6a488035
TO
79 $parentDefaults = parent::setDefaultValues();
80
353ffa53
TO
81 $eventId = $this->_id;
82 $params = array();
6a488035
TO
83 $defaults = array();
84 if (isset($eventId)) {
85 $params = array('id' => $eventId);
86 }
87
88 CRM_Event_BAO_Event::retrieve($params, $defaults);
89
90 if (isset($eventId)) {
9da8dc8c 91 $price_set_id = CRM_Price_BAO_PriceSet::getFor('civicrm_event', $eventId, NULL, 1);
6a488035
TO
92
93 if ($price_set_id) {
94 $defaults['price_set_id'] = $price_set_id;
95 }
96 else {
9da8dc8c 97 $priceSetId = CRM_Price_BAO_PriceSet::getFor('civicrm_event', $eventId, NULL);
6a488035 98 if ($priceSetId) {
9da8dc8c 99 if ($isQuick = CRM_Core_DAO::getFieldValue('CRM_Price_DAO_PriceSet', $priceSetId, 'is_quick_config')) {
6a488035 100 $this->assign('isQuick', $isQuick);
9da8dc8c 101 $priceField = CRM_Core_DAO::getFieldValue('CRM_Price_DAO_PriceField', $priceSetId, 'id', 'price_set_id');
6a488035 102 $options = array();
0479b4c8 103 $priceFieldOptions = CRM_Price_BAO_PriceFieldValue::getValues($priceField, $options, 'weight', TRUE);
6a488035
TO
104 $defaults['price_field_id'] = $priceField;
105 $countRow = 0;
106 foreach ($options as $optionId => $optionValue) {
107 $countRow++;
6fe4c6f8 108 $defaults['value'][$countRow] = CRM_Utils_Money::format($optionValue['amount'], NULL, '%a');
6a488035
TO
109 $defaults['label'][$countRow] = $optionValue['label'];
110 $defaults['name'][$countRow] = $optionValue['name'];
111 $defaults['weight'][$countRow] = $optionValue['weight'];
112 $defaults['price_field_value'][$countRow] = $optionValue['id'];
113 if ($optionValue['is_default']) {
114 $defaults['default'] = $countRow;
115 }
116 }
117 }
118 }
119 }
120 }
121
122 //check if discounted
123 $discountedEvent = CRM_Core_BAO_Discount::getOptionGroup($this->_id, 'civicrm_event');
124 if (!empty($discountedEvent)) {
125 $defaults['is_discount'] = $i = 1;
126 $totalLables = $maxSize = $defaultDiscounts = array();
127 foreach ($discountedEvent as $optionGroupId) {
128 $defaults['discount_price_set'][] = $optionGroupId;
9da8dc8c 129 $name = $defaults["discount_name[$i]"] = CRM_Core_DAO::getFieldValue('CRM_Price_DAO_PriceSet', $optionGroupId, 'title');
6a488035
TO
130
131 list($defaults["discount_start_date[$i]"]) = CRM_Utils_Date::setDateDefaults(CRM_Core_DAO::getFieldValue('CRM_Core_DAO_Discount', $optionGroupId,
132 'start_date', 'price_set_id'
353ffa53 133 ));
6a488035
TO
134 list($defaults["discount_end_date[$i]"]) = CRM_Utils_Date::setDateDefaults(CRM_Core_DAO::getFieldValue('CRM_Core_DAO_Discount', $optionGroupId,
135 'end_date', 'price_set_id'
353ffa53 136 ));
9da8dc8c 137 $defaultDiscounts[] = CRM_Price_BAO_PriceSet::getSetDetail($optionGroupId);
6a488035
TO
138 $i++;
139 }
140
141 //avoid moving up value of lable when some labels don't
142 //have a value ,fixed for CRM-3088
143 $rowCount = 1;
144 foreach ($defaultDiscounts as $val) {
145 $discountFields = current($val);
146 $discountFields = current($discountFields['fields']);
147
148 foreach ($discountFields['options'] as $discountFieldsval) {
96fb2c1c 149 $defaults['discounted_label'][$discountFieldsval['weight']] = $discountFieldsval['label'];
389bcebf 150 $defaults['discounted_value'][$discountFieldsval['weight']][$rowCount] = CRM_Utils_Money::format($discountFieldsval['amount'], NULL, '%a');
0479b4c8 151 $defaults['discount_option_id'][$rowCount][$discountFieldsval['weight']] = $discountFieldsval['id'];
a7488080 152 if (!empty($discountFieldsval['is_default'])) {
6a488035
TO
153 $defaults['discounted_default'] = $discountFieldsval['weight'];
154 }
155 }
156 $rowCount++;
157 }
5e4b4477
PN
158 //CRM-12970
159 ksort($defaults['discounted_value']);
93c3579d 160 ksort($defaults['discounted_label']);
5e4b4477
PN
161 $rowCount = 1;
162 foreach ($defaults['discounted_label'] as $key => $value) {
163 if ($key != $rowCount) {
164 $defaults['discounted_label'][$rowCount] = $value;
165 $defaults['discounted_value'][$rowCount] = $defaults['discounted_value'][$key];
166 unset($defaults['discounted_value'][$key]);
167 unset($defaults['discounted_label'][$key]);
168 foreach ($defaults['discount_option_id'] as &$optionIds) {
169 if (array_key_exists($key, $optionIds)) {
170 $optionIds[$rowCount] = $optionIds[$key];
171 unset($optionIds[$key]);
172 }
b2cdd843 173 }
5e4b4477
PN
174 }
175 $rowCount++;
176 }
6a488035
TO
177
178 $this->set('discountSection', 1);
179 $this->buildQuickForm();
180 }
181 elseif (!empty($defaults['label'])) {
182 //if Regular Fees are present in DB and event fee page is in update mode
183 $defaults['discounted_label'] = $defaults['label'];
184 }
a7488080 185 elseif (!empty($this->_submitValues['label'])) {
6a488035
TO
186 //if event is newly created, use submitted values for
187 //discount labels
188 if (is_array($this->_submitValues['label'])) {
189 $k = 1;
190 foreach ($this->_submitValues['label'] as $value) {
191 if ($value) {
192 $defaults['discounted_label'][$k] = $value;
193 $k++;
194 }
195 }
196 }
197 }
198 $defaults['id'] = $eventId;
199 if (!empty($totalLables)) {
200 $maxKey = count($totalLables) - 1;
8cc574cf 201 if (isset($maxKey) && !empty($totalLables[$maxKey]['value'])) {
6a488035
TO
202 foreach ($totalLables[$maxKey]['value'] as $i => $v) {
203 if ($totalLables[$maxKey]['amount_id'][$i] == CRM_Utils_Array::value('default_discount_fee_id', $defaults)) {
204 $defaults['discounted_default'] = $i;
205 break;
206 }
207 }
208 }
209 }
210
211 if (!isset($defaults['discounted_default'])) {
212 $defaults['discounted_default'] = 1;
213 }
214
215 if (!isset($defaults['is_monetary'])) {
216 $defaults['is_monetary'] = 1;
217 }
218
219 if (!isset($defaults['fee_label'])) {
220 $defaults['fee_label'] = ts('Event Fee(s)');
221 }
222
223 if (!isset($defaults['pay_later_text']) ||
224 empty($defaults['pay_later_text'])
225 ) {
226 $defaults['pay_later_text'] = ts('I will send payment by check');
227 }
228
229 $this->_showHide = new CRM_Core_ShowHideBlocks();
230 if (!$defaults['is_monetary']) {
231 $this->_showHide->addHide('event-fees');
232 }
233
234 if (isset($defaults['price_set_id'])) {
235 $this->_showHide->addHide('map-field');
236 }
237 $this->_showHide->addToTemplate();
238 $this->assign('inDate', $this->_inDate);
239
a7488080 240 if (!empty($defaults['payment_processor'])) {
9f573c51 241 $defaults['payment_processor'] = str_replace(CRM_Core_DAO::VALUE_SEPARATOR, ',',
6a488035 242 $defaults['payment_processor']
9f573c51 243 );
6a488035
TO
244 }
245 return $defaults;
246 }
247
248 /**
66f9e52b 249 * Build the form object.
6a488035 250 *
355ba699 251 * @return void
6a488035
TO
252 */
253 public function buildQuickForm() {
254
255 $this->addYesNo('is_monetary',
256 ts('Paid Event'),
257 NULL,
258 NULL,
259 array('onclick' => "return showHideByValue('is_monetary','0','event-fees','block','radio',false);")
260 );
261
262 //add currency element.
263 $this->addCurrency('currency', ts('Currency'), FALSE);
264
265 $paymentProcessor = CRM_Core_PseudoConstant::paymentProcessor();
266
267 $this->assign('paymentProcessor', $paymentProcessor);
268
9f573c51
CW
269 $this->addEntityRef('payment_processor', ts('Payment Processor'), array(
270 'entity' => 'PaymentProcessor',
271 'multiple' => TRUE,
272 'select' => array('minimumInputLength' => 0),
273 ));
03e04002 274
275 // financial type
40c655aa
E
276 if (!CRM_Financial_BAO_FinancialType::isACLFinancialTypeStatus() ||
277 (CRM_Financial_BAO_FinancialType::isACLFinancialTypeStatus() && CRM_Core_Permission::check('administer CiviCRM Financial Types'))) {
a4ef4eac
E
278 $this->addSelect('financial_type_id');
279 }
40c655aa 280 else {
a4ef4eac
E
281 CRM_Financial_BAO_FinancialType::getAvailableFinancialTypes($financialTypes, 'add');
282 $this->addSelect('financial_type_id', array('context' => 'search', 'options' => $financialTypes));
283 }
6a488035
TO
284 // add pay later options
285 $this->addElement('checkbox', 'is_pay_later', ts('Enable Pay Later option?'), NULL,
286 array('onclick' => "return showHideByValue('is_pay_later','','payLaterOptions','block','radio',false);")
287 );
288 $this->addElement('textarea', 'pay_later_text', ts('Pay Later Label'),
289 CRM_Core_DAO::getAttribute('CRM_Event_DAO_Event', 'pay_later_text'),
290 FALSE
291 );
5d51a2f9 292 $this->add('wysiwyg', 'pay_later_receipt', ts('Pay Later Instructions'), CRM_Core_DAO::getAttribute('CRM_Event_DAO_Event', 'pay_later_receipt'));
6a488035 293
2b3fa30d 294 $this->addElement('checkbox', 'is_billing_required', ts('Billing address required'));
6a488035
TO
295 $this->add('text', 'fee_label', ts('Fee Label'));
296
9da8dc8c 297 $price = CRM_Price_BAO_PriceSet::getAssoc(FALSE, 'CiviEvent');
6a488035
TO
298 if (CRM_Utils_System::isNull($price)) {
299 $this->assign('price', FALSE);
300 }
301 else {
302 $this->assign('price', TRUE);
303 }
304 $this->add('select', 'price_set_id', ts('Price Set'),
305 array(
389bcebf 306 '' => ts('- none -'),
353ffa53 307 ) + $price,
6a488035
TO
308 NULL, array('onchange' => "return showHideByValue('price_set_id', '', 'map-field', 'block', 'select', false);")
309 );
8a4f27dc 310 $default = array($this->createElement('radio', NULL, NULL, NULL, 0));
6a488035
TO
311 $this->add('hidden', 'price_field_id', '', array('id' => 'price_field_id'));
312 for ($i = 1; $i <= self::NUM_OPTION; $i++) {
313 // label
314 $this->add('text', "label[$i]", ts('Label'), CRM_Core_DAO::getAttribute('CRM_Core_DAO_OptionValue', 'label'));
315 $this->add('hidden', "price_field_value[$i]", '', array('id' => "price_field_value[$i]"));
316
317 // value
318 $this->add('text', "value[$i]", ts('Value'), CRM_Core_DAO::getAttribute('CRM_Core_DAO_OptionValue', 'value'));
319 $this->addRule("value[$i]", ts('Please enter a valid money value for this field (e.g. %1).', array(1 => CRM_Utils_Money::format('99.99', ' '))), 'money');
320
321 // default
322 $default[] = $this->createElement('radio', NULL, NULL, NULL, $i);
323 }
324
325 $this->addGroup($default, 'default');
326
327 $this->addElement('checkbox', 'is_discount', ts('Discounts by Signup Date?'), NULL,
328 array('onclick' => "warnDiscountDel(); return showHideByValue('is_discount','','discount','block','radio',false);")
329 );
330 $discountSection = $this->get('discountSection');
331
332 $this->assign('discountSection', $discountSection);
333
334 // form fields of Discount sets
335 $defaultOption = array();
336 $_showHide = new CRM_Core_ShowHideBlocks('', '');
337
338 for ($i = 1; $i <= self::NUM_DISCOUNT; $i++) {
339 //the show hide blocks
340 $showBlocks = 'discount_' . $i;
341 if ($i > 2) {
342 $_showHide->addHide($showBlocks);
343 }
344 else {
345 $_showHide->addShow($showBlocks);
346 }
347
348 //Increment by 1 of start date of previous end date.
349 if (is_array($this->_submitValues) &&
350 !empty($this->_submitValues['discount_name'][$i]) &&
351 !empty($this->_submitValues['discount_name'][$i + 1]) &&
352 isset($this->_submitValues['discount_end_date']) &&
353 isset($this->_submitValues['discount_end_date'][$i]) &&
354 $i < self::NUM_DISCOUNT - 1
355 ) {
356 $end_date = CRM_Utils_Date::processDate($this->_submitValues['discount_end_date'][$i]);
357 if (!empty($this->_submitValues['discount_end_date'][$i + 1])
358 && empty($this->_submitValues['discount_start_date'][$i + 1])
359 ) {
360 list($this->_submitValues['discount_start_date'][$i + 1]) = CRM_Utils_Date::setDateDefaults(date('Y-m-d', strtotime("+1 days $end_date")));
361 }
362 }
363 //Decrement by 1 of end date from next start date.
364 if ($i > 1 &&
365 is_array($this->_submitValues) &&
366 !empty($this->_submitValues['discount_name'][$i]) &&
367 !empty($this->_submitValues['discount_name'][$i - 1]) &&
368 isset($this->_submitValues['discount_start_date']) &&
369 isset($this->_submitValues['discount_start_date'][$i])
370 ) {
371 $start_date = CRM_Utils_Date::processDate($this->_submitValues['discount_start_date'][$i]);
372 if (!empty($this->_submitValues['discount_start_date'][$i])
373 && empty($this->_submitValues['discount_end_date'][$i - 1])
374 ) {
375 list($this->_submitValues['discount_end_date'][$i - 1]) = CRM_Utils_Date::setDateDefaults(date('Y-m-d', strtotime("-1 days $start_date")));
376 }
377 }
378
379 //discount name
380 $this->add('text', 'discount_name[' . $i . ']', ts('Discount Name'),
9da8dc8c 381 CRM_Core_DAO::getAttribute('CRM_Price_DAO_PriceSet', 'title')
6a488035
TO
382 );
383
384 $this->add('hidden', "discount_price_set[$i]", '', array('id' => "discount_price_set[$i]"));
6a488035
TO
385
386 //discount start date
387 $this->addDate('discount_start_date[' . $i . ']', ts('Discount Start Date'), FALSE, array('formatType' => 'activityDate'));
388
389 //discount end date
390 $this->addDate('discount_end_date[' . $i . ']', ts('Discount End Date'), FALSE, array('formatType' => 'activityDate'));
391 }
392 $_showHide->addToTemplate();
393 $this->addElement('submit', $this->getButtonName('submit'), ts('Add Discount Set to Fee Table'),
97e557d7 394 array('class' => 'crm-form-submit cancel')
6a488035
TO
395 );
396
397 $this->buildAmountLabel();
398 parent::buildQuickForm();
399 }
400
401 /**
66f9e52b 402 * Add local and global form rules.
6a488035 403 *
6a488035
TO
404 *
405 * @return void
406 */
00be9182 407 public function addRules() {
6a488035
TO
408 $this->addFormRule(array('CRM_Event_Form_ManageEvent_Fee', 'formRule'));
409 }
410
411 /**
66f9e52b 412 * Global validation rules for the form.
6a488035 413 *
d4dd1e85
TO
414 * @param array $values
415 * Posted values of the form.
6a488035 416 *
a6c01b45
CW
417 * @return array
418 * list of errors to be posted back to the form
6a488035 419 */
00be9182 420 public static function formRule($values) {
6a488035 421 $errors = array();
a7488080 422 if (!empty($values['is_discount'])) {
353ffa53
TO
423 $occurDiscount = array_count_values($values['discount_name']);
424 $countemptyrows = 0;
6a488035
TO
425 $countemptyvalue = 0;
426 for ($i = 1; $i <= self::NUM_DISCOUNT; $i++) {
427 $start_date = $end_date = NULL;
a7488080
CW
428 if (!empty($values['discount_name'][$i])) {
429 if (!empty($values['discount_start_date'][$i])) {
6a488035
TO
430 $start_date = ($values['discount_start_date'][$i]) ? CRM_Utils_Date::processDate($values['discount_start_date'][$i]) : 0;
431 }
a7488080 432 if (!empty($values['discount_end_date'][$i])) {
6a488035
TO
433 $end_date = ($values['discount_end_date'][$i]) ? CRM_Utils_Date::processDate($values['discount_end_date'][$i]) : 0;
434 }
435
436 if ($start_date && $end_date && strcmp($end_date, $start_date) < 0) {
437 $errors["discount_end_date[$i]"] = ts('The discount end date cannot be prior to the start date.');
438 }
439
440 if (!$start_date && !$end_date) {
441 $errors["discount_start_date[$i]"] = $errors["discount_end_date[$i]"] = ts('Please specify either start date or end date.');
442 }
443
444 if ($i > 1) {
445 $end_date_1 = ($values['discount_end_date'][$i - 1]) ? CRM_Utils_Date::processDate($values['discount_end_date'][$i - 1]) : 0;
446 if ($start_date && $end_date_1 && strcmp($end_date_1, $start_date) >= 0) {
447 $errors["discount_start_date[$i]"] = ts('Select non-overlapping discount start date.');
448 }
449 elseif (!$start_date && !$end_date_1) {
450 $j = $i - 1;
451 $errors["discount_start_date[$i]"] = $errors["discount_end_date[$j]"] = ts('Select either of the dates.');
452 }
453 }
454
4f99ca55
TO
455 foreach ($occurDiscount as $key => $value) {
456 if ($value > 1 && $key <> '') {
0479b4c8
TO
457 if ($key == $values['discount_name'][$i]) {
458 $errors['discount_name[' . $i . ']'] = ts('%1 is already used for Discount Name.', array(1 => $key));
459 }
4f99ca55 460 }
6a488035
TO
461 }
462
463 //validation for discount labels and values
464 for ($index = (self::NUM_OPTION); $index > 0; $index--) {
465 $label = TRUE;
466 if (empty($values['discounted_label'][$index]) && !empty($values['discounted_value'][$index][$i])) {
467 $label = FALSE;
468 if (!$label) {
469 $errors["discounted_label[{$index}]"] = ts('Label cannot be empty.');
470 }
471 }
472 if (!empty($values['discounted_label'][$index])) {
473 $duplicateIndex = CRM_Utils_Array::key($values['discounted_label'][$index], $values['discounted_label']);
474
475 if ((!($duplicateIndex === FALSE)) && (!($duplicateIndex == $index))) {
476 $errors["discounted_label[{$index}]"] = ts('Duplicate label value');
477 }
478 }
479 if (empty($values['discounted_label'][$index]) && empty($values['discounted_value'][$index][$i])) {
480 $countemptyrows++;
481 }
482 if (empty($values['discounted_value'][$index][$i])) {
483 $countemptyvalue++;
484 }
485 }
a7488080 486 if (!empty($values['_qf_Fee_next']) && ($countemptyrows == 11 || $countemptyvalue == 11)) {
6a488035
TO
487 $errors["discounted_label[1]"] = $errors["discounted_value[1][$i]"] = ts('At least one fee should be entered for your Discount Set. If you do not see the table to enter discount fees, click the "Add Discount Set to Fee Table" button.');
488 }
489 }
490 }
491 }
03e04002 492 if ($values['is_monetary']) {
6a488035
TO
493 //check if financial type is selected
494 if (!$values['financial_type_id']) {
495 $errors['financial_type_id'] = ts("Please select financial type.");
496 }
497
498 //check for the event fee label (mandatory)
499 if (!$values['fee_label']) {
500 $errors['fee_label'] = ts('Please enter the fee label for the paid event.');
501 }
502
a7488080 503 if (empty($values['price_set_id'])) {
6a488035
TO
504 //check fee label and amount
505 $check = 0;
506 $optionKeys = array();
507 foreach ($values['label'] as $key => $val) {
508 if (trim($val) && trim($values['value'][$key])) {
509 $optionKeys[$key] = $key;
510 $check++;
511 }
512 }
513
514 $default = CRM_Utils_Array::value('default', $values);
515 if ($default && !in_array($default, $optionKeys)) {
516 $errors['default'] = ts('Please select an appropriate option as default.');
517 }
518
519 if (!$check) {
520 if (!$values['label'][1]) {
521 $errors['label[1]'] = ts('Please enter a label for at least one fee level.');
522 }
523 if (!$values['value'][1]) {
524 $errors['value[1]'] = ts('Please enter an amount for at least one fee level.');
525 }
526 }
527 }
528 if (isset($values['is_pay_later'])) {
529 if (empty($values['pay_later_text'])) {
530 $errors['pay_later_text'] = ts('Please enter the Pay Later prompt to be displayed on the Registration form.');
531 }
532 if (empty($values['pay_later_receipt'])) {
533 $errors['pay_later_receipt'] = ts('Please enter the Pay Later instructions to be displayed to your users.');
534 }
535 }
536 }
537 return empty($errors) ? TRUE : $errors;
538 }
539
540 public function buildAmountLabel() {
541 $default = array();
542 for ($i = 1; $i <= self::NUM_OPTION; $i++) {
543 // label
544 $this->add('text', "discounted_label[$i]", ts('Label'), CRM_Core_DAO::getAttribute('CRM_Core_DAO_OptionValue', 'label'));
545 // value
546 for ($j = 1; $j <= self::NUM_DISCOUNT; $j++) {
547 $this->add('text', "discounted_value[$i][$j]", ts('Value'), array('size' => 10));
548 $this->addRule("discounted_value[$i][$j]", ts('Please enter a valid money value for this field (e.g. %1).', array(1 => CRM_Utils_Money::format('99.99', ' '))), 'money');
549 }
550
551 // default
552 $default[] = $this->createElement('radio', NULL, NULL, NULL, $i);
553 }
554
555 $this->addGroup($default, 'discounted_default');
556 }
557
558 /**
66f9e52b 559 * Process the form.
6a488035
TO
560 *
561 * @return void
6a488035
TO
562 */
563 public function postProcess() {
6a488035 564 $eventTitle = '';
353ffa53 565 $params = $this->exportValues();
6a488035
TO
566
567 $this->set('discountSection', 0);
568
a7488080 569 if (!empty($_POST['_qf_Fee_submit'])) {
6a488035
TO
570 $this->buildAmountLabel();
571 $this->set('discountSection', 2);
572 return;
573 }
574
9f573c51
CW
575 if (!empty($params['payment_processor'])) {
576 $params['payment_processor'] = str_replace(',', CRM_Core_DAO::VALUE_SEPARATOR, $params['payment_processor']);
6a488035
TO
577 }
578 else {
579 $params['payment_processor'] = 'null';
580 }
581
582 $params['is_pay_later'] = CRM_Utils_Array::value('is_pay_later', $params, 0);
e45f6ab0 583 $params['is_billing_required'] = CRM_Utils_Array::value('is_billing_required', $params, 0);
6a488035
TO
584
585 if ($this->_id) {
586
587 // delete all the prior label values or discounts in the custom options table
588 // and delete a price set if one exists
b2cdd843
EM
589 //@todo note that this removes the reference from existing participants -
590 // even where there is not change - redress?
591 // note that a more tentative form of this is invoked by passing price_set_id as an array
592 // to event.create see CRM-14069
593 // @todo get all of this logic out of form layer (currently partially in BAO/api layer)
9da8dc8c 594 if (CRM_Price_BAO_PriceSet::removeFrom('civicrm_event', $this->_id)) {
0479b4c8 595 CRM_Core_BAO_Discount::del($this->_id, 'civicrm_event');
6a488035
TO
596 }
597 }
598
599 if ($params['is_monetary']) {
a7488080 600 if (!empty($params['price_set_id'])) {
b2cdd843
EM
601 //@todo this is now being done in the event BAO if passed price_set_id as an array
602 // per notes on that fn - looking at the api converting to an array
603 // so calling via the api may cause this to be done in the api
9da8dc8c 604 CRM_Price_BAO_PriceSet::addTo('civicrm_event', $this->_id, $params['price_set_id']);
a7488080 605 if (!empty($params['price_field_id'])) {
9da8dc8c 606 $priceSetID = CRM_Core_DAO::getFieldValue('CRM_Price_DAO_PriceField', $params['price_field_id'], 'price_set_id');
0479b4c8 607 CRM_Price_BAO_PriceSet::setIsQuickConfig($priceSetID, 0);
6a488035
TO
608 }
609 }
610 else {
611 // if there are label / values, create custom options for them
353ffa53
TO
612 $labels = CRM_Utils_Array::value('label', $params);
613 $values = CRM_Utils_Array::value('value', $params);
6a488035
TO
614 $default = CRM_Utils_Array::value('default', $params);
615 $options = array();
616 if (!CRM_Utils_System::isNull($labels) && !CRM_Utils_System::isNull($values)) {
617 for ($i = 1; $i < self::NUM_OPTION; $i++) {
618 if (!empty($labels[$i]) && !CRM_Utils_System::isNull($values[$i])) {
0479b4c8 619 $options[] = array(
353ffa53 620 'label' => trim($labels[$i]),
6a488035
TO
621 'value' => CRM_Utils_Rule::cleanMoney(trim($values[$i])),
622 'weight' => $i,
623 'is_active' => 1,
21dfd5f5 624 'is_default' => $default == $i,
6a488035
TO
625 );
626 }
627 }
628 if (!empty($options)) {
629 $params['default_fee_id'] = NULL;
a7488080
CW
630 if (empty($params['price_set_id'])) {
631 if (empty($params['price_field_id'])) {
6a488035
TO
632 $setParams['title'] = $eventTitle = ($this->_isTemplate) ? $this->_defaultValues['template_title'] : $this->_defaultValues['title'];
633 $eventTitle = strtolower(CRM_Utils_String::munge($eventTitle, '_', 245));
9da8dc8c 634 if (!CRM_Core_DAO::getFieldValue('CRM_Price_BAO_PriceSet', $eventTitle, 'id', 'name')) {
6a488035
TO
635 $setParams['name'] = $eventTitle;
636 }
9da8dc8c 637 elseif (!CRM_Core_DAO::getFieldValue('CRM_Price_BAO_PriceSet', $eventTitle . '_' . $this->_id, 'id', 'name')) {
6a488035
TO
638 $setParams['name'] = $eventTitle . '_' . $this->_id;
639 }
640 else {
0479b4c8 641 $timeSec = explode('.', microtime(TRUE));
6a488035
TO
642 $setParams['name'] = $eventTitle . '_' . date('is', $timeSec[0]) . $timeSec[1];
643 }
644 $setParams['is_quick_config'] = 1;
cc9b58f3 645 $setParams['financial_type_id'] = $params['financial_type_id'];
6a488035 646 $setParams['extends'] = CRM_Core_Component::getComponentID('CiviEvent');
9da8dc8c 647 $priceSet = CRM_Price_BAO_PriceSet::create($setParams);
6a488035 648
5778c444 649 $fieldParams['name'] = strtolower(CRM_Utils_String::munge($params['fee_label'], '_', 245));
6a488035
TO
650 $fieldParams['price_set_id'] = $priceSet->id;
651 }
652 else {
653 foreach ($params['price_field_value'] as $arrayID => $fieldValueID) {
654 if (empty($params['label'][$arrayID]) && empty($params['value'][$arrayID]) && !empty($fieldValueID)) {
9da8dc8c 655 CRM_Price_BAO_PriceFieldValue::setIsActive($fieldValueID, '0');
6a488035
TO
656 unset($params['price_field_value'][$arrayID]);
657 }
658 }
659 $fieldParams['id'] = CRM_Utils_Array::value('price_field_id', $params);
660 $fieldParams['option_id'] = $params['price_field_value'];
cdeb4bdf 661
9da8dc8c 662 $priceSet = new CRM_Price_BAO_PriceSet();
663 $priceSet->id = CRM_Core_DAO::getFieldValue('CRM_Price_DAO_PriceField', CRM_Utils_Array::value('price_field_id', $params), 'price_set_id');
cdeb4bdf 664
cc9b58f3 665 if ($this->_defaultValues['financial_type_id'] != $params['financial_type_id']) {
cdeb4bdf 666 CRM_Core_DAO::setFieldValue('CRM_Price_DAO_PriceSet', $priceSet->id, 'financial_type_id', $params['financial_type_id']);
cc9b58f3 667 }
6a488035 668 }
5778c444 669 $fieldParams['label'] = $params['fee_label'];
6a488035 670 $fieldParams['html_type'] = 'Radio';
9da8dc8c 671 CRM_Price_BAO_PriceSet::addTo('civicrm_event', $this->_id, $priceSet->id);
6a488035
TO
672 $fieldParams['option_label'] = $params['label'];
673 $fieldParams['option_amount'] = $params['value'];
674 $fieldParams['financial_type_id'] = $params['financial_type_id'];
ddca8f33
TO
675 foreach ($options as $value) {
676 $fieldParams['option_weight'][$value['weight']] = $value['weight'];
0479b4c8 677 }
6a488035 678 $fieldParams['default_option'] = $params['default'];
9da8dc8c 679 $priceField = CRM_Price_BAO_PriceField::create($fieldParams);
6a488035
TO
680 }
681 }
682 }
683
0479b4c8 684 $discountPriceSets = !empty($this->_defaultValues['discount_price_set']) ? $this->_defaultValues['discount_price_set'] : array();
353ffa53 685 $discountFieldIDs = !empty($this->_defaultValues['discount_option_id']) ? $this->_defaultValues['discount_option_id'] : array();
6a488035
TO
686 if (CRM_Utils_Array::value('is_discount', $params) == 1) {
687 // if there are discounted set of label / values,
688 // create custom options for them
353ffa53
TO
689 $labels = CRM_Utils_Array::value('discounted_label', $params);
690 $values = CRM_Utils_Array::value('discounted_value', $params);
6a488035
TO
691 $default = CRM_Utils_Array::value('discounted_default', $params);
692
693 if (!CRM_Utils_System::isNull($labels) && !CRM_Utils_System::isNull($values)) {
694 for ($j = 1; $j <= self::NUM_DISCOUNT; $j++) {
695 $discountOptions = array();
696 for ($i = 1; $i < self::NUM_OPTION; $i++) {
697 if (!empty($labels[$i]) &&
d6399f06 698 !CRM_Utils_System::isNull(CRM_Utils_Array::value($j, $values[$i]))
699 ) {
700 $discountOptions[] = array(
701 'label' => trim($labels[$i]),
6a488035
TO
702 'value' => CRM_Utils_Rule::cleanMoney(trim($values[$i][$j])),
703 'weight' => $i,
704 'is_active' => 1,
21dfd5f5 705 'is_default' => $default == $i,
6a488035
TO
706 );
707 }
708 }
709
710 if (!empty($discountOptions)) {
711 $fieldParams = array();
712 $params['default_discount_fee_id'] = NULL;
0479b4c8 713 $keyCheck = $j - 1;
d8fe9408 714 $setParams = array();
a7488080 715 if (empty($discountPriceSets[$keyCheck])) {
6a488035
TO
716 if (!$eventTitle) {
717 $eventTitle = strtolower(CRM_Utils_String::munge($this->_defaultValues['title'], '_', 200));
718 }
719 $setParams['title'] = $params['discount_name'][$j];
9da8dc8c 720 if (!CRM_Core_DAO::getFieldValue('CRM_Price_BAO_PriceSet', $eventTitle . '_' . $params['discount_name'][$j], 'id', 'name')) {
6a488035
TO
721 $setParams['name'] = $eventTitle . '_' . $params['discount_name'][$j];
722 }
9da8dc8c 723 elseif (!CRM_Core_DAO::getFieldValue('CRM_Price_BAO_PriceSet', $eventTitle . '_' . $params['discount_name'][$j] . '_' . $this->_id, 'id', 'name')) {
6a488035
TO
724 $setParams['name'] = $eventTitle . '_' . $params['discount_name'][$j] . '_' . $this->_id;
725 }
726 else {
0479b4c8 727 $timeSec = explode('.', microtime(TRUE));
6a488035
TO
728 $setParams['name'] = $eventTitle . '_' . $params['discount_name'][$j] . '_' . date('is', $timeSec[0]) . $timeSec[1];
729 }
730 $setParams['is_quick_config'] = 1;
cc9b58f3 731 $setParams['financial_type_id'] = $params['financial_type_id'];
6a488035 732 $setParams['extends'] = CRM_Core_Component::getComponentID('CiviEvent');
9da8dc8c 733 $priceSet = CRM_Price_BAO_PriceSet::create($setParams);
6a488035 734 $priceSetID = $priceSet->id;
b2cdd843 735 }
d8fe9408 736 else {
0479b4c8
TO
737 $priceSetID = $discountPriceSets[$j - 1];
738 $setParams = array(
d8fe9408
PN
739 'title' => $params['discount_name'][$j],
740 'id' => $priceSetID,
741 );
cc9b58f3 742 if ($this->_defaultValues['financial_type_id'] != $params['financial_type_id']) {
d8fe9408 743 $setParams['financial_type_id'] = $params['financial_type_id'];
cc9b58f3 744 }
d8fe9408 745 CRM_Price_BAO_PriceSet::create($setParams);
0479b4c8 746 unset($discountPriceSets[$j - 1]);
9da8dc8c 747 $fieldParams['id'] = CRM_Core_DAO::getFieldValue('CRM_Price_BAO_PriceField', $priceSetID, 'id', 'price_set_id');
6a488035
TO
748 }
749
750 $fieldParams['name'] = $fieldParams['label'] = $params['fee_label'];
751 $fieldParams['is_required'] = 1;
752 $fieldParams['price_set_id'] = $priceSetID;
753 $fieldParams['html_type'] = 'Radio';
754 $fieldParams['financial_type_id'] = $params['financial_type_id'];
755 foreach ($discountOptions as $value) {
756 $fieldParams['option_label'][$value['weight']] = $value['label'];
757 $fieldParams['option_amount'][$value['weight']] = $value['value'];
758 $fieldParams['option_weight'][$value['weight']] = $value['weight'];
a7488080 759 if (!empty($value['is_default'])) {
6a488035
TO
760 $fieldParams['default_option'] = $value['weight'];
761 }
8cc574cf 762 if (!empty($discountFieldIDs[$j]) && !empty($discountFieldIDs[$j][$value['weight']])) {
d8fe9408
PN
763 $fieldParams['option_id'][$value['weight']] = $discountFieldIDs[$j][$value['weight']];
764 unset($discountFieldIDs[$j][$value['weight']]);
6a488035
TO
765 }
766 }
767 //create discount priceset
9da8dc8c 768 $priceField = CRM_Price_BAO_PriceField::create($fieldParams);
d8fe9408 769 if (!empty($discountFieldIDs[$j])) {
9b873358 770 foreach ($discountFieldIDs[$j] as $fID) {
9da8dc8c 771 CRM_Price_BAO_PriceFieldValue::setIsActive($fID, '0');
6a488035
TO
772 }
773 }
774
775 $discountParams = array(
776 'entity_table' => 'civicrm_event',
777 'entity_id' => $this->_id,
778 'price_set_id' => $priceSetID,
779 'start_date' => CRM_Utils_Date::processDate($params['discount_start_date'][$j]),
780 'end_date' => CRM_Utils_Date::processDate($params['discount_end_date'][$j]),
353ffa53 781 );
6a488035
TO
782 CRM_Core_BAO_Discount::add($discountParams);
783 }
784 }
785 }
786 }
787 if (!empty($discountPriceSets)) {
788 foreach ($discountPriceSets as $setId) {
9da8dc8c 789 CRM_Price_BAO_PriceSet::setIsQuickConfig($setId, 0);
6a488035
TO
790 }
791 }
792 }
a06f8589
PJ
793 }
794 else {
a7488080 795 if (!empty($params['price_field_id'])) {
9da8dc8c 796 $priceSetID = CRM_Core_DAO::getFieldValue('CRM_Price_DAO_PriceField', $params['price_field_id'], 'price_set_id');
0479b4c8 797 CRM_Price_BAO_PriceSet::setIsQuickConfig($priceSetID, 0);
6a488035
TO
798 }
799 $params['financial_type_id'] = '';
a06f8589 800 $params['is_pay_later'] = 0;
e45f6ab0
PB
801 $params['is_billing_required'] = 0;
802 }
803
d75f2f47 804 //update 'is_billing_required'
e45f6ab0 805 if (empty($params['is_pay_later'])) {
0479b4c8 806 $params['is_billing_required'] = FALSE;
6a488035
TO
807 }
808
809 //update events table
810 $params['id'] = $this->_id;
cc9b58f3
PN
811 // skip update of financial type in price set
812 $params['skipFinancialType'] = TRUE;
6a488035
TO
813 CRM_Event_BAO_Event::add($params);
814
5d92a7e7
CW
815 // Update tab "disabled" css class
816 $this->ajaxResponse['tabValid'] = !empty($params['is_monetary']);
6a488035
TO
817 parent::endPostProcess();
818 }
819
820 /**
821 * Return a descriptive name for the page, used in wizard header
822 *
823 * @return string
6a488035
TO
824 */
825 public function getTitle() {
826 return ts('Event Fees');
827 }
96025800 828
6a488035 829}