CRM-16929 rework calculate tpl to be more robust and generic
[civicrm-core.git] / CRM / Price / Form / Field.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 * form to process actions on the field aspect of Price
38 */
39class CRM_Price_Form_Field extends CRM_Core_Form {
40
41 /**
42 * Constants for number of options for data types of multiple option.
43 */
7da04cde 44 const NUM_OPTION = 15;
6a488035
TO
45
46 /**
fe482240 47 * The custom set id saved to the session for an update.
6a488035
TO
48 *
49 * @var int
6a488035
TO
50 */
51 protected $_sid;
52
53 /**
54 * The field id, used when editing the field
55 *
56 * @var int
6a488035
TO
57 */
58 protected $_fid;
59
60 /**
fe482240 61 * The extended component Id.
6a488035
TO
62 *
63 * @var array
6a488035
TO
64 */
65 protected $_extendComponentId;
66
67 /**
fe482240 68 * Variable is set if price set is used for membership.
6a488035
TO
69 */
70 protected $_useForMember;
71
72 /**
fe482240 73 * Set variables up before form is built.
6a488035
TO
74 */
75 public function preProcess() {
76
77 $this->_sid = CRM_Utils_Request::retrieve('sid', 'Positive', $this, FALSE, NULL, 'REQUEST');
78 $this->_fid = CRM_Utils_Request::retrieve('fid', 'Positive', $this, FALSE, NULL, 'REQUEST');
353ffa53 79 $url = CRM_Utils_System::url('civicrm/admin/price/field', "reset=1&action=browse&sid={$this->_sid}");
704f21c0 80 $breadCrumb = array(array('title' => ts('Price Set Fields'), 'url' => $url));
6a488035
TO
81
82 $this->_extendComponentId = array();
9da8dc8c 83 $extendComponentId = CRM_Core_DAO::getFieldValue('CRM_Price_DAO_PriceSet', $this->_sid, 'extends', 'id');
6a488035
TO
84 if ($extendComponentId) {
85 $this->_extendComponentId = explode(CRM_Core_DAO::VALUE_SEPARATOR, $extendComponentId);
86 }
87
88 CRM_Utils_System::appendBreadCrumb($breadCrumb);
704f21c0 89
e2046b33 90 $this->setPageTitle(ts('Price Field'));
6a488035
TO
91 }
92
93 /**
c490a46a 94 * Set default values for the form. Note that in edit/view mode
6a488035
TO
95 * the default values are retrieved from the database
96 *
a6c01b45
CW
97 * @return array
98 * array of default values
6a488035 99 */
00be9182 100 public function setDefaultValues() {
6a488035
TO
101 $defaults = array();
102 // is it an edit operation ?
103 if (isset($this->_fid)) {
104 $params = array('id' => $this->_fid);
105 $this->assign('fid', $this->_fid);
9da8dc8c 106 CRM_Price_BAO_PriceField::retrieve($params, $defaults);
6a488035
TO
107 $this->_sid = $defaults['price_set_id'];
108
109 // if text, retrieve price
110 if ($defaults['html_type'] == 'Text') {
fc8edfbf 111 $isActive = $defaults['is_active'];
6a488035
TO
112 $valueParams = array('price_field_id' => $this->_fid);
113
9da8dc8c 114 CRM_Price_BAO_PriceFieldValue::retrieve($valueParams, $defaults);
6a488035
TO
115
116 // fix the display of the monetary value, CRM-4038
117 $defaults['price'] = CRM_Utils_Money::format($defaults['amount'], NULL, '%a');
ff33ddc8 118 $defaults['is_active'] = $isActive;
6a488035
TO
119 }
120
a7488080 121 if (!empty($defaults['active_on'])) {
6a488035
TO
122 list($defaults['active_on'],
123 $defaults['active_on_time']
353ffa53 124 ) = CRM_Utils_Date::setDateDefaults($defaults['active_on'], 'activityDateTime');
6a488035
TO
125 }
126
a7488080 127 if (!empty($defaults['expire_on'])) {
6a488035
TO
128 list($defaults['expire_on'],
129 $defaults['expire_on_time']
353ffa53 130 ) = CRM_Utils_Date::setDateDefaults($defaults['expire_on'], 'activityDateTime');
6a488035
TO
131 }
132 }
133 else {
134 $defaults['is_active'] = 1;
135 for ($i = 1; $i <= self::NUM_OPTION; $i++) {
136 $defaults['option_status[' . $i . ']'] = 1;
137 $defaults['option_weight[' . $i . ']'] = $i;
138 }
139 }
140
141 if ($this->_action & CRM_Core_Action::ADD) {
142 $fieldValues = array('price_set_id' => $this->_sid);
9da8dc8c 143 $defaults['weight'] = CRM_Utils_Weight::getDefaultWeight('CRM_Price_DAO_PriceField', $fieldValues);
6a488035
TO
144 $defaults['options_per_line'] = 1;
145 $defaults['is_display_amounts'] = 1;
146 }
0495a6a4 147 $enabledComponents = CRM_Core_Component::getEnabledComponents();
148 $eventComponentId = NULL;
ba1dcfda 149 if (array_key_exists('CiviEvent', $enabledComponents)) {
353ffa53 150 $eventComponentId = CRM_Core_Component::getComponentID('CiviEvent');
0495a6a4 151 }
6a488035
TO
152
153 if (isset($this->_sid) && $this->_action == CRM_Core_Action::ADD) {
9da8dc8c 154 $financialTypeId = CRM_Core_DAO::getFieldValue('CRM_Price_DAO_PriceSet', $this->_sid, 'financial_type_id');
6a488035
TO
155 $defaults['financial_type_id'] = $financialTypeId;
156 for ($i = 1; $i <= self::NUM_OPTION; $i++) {
157 $defaults['option_financial_type_id[' . $i . ']'] = $financialTypeId;
158 }
159 }
160 return $defaults;
161 }
162
163 /**
fe482240 164 * Build the form object.
6a488035
TO
165 */
166 public function buildQuickForm() {
167 // lets trim all the whitespace
168 $this->applyFilter('__ALL__', 'trim');
169
170 // add a hidden field to remember the price set id
171 // this get around the browser tab issue
172 $this->add('hidden', 'sid', $this->_sid);
173 $this->add('hidden', 'fid', $this->_fid);
174
175 // label
9da8dc8c 176 $this->add('text', 'label', ts('Field Label'), CRM_Core_DAO::getAttribute('CRM_Price_DAO_PriceField', 'label'), TRUE);
6a488035
TO
177
178 // html_type
179 $javascript = 'onchange="option_html_type(this.form)";';
180
9da8dc8c 181 $htmlTypes = CRM_Price_BAO_PriceField::htmlTypes();
6a488035
TO
182
183 // Text box for Participant Count for a field
184
185 // Financial Type
186 $financialType = CRM_Financial_BAO_FinancialType::getIncomeFinancialType();
53df1142 187 foreach ($financialType as $finTypeId => $type) {
40c655aa 188 if (CRM_Financial_BAO_FinancialType::isACLFinancialTypeStatus()
66af7c48
PN
189 && !CRM_Core_Permission::check('add contributions of type ' . $type)
190 ) {
53df1142
E
191 unset($financialType[$finTypeId]);
192 }
193 }
6a488035
TO
194 if (count($financialType)) {
195 $this->assign('financialType', $financialType);
196 }
0495a6a4 197 $enabledComponents = CRM_Core_Component::getEnabledComponents();
198 $eventComponentId = $memberComponentId = NULL;
ba1dcfda 199 if (array_key_exists('CiviEvent', $enabledComponents)) {
353ffa53 200 $eventComponentId = CRM_Core_Component::getComponentID('CiviEvent');
0495a6a4 201 }
ba1dcfda 202 if (array_key_exists('CiviMember', $enabledComponents)) {
0495a6a4 203 $memberComponentId = CRM_Core_Component::getComponentID('CiviMember');
204 }
366fe2a3 205
353ffa53 206 $attributes = CRM_Core_DAO::getAttribute('CRM_Price_DAO_PriceFieldValue');
366fe2a3 207
208 $this->add('select', 'financial_type_id',
209 ts('Financial Type'),
ba1dcfda 210 array(' ' => ts('- select -')) + $financialType
6a488035
TO
211 );
212
213 $this->assign('useForMember', FALSE);
214 if (in_array($eventComponentId, $this->_extendComponentId)) {
215 $this->add('text', 'count', ts('Participant Count'), $attributes['count']);
216
217 $this->addRule('count', ts('Participant Count should be a positive number'), 'positiveInteger');
218
219 $this->add('text', 'max_value', ts('Max Participants'), $attributes['max_value']);
220 $this->addRule('max_value', ts('Please enter a valid Max Participants.'), 'positiveInteger');
221
222 $this->assign('useForEvent', TRUE);
223 }
224 else {
225 if (in_array($memberComponentId, $this->_extendComponentId)) {
226 $this->_useForMember = 1;
227 $this->assign('useForMember', $this->_useForMember);
228 }
229 $this->assign('useForEvent', FALSE);
230 }
231
232 $sel = $this->add('select', 'html_type', ts('Input Field Type'),
233 $htmlTypes, TRUE, $javascript
234 );
235
236 // price (for text inputs)
237 $this->add('text', 'price', ts('Price'));
238 $this->registerRule('price', 'callback', 'money', 'CRM_Utils_Rule');
239 $this->addRule('price', ts('must be a monetary value'), 'money');
240
241 if ($this->_action == CRM_Core_Action::UPDATE) {
242 $this->freeze('html_type');
243 }
244
245 // form fields of Custom Option rows
246 $_showHide = new CRM_Core_ShowHideBlocks('', '');
247
248 for ($i = 1; $i <= self::NUM_OPTION; $i++) {
249
250 //the show hide blocks
251 $showBlocks = 'optionField_' . $i;
252 if ($i > 2) {
253 $_showHide->addHide($showBlocks);
254 if ($i == self::NUM_OPTION) {
255 $_showHide->addHide('additionalOption');
256 }
257 }
258 else {
259 $_showHide->addShow($showBlocks);
260 }
261 // label
262 $attributes['label']['size'] = 25;
263 $this->add('text', 'option_label[' . $i . ']', ts('Label'), $attributes['label']);
264
265 // amount
266 $this->add('text', 'option_amount[' . $i . ']', ts('Amount'), $attributes['amount']);
267 $this->addRule('option_amount[' . $i . ']', ts('Please enter a valid amount for this field.'), 'money');
268
269 //Financial Type
270 $this->add(
366fe2a3 271 'select',
92fcb95f 272 'option_financial_type_id[' . $i . ']',
366fe2a3 273 ts('Financial Type'),
274 array('' => ts('- select -')) + $financialType
6a488035
TO
275 );
276 if (in_array($eventComponentId, $this->_extendComponentId)) {
277 // count
278 $this->add('text', 'option_count[' . $i . ']', ts('Participant Count'), $attributes['count']);
279 $this->addRule('option_count[' . $i . ']', ts('Please enter a valid Participants Count.'), 'positiveInteger');
280
281 // max_value
282 $this->add('text', 'option_max_value[' . $i . ']', ts('Max Participants'), $attributes['max_value']);
283 $this->addRule('option_max_value[' . $i . ']', ts('Please enter a valid Max Participants.'), 'positiveInteger');
284
285 // description
286 //$this->add('textArea', 'option_description['.$i.']', ts('Description'), array('rows' => 1, 'cols' => 40 ));
287 }
288 elseif (in_array($memberComponentId, $this->_extendComponentId)) {
289 $membershipTypes = CRM_Member_PseudoConstant::membershipType();
290 $js = array('onchange' => "calculateRowValues( $i );");
291
292 $this->add('select', 'membership_type_id[' . $i . ']', ts('Membership Type'),
ae5ffbb7 293 array('' => ' ') + $membershipTypes, FALSE, $js
353ffa53 294 );
896bd22c 295 $this->add('text', 'membership_num_terms[' . $i . ']', ts('Number of Terms'), CRM_Utils_Array::value('membership_num_terms', $attributes));
6a488035
TO
296 }
297
298 // weight
299 $this->add('text', 'option_weight[' . $i . ']', ts('Order'), $attributes['weight']);
300
301 // is active ?
302 $this->add('checkbox', 'option_status[' . $i . ']', ts('Active?'));
303
304 $defaultOption[$i] = $this->createElement('radio', NULL, NULL, NULL, $i);
305
306 //for checkbox handling of default option
307 $this->add('checkbox', "default_checkbox_option[$i]", NULL);
308 }
309 //default option selection
310 $this->addGroup($defaultOption, 'default_option');
311 $_showHide->addToTemplate();
312
313 // is_display_amounts
314 $this->add('checkbox', 'is_display_amounts', ts('Display Amount?'));
315
316 // weight
9da8dc8c 317 $this->add('text', 'weight', ts('Order'), CRM_Core_DAO::getAttribute('CRM_Price_DAO_PriceField', 'weight'), TRUE);
6a488035
TO
318 $this->addRule('weight', ts('is a numeric field'), 'numeric');
319
320 // checkbox / radio options per line
321 $this->add('text', 'options_per_line', ts('Options Per Line'));
322 $this->addRule('options_per_line', ts('must be a numeric value'), 'numeric');
323
324 // help post, mask, attributes, javascript ?
325 $this->add('textarea', 'help_post', ts('Field Help'),
9da8dc8c 326 CRM_Core_DAO::getAttribute('CRM_Price_DAO_PriceField', 'help_post')
6a488035
TO
327 );
328
329 // active_on
330 $date_options = array(
331 'format' => 'dmY His',
332 'minYear' => date('Y') - 1,
333 'maxYear' => date('Y') + 5,
334 'addEmptyOption' => TRUE,
335 );
336 $this->addDateTime('active_on', ts('Active On'), FALSE, array('formatType' => 'activityDateTime'));
337
338 // expire_on
339 $this->addDateTime('expire_on', ts('Expire On'), FALSE, array('formatType' => 'activityDateTime'));
340
341 // is required ?
342 $this->add('checkbox', 'is_required', ts('Required?'));
343
344 // is active ?
345 $this->add('checkbox', 'is_active', ts('Active?'));
346
347 // add buttons
348 $this->addButtons(array(
349 array(
350 'type' => 'next',
351 'name' => ts('Save'),
352 'isDefault' => TRUE,
353 ),
354 array(
355 'type' => 'next',
356 'name' => ts('Save and New'),
357 'subName' => 'new',
358 ),
359 array(
360 'type' => 'cancel',
361 'name' => ts('Cancel'),
362 ),
363 )
364 );
365 // is public?
366 $this->add('select', 'visibility_id', ts('Visibility'), CRM_Core_PseudoConstant::visibility());
367
368 // add a form rule to check default value
369 $this->addFormRule(array('CRM_Price_Form_Field', 'formRule'), $this);
370
371 // if view mode pls freeze it with the done button.
372 if ($this->_action & CRM_Core_Action::VIEW) {
373 $this->freeze();
374 $url = CRM_Utils_System::url('civicrm/admin/price/field', 'reset=1&action=browse&sid=' . $this->_sid);
375 $this->addElement('button',
376 'done',
377 ts('Done'),
378 array('onclick' => "location.href='$url'")
379 );
380 }
381 }
382
383 /**
fe482240 384 * Global validation rules for the form.
6a488035 385 *
414c1420
TO
386 * @param array $fields
387 * Posted values of the form.
77b97be7
EM
388 *
389 * @param $files
c490a46a 390 * @param CRM_Core_Form $form
6a488035 391 *
a6c01b45
CW
392 * @return array
393 * if errors then list of errors to be posted back to the form,
6a488035 394 * true otherwise
6a488035 395 */
00be9182 396 public static function formRule($fields, $files, $form) {
6a488035
TO
397
398 // all option fields are of type "money"
399 $errors = array();
400
401 /** Check the option values entered
402 * Appropriate values are required for the selected datatype
403 * Incomplete row checking is also required.
404 */
405 if (($form->_action & CRM_Core_Action::ADD || $form->_action & CRM_Core_Action::UPDATE) &&
406 $fields['html_type'] == 'Text' && $fields['price'] == NULL
407 ) {
408 $errors['price'] = ts('Price is a required field');
409 }
410
411 if (($form->_action & CRM_Core_Action::ADD || $form->_action & CRM_Core_Action::UPDATE) &&
353ffa53
TO
412 $fields['html_type'] == 'Text' && $fields['financial_type_id'] == ''
413 ) {
6a488035
TO
414 $errors['financial_type_id'] = ts('Financial Type is a required field');
415 }
366fe2a3 416
6a488035 417 //avoid the same price field label in Within PriceSet
9da8dc8c 418 $priceFieldLabel = new CRM_Price_DAO_PriceField();
6a488035
TO
419 $priceFieldLabel->label = $fields['label'];
420 $priceFieldLabel->price_set_id = $form->_sid;
421
422 $dupeLabel = FALSE;
423 if ($priceFieldLabel->find(TRUE) && $form->_fid != $priceFieldLabel->id) {
424 $dupeLabel = TRUE;
425 }
426
427 if ($dupeLabel) {
428 $errors['label'] = ts('Name already exists in Database.');
429 }
430
431 if ((is_numeric(CRM_Utils_Array::value('count', $fields)) &&
432 CRM_Utils_Array::value('count', $fields) == 0
433 ) &&
434 (CRM_Utils_Array::value('html_type', $fields) == 'Text')
435 ) {
436 $errors['count'] = ts('Participant Count must be greater than zero.');
437 }
438
439 if ($form->_action & CRM_Core_Action::ADD) {
440 if ($fields['html_type'] != 'Text') {
441 $countemptyrows = 0;
442 $_flagOption = $_rowError = 0;
443
444 $_showHide = new CRM_Core_ShowHideBlocks('', '');
445
446 for ($index = 1; $index <= self::NUM_OPTION; $index++) {
447
448 $noLabel = $noAmount = $noWeight = 1;
449 if (!empty($fields['option_label'][$index])) {
450 $noLabel = 0;
451 $duplicateIndex = CRM_Utils_Array::key($fields['option_label'][$index],
452 $fields['option_label']
453 );
454
455 if ((!($duplicateIndex === FALSE)) &&
456 (!($duplicateIndex == $index))
457 ) {
458 $errors["option_label[{$index}]"] = ts('Duplicate label value');
459 $_flagOption = 1;
460 }
461 }
462 if ($form->_useForMember) {
463 if (!empty($fields['membership_type_id'][$index])) {
464 $memTypesIDS[] = $fields['membership_type_id'][$index];
465 }
466 }
467
468 // allow for 0 value.
469 if (!empty($fields['option_amount'][$index]) ||
470 strlen($fields['option_amount'][$index]) > 0
471 ) {
472 $noAmount = 0;
473 }
474
475 if (!empty($fields['option_weight'][$index])) {
476 $noWeight = 0;
477 $duplicateIndex = CRM_Utils_Array::key($fields['option_weight'][$index],
478 $fields['option_weight']
479 );
480
481 if ((!($duplicateIndex === FALSE)) &&
482 (!($duplicateIndex == $index))
483 ) {
484 $errors["option_weight[{$index}]"] = ts('Duplicate weight value');
485 $_flagOption = 1;
486 }
487 }
8cc574cf 488 if (!$noLabel && !$noAmount && !empty($fields['option_financial_type_id']) && $fields['option_financial_type_id'][$index] == '' && $fields['html_type'] != 'Text') {
6a488035 489 $errors["option_financial_type_id[{$index}]"] = ts('Financial Type is a Required field.');
366fe2a3 490 }
6a488035
TO
491 if ($noLabel && !$noAmount) {
492 $errors["option_label[{$index}]"] = ts('Label cannot be empty.');
493 $_flagOption = 1;
494 }
495
496 if (!$noLabel && $noAmount) {
497 $errors["option_amount[{$index}]"] = ts('Amount cannot be empty.');
498 $_flagOption = 1;
499 }
500
501 if ($noLabel && $noAmount) {
502 $countemptyrows++;
503 $_emptyRow = 1;
504 }
505 elseif (!empty($fields['option_max_value'][$index]) &&
506 !empty($fields['option_count'][$index]) &&
507 ($fields['option_count'][$index] > $fields['option_max_value'][$index])
508 ) {
509 $errors["option_max_value[{$index}]"] = ts('Participant count can not be greater than max participants.');
510 $_flagOption = 1;
511 }
512
513 $showBlocks = 'optionField_' . $index;
514 if ($_flagOption) {
515 $_showHide->addShow($showBlocks);
516 $_rowError = 1;
517 }
518
519 if (!empty($_emptyRow)) {
520 $_showHide->addHide($showBlocks);
521 }
522 else {
523 $_showHide->addShow($showBlocks);
524 }
525 if ($index == self::NUM_OPTION) {
526 $hideBlock = 'additionalOption';
527 $_showHide->addHide($hideBlock);
528 }
529
530 $_flagOption = $_emptyRow = 0;
531 }
532
533 if (!empty($memTypesIDS)) {
534 // check for checkboxes allowing user to select multiple memberships from same membership organization
535 if ($fields['html_type'] == 'CheckBox') {
ba1dcfda
TO
536 $foundDuplicate = FALSE;
537 $orgIds = array();
538 foreach ($memTypesIDS as $key => $val) {
539 $org = CRM_Member_BAO_MembershipType::getMembershipTypeOrganization($val);
540 if (in_array($org[$val], $orgIds)) {
541 $foundDuplicate = TRUE;
542 break;
543 }
544 $orgIds[$val] = $org[$val];
6a488035 545
ba1dcfda
TO
546 }
547 if ($foundDuplicate) {
548 $errors['_qf_default'] = ts('You have selected multiple memberships for the same organization or entity. Please review your selections and choose only one membership per entity.');
549 }
6a488035 550 }
366fe2a3 551
6a488035
TO
552 // CRM-10390 - Only one price field in a set can include auto-renew membership options
553 $foundAutorenew = FALSE;
554 foreach ($memTypesIDS as $key => $val) {
555 // see if any price field option values in this price field are for memberships with autorenew
556 $memTypeDetails = CRM_Member_BAO_MembershipType::getMembershipTypeDetails($val);
a7488080 557 if (!empty($memTypeDetails['auto_renew'])) {
6a488035
TO
558 $foundAutorenew = TRUE;
559 break;
560 }
561 }
562
563 if ($foundAutorenew) {
564 // if so, check for other fields in this price set which also have auto-renew membership options
9da8dc8c 565 $otherFieldAutorenew = CRM_Price_BAO_PriceSet::checkAutoRenewForPriceSet($form->_sid);
6a488035
TO
566 if ($otherFieldAutorenew) {
567 $errors['_qf_default'] = ts('You can include auto-renew membership choices for only one price field in a price set. Another field in this set already contains one or more auto-renew membership options.');
568 }
569 }
570 }
571 $_showHide->addToTemplate();
572
831e0fa5 573 if ($countemptyrows == 15) {
6a488035
TO
574 $errors['option_label[1]'] = $errors['option_amount[1]'] = ts('Label and value cannot be empty.');
575 $_flagOption = 1;
576 }
577 }
578 elseif (!empty($fields['max_value']) &&
579 !empty($fields['count']) &&
580 ($fields['count'] > $fields['max_value'])
581 ) {
582 $errors['max_value'] = ts('Participant count can not be greater than max participants.');
583 }
584
585 // do not process if no option rows were submitted
586 if (empty($fields['option_amount']) && empty($fields['option_label'])) {
587 return TRUE;
588 }
589
590 if (empty($fields['option_name'])) {
591 $fields['option_amount'] = array();
592 }
593
594 if (empty($fields['option_label'])) {
595 $fields['option_label'] = array();
596 }
597 }
598
599 return empty($errors) ? TRUE : $errors;
600 }
601
602 /**
fe482240 603 * Process the form.
6a488035
TO
604 */
605 public function postProcess() {
606 // store the submitted values in an array
607 $params = $this->controller->exportValues('Field');
608
6a488035
TO
609 $params['is_display_amounts'] = CRM_Utils_Array::value('is_display_amounts', $params, FALSE);
610 $params['is_required'] = CRM_Utils_Array::value('is_required', $params, FALSE);
611 $params['is_active'] = CRM_Utils_Array::value('is_active', $params, FALSE);
353ffa53 612 $params['financial_type_id'] = CRM_Utils_Array::value('financial_type_id', $params, FALSE);
6a488035
TO
613 if (isset($params['active_on'])) {
614 $params['active_on'] = CRM_Utils_Date::processDate($params['active_on'],
615 CRM_Utils_Array::value('active_on_time', $params),
616 TRUE
617 );
618 }
619 if (isset($params['expire_on'])) {
620 $params['expire_on'] = CRM_Utils_Date::processDate($params['expire_on'],
621 CRM_Utils_Array::value('expire_on_time', $params),
622 TRUE
623 );
624 }
625 $params['visibility_id'] = CRM_Utils_Array::value('visibility_id', $params, FALSE);
626 $params['count'] = CRM_Utils_Array::value('count', $params, FALSE);
627
628 // need the FKEY - price set id
629 $params['price_set_id'] = $this->_sid;
630
631 if ($this->_action & (CRM_Core_Action::UPDATE | CRM_Core_Action::ADD)) {
632 $fieldValues = array('price_set_id' => $this->_sid);
633 $oldWeight = NULL;
634 if ($this->_fid) {
9da8dc8c 635 $oldWeight = CRM_Core_DAO::getFieldValue('CRM_Price_DAO_PriceField', $this->_fid, 'weight', 'id');
6a488035 636 }
9da8dc8c 637 $params['weight'] = CRM_Utils_Weight::updateOtherWeights('CRM_Price_DAO_PriceField', $oldWeight, $params['weight'], $fieldValues);
6a488035
TO
638 }
639
640 // make value <=> name consistency.
641 if (isset($params['option_name'])) {
642 $params['option_value'] = $params['option_name'];
643 }
644 $params['is_enter_qty'] = CRM_Utils_Array::value('is_enter_qty', $params, FALSE);
645
646 if ($params['html_type'] == 'Text') {
647 // if html type is Text, force is_enter_qty on
648 $params['is_enter_qty'] = 1;
649 // modify params values as per the option group and option
650 // value
651 $params['option_amount'] = array(1 => $params['price']);
652 $params['option_label'] = array(1 => $params['label']);
653 $params['option_count'] = array(1 => $params['count']);
654 $params['option_max_value'] = array(1 => CRM_Utils_Array::value('max_value', $params));
655 //$params['option_description'] = array( 1 => $params['description'] );
656 $params['option_weight'] = array(1 => $params['weight']);
657 $params['option_financial_type_id'] = array(1 => $params['financial_type_id']);
6a488035
TO
658 }
659
660 if ($this->_fid) {
661 $params['id'] = $this->_fid;
662 }
366fe2a3 663
6a488035
TO
664 $params['membership_num_terms'] = (!empty($params['membership_type_id'])) ? CRM_Utils_Array::value('membership_num_terms', $params, 1) : NULL;
665
9da8dc8c 666 $priceField = CRM_Price_BAO_PriceField::create($params);
6a488035
TO
667
668 if (!is_a($priceField, 'CRM_Core_Error')) {
669 CRM_Core_Session::setStatus(ts('Price Field \'%1\' has been saved.', array(1 => $priceField->label)), ts('Saved'), 'success');
670 }
671 $buttonName = $this->controller->getButtonName();
672 $session = CRM_Core_Session::singleton();
673 if ($buttonName == $this->getButtonName('next', 'new')) {
674 CRM_Core_Session::setStatus(ts(' You can add another price set field.'), '', 'info');
675 $session->replaceUserContext(CRM_Utils_System::url('civicrm/admin/price/field', 'reset=1&action=add&sid=' . $this->_sid));
676 }
677 else {
678 $session->replaceUserContext(CRM_Utils_System::url('civicrm/admin/price/field', 'reset=1&action=browse&sid=' . $this->_sid));
679 }
680 }
96025800 681
6a488035 682}