commiting uncommited changes on live site
[weblabels.fsf.org.git] / crm.fsf.org / 20131203 / files / sites / all / modules-new / civicrm / CRM / Price / BAO / PriceField.php
1 <?php
2 /*
3 +--------------------------------------------------------------------+
4 | CiviCRM version 4.6 |
5 +--------------------------------------------------------------------+
6 | Copyright CiviCRM LLC (c) 2004-2015 |
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-2015
32 * $Id$
33 *
34 */
35
36 /**
37 * Business objects for managing price fields.
38 *
39 */
40 class CRM_Price_BAO_PriceField extends CRM_Price_DAO_PriceField {
41
42 protected $_options;
43
44 /**
45 * Takes an associative array and creates a price field object.
46 *
47 * the function extract all the params it needs to initialize the create a
48 * price field object. the params array could contain additional unused name/value
49 * pairs
50 *
51 * @param array $params
52 * (reference) an assoc array of name/value pairs.
53 *
54 * @return CRM_Price_BAO_PriceField
55 */
56 public static function add(&$params) {
57 $priceFieldBAO = new CRM_Price_BAO_PriceField();
58
59 $priceFieldBAO->copyValues($params);
60
61 if ($id = CRM_Utils_Array::value('id', $params)) {
62 $priceFieldBAO->id = $id;
63 }
64
65 $priceFieldBAO->save();
66 return $priceFieldBAO;
67 }
68
69 /**
70 * Takes an associative array and creates a price field object.
71 *
72 * This function is invoked from within the web form layer and also from the api layer
73 *
74 * @param array $params
75 * (reference) an assoc array of name/value pairs.
76 *
77 * @return CRM_Price_DAO_PriceField
78 */
79 public static function create(&$params) {
80 if (empty($params['id']) && empty($params['name'])) {
81 $params['name'] = strtolower(CRM_Utils_String::munge($params['label'], '_', 242));
82 }
83 $transaction = new CRM_Core_Transaction();
84
85 $priceField = self::add($params);
86
87 if (is_a($priceField, 'CRM_Core_Error')) {
88 $transaction->rollback();
89 return $priceField;
90 }
91
92 $optionsIds = array();
93 $maxIndex = CRM_Price_Form_Field::NUM_OPTION;
94
95 if ($priceField->html_type == 'Text') {
96 $maxIndex = 1;
97
98 $fieldValue = new CRM_Price_DAO_PriceFieldValue();
99 $fieldValue->price_field_id = $priceField->id;
100
101 // update previous field values( if any )
102 if ($fieldValue->find(TRUE)) {
103 $optionsIds['id'] = $fieldValue->id;
104 }
105 }
106 $defaultArray = array();
107 //html type would be empty in update scenario not sure what would happen ...
108 if (!empty($params['html_type']) && $params['html_type'] == 'CheckBox' && isset($params['default_checkbox_option'])) {
109 $tempArray = array_keys($params['default_checkbox_option']);
110 foreach ($tempArray as $v) {
111 if ($params['option_amount'][$v]) {
112 $defaultArray[$v] = 1;
113 }
114 }
115 }
116 else {
117 if (!empty($params['default_option'])) {
118 $defaultArray[$params['default_option']] = 1;
119 }
120 }
121
122 for ($index = 1; $index <= $maxIndex; $index++) {
123 if (array_key_exists('option_amount', $params) &&
124 array_key_exists($index, $params['option_amount']) &&
125 (CRM_Utils_Array::value($index, CRM_Utils_Array::value('option_label', $params)) || !empty($params['is_quick_config'])) &&
126 !CRM_Utils_System::isNull($params['option_amount'][$index])
127 ) {
128 $options = array(
129 'price_field_id' => $priceField->id,
130 'label' => trim($params['option_label'][$index]),
131 'name' => CRM_Utils_String::munge($params['option_label'][$index], '_', 64),
132 'amount' => CRM_Utils_Rule::cleanMoney(trim($params['option_amount'][$index])),
133 'count' => CRM_Utils_Array::value($index, CRM_Utils_Array::value('option_count', $params), NULL),
134 'max_value' => CRM_Utils_Array::value($index, CRM_Utils_Array::value('option_max_value', $params), NULL),
135 'description' => CRM_Utils_Array::value($index, CRM_Utils_Array::value('option_description', $params), NULL),
136 'membership_type_id' => CRM_Utils_Array::value($index, CRM_Utils_Array::value('membership_type_id', $params), NULL),
137 'weight' => $params['option_weight'][$index],
138 'is_active' => 1,
139 'is_default' => CRM_Utils_Array::value($params['option_weight'][$index], $defaultArray) ? $defaultArray[$params['option_weight'][$index]] : 0,
140 'membership_num_terms' => NULL,
141 );
142
143 if ($options['membership_type_id']) {
144 $options['membership_num_terms'] = CRM_Utils_Array::value($index, CRM_Utils_Array::value('membership_num_terms', $params), 1);
145 }
146
147 if (CRM_Utils_Array::value($index, CRM_Utils_Array::value('option_financial_type_id', $params))) {
148 $options['financial_type_id'] = $params['option_financial_type_id'][$index];
149 }
150 elseif (!empty($params['financial_type_id'])) {
151 $options['financial_type_id'] = $params['financial_type_id'];
152 }
153
154 if ($opIds = CRM_Utils_Array::value('option_id', $params)) {
155 if ($opId = CRM_Utils_Array::value($index, $opIds)) {
156 $optionsIds['id'] = $opId;
157 }
158 else {
159 $optionsIds['id'] = NULL;
160 }
161 }
162 CRM_Price_BAO_PriceFieldValue::create($options, $optionsIds);
163 }
164 }
165
166 $transaction->commit();
167 return $priceField;
168 }
169
170 /**
171 * Fetch object based on array of properties.
172 *
173 * @param array $params
174 * (reference ) an assoc array of name/value pairs.
175 * @param array $defaults
176 * (reference ) an assoc array to hold the flattened values.
177 *
178 * @return CRM_Price_DAO_PriceField
179 */
180 public static function retrieve(&$params, &$defaults) {
181 return CRM_Core_DAO::commonRetrieve('CRM_Price_DAO_PriceField', $params, $defaults);
182 }
183
184 /**
185 * Update the is_active flag in the db.
186 *
187 * @param int $id
188 * Id of the database record.
189 * @param bool $is_active
190 * Value we want to set the is_active field.
191 *
192 * @return Object
193 * DAO object on success, null otherwise.
194 */
195 public static function setIsActive($id, $is_active) {
196 return CRM_Core_DAO::setFieldValue('CRM_Price_DAO_PriceField', $id, 'is_active', $is_active);
197 }
198
199 /**
200 * Freeze form if the event is full.
201 *
202 * @param $element
203 * @param $fieldOptions
204 *
205 * @return null
206 */
207 public static function freezeIfEnabled(&$element, $fieldOptions) {
208 if (!empty($fieldOptions['is_full'])) {
209 $element->freeze();
210 }
211 return NULL;
212 }
213
214 /**
215 * Get the field title.
216 *
217 * @param int $id
218 * Id of field.
219 *
220 * @return string
221 * name
222 *
223 */
224 public static function getTitle($id) {
225 return CRM_Core_DAO::getFieldValue('CRM_Price_DAO_PriceField', $id, 'label');
226 }
227
228 /**
229 * This function for building custom fields.
230 *
231 * @param CRM_Core_Form $qf
232 * Form object (reference).
233 * @param string $elementName
234 * Name of the custom field.
235 * @param int $fieldId
236 * @param bool $inactiveNeeded
237 * @param bool $useRequired
238 * True if required else false.
239 * @param string $label
240 * Label for custom field.
241 *
242 * @param null $fieldOptions
243 * @param array $freezeOptions
244 *
245 * @return null
246 * @internal param bool $search true if used for search else false
247 */
248 public static function addQuickFormElement(
249 &$qf,
250 $elementName,
251 $fieldId,
252 $inactiveNeeded,
253 $useRequired = TRUE,
254 $label = NULL,
255 $fieldOptions = NULL,
256 $freezeOptions = array()
257 ) {
258
259 $field = new CRM_Price_DAO_PriceField();
260 $field->id = $fieldId;
261 if (!$field->find(TRUE)) {
262 /* FIXME: failure! */
263 return NULL;
264 }
265
266 $is_pay_later = 0;
267 if (isset($qf->_mode) && empty($qf->_mode)) {
268 $is_pay_later = 1;
269 }
270 elseif (isset($qf->_values)) {
271 $is_pay_later = CRM_Utils_Array::value('is_pay_later', $qf->_values);
272 }
273
274 $otherAmount = $qf->get('values');
275 $config = CRM_Core_Config::singleton();
276 $currencySymbol = CRM_Core_DAO::getFieldValue('CRM_Financial_DAO_Currency', $config->defaultCurrency, 'symbol', 'name');
277 $qf->assign('currencySymbol', $currencySymbol);
278 // get currency name for price field and option attributes
279 $currencyName = $config->defaultCurrency;
280
281 if (!isset($label)) {
282 $label = (!empty($qf->_membershipBlock) && $field->name == 'contribution_amount') ? ts('Additional Contribution') : $field->label;
283 }
284
285 if ($field->name == 'contribution_amount') {
286 $qf->_contributionAmount = 1;
287 }
288
289 if (isset($qf->_online) && $qf->_online) {
290 $useRequired = FALSE;
291 }
292
293 $customOption = $fieldOptions;
294 if (!is_array($customOption)) {
295 $customOption = CRM_Price_BAO_PriceField::getOptions($field->id, $inactiveNeeded);
296 }
297
298 //use value field.
299 $valueFieldName = 'amount';
300 $seperator = '|';
301 $invoiceSettings = CRM_Core_BAO_Setting::getItem(CRM_Core_BAO_Setting::CONTRIBUTE_PREFERENCES_NAME, 'contribution_invoice_settings');
302 $taxTerm = CRM_Utils_Array::value('tax_term', $invoiceSettings);
303 $displayOpt = CRM_Utils_Array::value('tax_display_settings', $invoiceSettings);
304 $invoicing = CRM_Utils_Array::value('invoicing', $invoiceSettings);
305 switch ($field->html_type) {
306 case 'Text':
307 $optionKey = key($customOption);
308 $count = CRM_Utils_Array::value('count', $customOption[$optionKey], '');
309 $max_value = CRM_Utils_Array::value('max_value', $customOption[$optionKey], '');
310 $taxAmount = CRM_Utils_Array::value('tax_amount', $customOption[$optionKey]);
311 if (isset($taxAmount) && $displayOpt && $invoicing) {
312 $qf->assign('displayOpt', $displayOpt);
313 $qf->assign('taxTerm', $taxTerm);
314 $qf->assign('invoicing', $invoicing);
315 }
316 $priceVal = implode($seperator, array(
317 $customOption[$optionKey][$valueFieldName] + $taxAmount,
318 $count,
319 $max_value,
320 ));
321
322 $extra = array();
323 if (!empty($qf->_membershipBlock) && !empty($qf->_quickConfig) && $field->name == 'other_amount' && empty($qf->_contributionAmount)) {
324 $useRequired = 0;
325 }
326 elseif (!empty($fieldOptions[$optionKey]['label'])) {
327 //check for label.
328 $label = $fieldOptions[$optionKey]['label'];
329 if (!empty($qf->_quickConfig) && !empty($qf->_contributionAmount) && strtolower($fieldOptions[$optionKey]['name']) == 'other_amount') {
330 $label .= ' ' . $currencySymbol;
331 $qf->assign('priceset', $elementName);
332 $extra = array('onclick' => 'useAmountOther();');
333 }
334 }
335
336 $element = &$qf->add('text', $elementName, $label,
337 array_merge($extra,
338 array(
339 'price' => json_encode(array($optionKey, $priceVal)),
340 'size' => '4',
341 )
342 ),
343 $useRequired && $field->is_required
344 );
345 if ($is_pay_later) {
346 $qf->add('text', 'txt-' . $elementName, $label, array('size' => '4'));
347 }
348
349 // CRM-6902 - Add "max" option for a price set field
350 if (in_array($optionKey, $freezeOptions)) {
351 self::freezeIfEnabled($element, $fieldOptions[$optionKey]);
352 // CRM-14696 - Improve display for sold out price set options
353 $element->setLabel($label . '&nbsp;<span class="sold-out-option">' . ts('Sold out') . '</span>');
354 }
355
356 //CRM-10117
357 if (!empty($qf->_quickConfig)) {
358 $message = ts('Please enter a valid amount.');
359 $type = 'money';
360 }
361 else {
362 $message = ts('%1 must be a number (with or without decimal point).', array(1 => $label));
363 $type = 'numeric';
364 }
365 // integers will have numeric rule applied to them.
366 $qf->addRule($elementName, $message, $type);
367 break;
368
369 case 'Radio':
370 $choice = array();
371
372 if (!empty($qf->_quickConfig) && !empty($qf->_contributionAmount)) {
373 $qf->assign('contriPriceset', $elementName);
374 }
375
376 foreach ($customOption as $opId => $opt) {
377 $taxAmount = CRM_Utils_Array::value('tax_amount', $opt);
378 if ($field->is_display_amounts) {
379 $opt['label'] = !empty($opt['label']) ? $opt['label'] . '&nbsp;-&nbsp;' : '';
380 if (isset($taxAmount) && $invoicing) {
381 if ($displayOpt == 'Do_not_show') {
382 $opt['label'] = '<span class="crm-price-amount-label">' . $opt['label'] . '</span>' . '<span class="crm-price-amount-amount">' . CRM_Utils_Money::format($opt[$valueFieldName] + $taxAmount) . '</span>';
383 }
384 elseif ($displayOpt == 'Inclusive') {
385 $opt['label'] = '<span class="crm-price-amount-label">' . $opt['label'] . '</span>' . '<span class="crm-price-amount-amount">' . CRM_Utils_Money::format($opt[$valueFieldName] + $taxAmount) . '</span>';
386 $opt['label'] .= '<span class="crm-price-amount-tax"> (includes ' . $taxTerm . ' of ' . CRM_Utils_Money::format($opt['tax_amount']) . ')</span>';
387 }
388 else {
389 $opt['label'] = '<span class="crm-price-amount-label">' . $opt['label'] . '</span>' . '<span class="crm-price-amount-amount">' . CRM_Utils_Money::format($opt[$valueFieldName]) . '</span>';
390 $opt['label'] .= '<span class="crm-price-amount-tax"> + ' . CRM_Utils_Money::format($opt['tax_amount']) . ' ' . $taxTerm . '</span>';
391 }
392 }
393 else {
394 $opt['label'] = '<span class="crm-price-amount-label">' . $opt['label'] . '</span>' . '<span class="crm-price-amount-amount">' . CRM_Utils_Money::format($opt[$valueFieldName]) . '</span>';
395 }
396 }
397 $count = CRM_Utils_Array::value('count', $opt, '');
398 $max_value = CRM_Utils_Array::value('max_value', $opt, '');
399 $priceVal = implode($seperator, array($opt[$valueFieldName] + $taxAmount, $count, $max_value));
400 $extra = array(
401 'price' => json_encode(array($elementName, $priceVal)),
402 'data-amount' => $opt[$valueFieldName],
403 'data-currency' => $currencyName,
404 'data-price-field-values' => json_encode($customOption),
405 );
406 if (!empty($qf->_quickConfig) && $field->name == 'contribution_amount') {
407 $extra += array('onclick' => 'clearAmountOther();');
408 }
409 elseif (!empty($qf->_quickConfig) && $field->name == 'membership_amount') {
410 $extra += array(
411 'onclick' => "return showHideAutoRenew({$opt['membership_type_id']});",
412 'membership-type' => $opt['membership_type_id'],
413 );
414 $qf->assign('membershipFieldID', $field->id);
415 }
416
417 $choice[$opId] = $qf->createElement('radio', NULL, '', $opt['label'], $opt['id'], $extra);
418
419 if ($is_pay_later) {
420 $qf->add('text', 'txt-' . $elementName, $label, array('size' => '4'));
421 }
422
423 // CRM-6902 - Add "max" option for a price set field
424 if (in_array($opId, $freezeOptions)) {
425 self::freezeIfEnabled($choice[$opId], $customOption[$opId]);
426 // CRM-14696 - Improve display for sold out price set options
427 $choice[$opId]->setText('<span class="sold-out-option">' . $choice[$opId]->getText() . '&nbsp;(' . ts('Sold out') . ')</span>');
428 }
429 }
430 if (!empty($qf->_membershipBlock) && $field->name == 'contribution_amount') {
431 $choice[] = $qf->createElement('radio', NULL, '', ts('No thank you'), '-1',
432 array(
433 'onclick' => 'clearAmountOther();',
434 )
435 );
436 }
437
438 if (!$field->is_required) {
439 // add "none" option
440 if (!empty($otherAmount['is_allow_other_amount']) && $field->name == 'contribution_amount') {
441 $none = ts('Other Amount');
442 }
443 elseif (!empty($qf->_membershipBlock) && empty($qf->_membershipBlock['is_required']) && $field->name == 'membership_amount') {
444 $none = ts('No thank you');
445 }
446 else {
447 $none = ts('- none -');
448 if (!empty($qf->_membershipBlock) && empty($qf->_quickConfig)) {
449 foreach ($fieldOptions as $fieldOption) {
450 if (CRM_Utils_Array::value('membership_type_id', $fieldOption)) {
451 $none = ts('No thank you');
452 }
453 }
454 }
455 }
456
457 $choice[] = $qf->createElement('radio', NULL, '', $none, '0',
458 array('price' => json_encode(array($elementName, '0')))
459 );
460 }
461
462 $element = &$qf->addGroup($choice, $elementName, $label);
463
464 // make contribution field required for quick config when membership block is enabled
465 if (($field->name == 'membership_amount' || $field->name == 'contribution_amount')
466 && !empty($qf->_membershipBlock) && !$field->is_required
467 ) {
468 $useRequired = $field->is_required = TRUE;
469 }
470
471 if ($useRequired && $field->is_required) {
472 $qf->addRule($elementName, ts('%1 is a required field.', array(1 => $label)), 'required');
473 }
474 break;
475
476 case 'Select':
477 $selectOption = $allowedOptions = $priceVal = array();
478
479 foreach ($customOption as $opt) {
480 $taxAmount = CRM_Utils_Array::value('tax_amount', $opt);
481 $count = CRM_Utils_Array::value('count', $opt, '');
482 $max_value = CRM_Utils_Array::value('max_value', $opt, '');
483
484 if ($field->is_display_amounts) {
485 $opt['label'] .= '&nbsp;-&nbsp;';
486 if (isset($taxAmount) && $invoicing) {
487 $opt['label'] = $opt['label'] . self::getTaxLabel($opt, $valueFieldName, $displayOpt, $taxTerm);
488 }
489 else {
490 $opt['label'] = $opt['label'] . CRM_Utils_Money::format($opt[$valueFieldName]);
491 }
492 }
493
494 $priceVal[$opt['id']] = implode($seperator, array($opt[$valueFieldName] + $taxAmount, $count, $max_value));
495
496 if (!in_array($opt['id'], $freezeOptions)) {
497 $allowedOptions[] = $opt['id'];
498 }
499 // CRM-14696 - Improve display for sold out price set options
500 else {
501 $opt['id'] = 'crm_disabled_opt-' . $opt['id'];
502 $opt['label'] = $opt['label'] . ' (' . ts('Sold out') . ')';
503 }
504
505 $selectOption[$opt['id']] = $opt['label'];
506
507 if ($is_pay_later) {
508 $qf->add('text', 'txt-' . $elementName, $label, array('size' => '4'));
509 }
510 }
511
512 $element = &$qf->add('select', $elementName, $label,
513 array(
514 '' => ts('- select -'),
515 ) + $selectOption,
516 $useRequired && $field->is_required,
517 array('price' => json_encode($priceVal), 'class' => 'crm-select2', 'data-price-field-values' => json_encode($customOption))
518 );
519
520 // CRM-6902 - Add "max" option for a price set field
521 $button = substr($qf->controller->getButtonName(), -4);
522 if (!empty($freezeOptions) && $button != 'skip') {
523 $qf->addRule($elementName, ts('Sorry, this option is currently sold out.'), 'regex', "/" . implode('|', $allowedOptions) . "/");
524 }
525 break;
526
527 case 'CheckBox':
528
529 $check = array();
530 foreach ($customOption as $opId => $opt) {
531 $taxAmount = CRM_Utils_Array::value('tax_amount', $opt);
532 $count = CRM_Utils_Array::value('count', $opt, '');
533 $max_value = CRM_Utils_Array::value('max_value', $opt, '');
534
535 if ($field->is_display_amounts) {
536 $opt['label'] = '<span class="crm-price-amount-label">' . $opt['label'] . '</span>&nbsp;-&nbsp;';
537 if (isset($taxAmount) && $invoicing) {
538 $opt['label'] .= self::getTaxLabel($opt, $valueFieldName, $displayOpt, $taxTerm);
539 }
540 else {
541 $opt['label'] .= CRM_Utils_Money::format($opt[$valueFieldName]);
542 }
543 }
544 $priceVal = implode($seperator, array($opt[$valueFieldName] + $taxAmount, $count, $max_value));
545 $check[$opId] = &$qf->createElement('checkbox', $opt['id'], NULL, $opt['label'],
546 array(
547 'price' => json_encode(array($opt['id'], $priceVal)),
548 'data-amount' => $opt[$valueFieldName],
549 'data-currency' => $currencyName,
550 )
551 );
552 if ($is_pay_later) {
553 $txtcheck[$opId] =& $qf->createElement('text', $opId, $opt['label'], array('size' => '4'));
554 $qf->addGroup($txtcheck, 'txt-' . $elementName, $label);
555 }
556 // CRM-6902 - Add "max" option for a price set field
557 if (in_array($opId, $freezeOptions)) {
558 self::freezeIfEnabled($check[$opId], $customOption[$opId]);
559 // CRM-14696 - Improve display for sold out price set options
560 $check[$opId]->setText('<span class="sold-out-option">' . $check[$opId]->getText() . '&nbsp;(' . ts('Sold out') . ')</span>');
561 }
562 }
563 $element = &$qf->addGroup($check, $elementName, $label);
564 if ($useRequired && $field->is_required) {
565 $qf->addRule($elementName, ts('%1 is a required field.', array(1 => $label)), 'required');
566 }
567 break;
568 }
569 if (isset($qf->_online) && $qf->_online) {
570 $element->freeze();
571 }
572 }
573
574 /**
575 * Retrieve a list of options for the specified field.
576 *
577 * @param int $fieldId
578 * Price field ID.
579 * @param bool $inactiveNeeded
580 * Include inactive options.
581 * @param bool $reset
582 * Ignore stored values\.
583 *
584 * @return array
585 * array of options
586 */
587 public static function getOptions($fieldId, $inactiveNeeded = FALSE, $reset = FALSE) {
588 static $options = array();
589
590 if ($reset || empty($options[$fieldId])) {
591 $values = array();
592 CRM_Price_BAO_PriceFieldValue::getValues($fieldId, $values, 'weight', !$inactiveNeeded);
593 $options[$fieldId] = $values;
594 $taxRates = CRM_Core_PseudoConstant::getTaxRates();
595
596 // ToDo - Code for Hook Invoke
597
598 foreach ($options[$fieldId] as $priceFieldId => $priceFieldValues) {
599 if (isset($priceFieldValues['financial_type_id']) && array_key_exists($priceFieldValues['financial_type_id'], $taxRates)) {
600 $options[$fieldId][$priceFieldId]['tax_rate'] = $taxRates[$priceFieldValues['financial_type_id']];
601 $taxAmount = CRM_Contribute_BAO_Contribution_Utils::calculateTaxAmount($priceFieldValues['amount'], $options[$fieldId][$priceFieldId]['tax_rate']);
602 $options[$fieldId][$priceFieldId]['tax_amount'] = $taxAmount['tax_amount'];
603 }
604 }
605 }
606
607 return $options[$fieldId];
608 }
609
610 /**
611 * @param $optionLabel
612 * @param int $fid
613 *
614 * @return mixed
615 */
616 public static function getOptionId($optionLabel, $fid) {
617 if (!$optionLabel || !$fid) {
618 return;
619 }
620
621 $optionGroupName = "civicrm_price_field.amount.{$fid}";
622
623 $query = "
624 SELECT
625 option_value.id as id
626 FROM
627 civicrm_option_value option_value,
628 civicrm_option_group option_group
629 WHERE
630 option_group.name = %1
631 AND option_group.id = option_value.option_group_id
632 AND option_value.label = %2";
633
634 $dao = CRM_Core_DAO::executeQuery($query, array(
635 1 => array($optionGroupName, 'String'),
636 2 => array($optionLabel, 'String'),
637 ));
638
639 while ($dao->fetch()) {
640 return $dao->id;
641 }
642 }
643
644 /**
645 * Delete the price set field.
646 *
647 * @param int $id
648 * Field Id.
649 *
650 * @return bool
651 *
652 */
653 public static function deleteField($id) {
654 $field = new CRM_Price_DAO_PriceField();
655 $field->id = $id;
656
657 if ($field->find(TRUE)) {
658 // delete the options for this field
659 CRM_Price_BAO_PriceFieldValue::deleteValues($id);
660
661 // reorder the weight before delete
662 $fieldValues = array('price_set_id' => $field->price_set_id);
663
664 CRM_Utils_Weight::delWeight('CRM_Price_DAO_PriceField', $field->id, $fieldValues);
665
666 // now delete the field
667 return $field->delete();
668 }
669
670 return NULL;
671 }
672
673 /**
674 * @return array
675 */
676 public static function &htmlTypes() {
677 static $htmlTypes = NULL;
678 if (!$htmlTypes) {
679 $htmlTypes = array(
680 'Text' => ts('Text / Numeric Quantity'),
681 'Select' => ts('Select'),
682 'Radio' => ts('Radio'),
683 'CheckBox' => ts('CheckBox'),
684 );
685 }
686 return $htmlTypes;
687 }
688
689 /**
690 * Validate the priceset.
691 *
692 * @param int $priceSetId
693 * , array $fields.
694 *
695 * retrun the error string
696 *
697 * @param $fields
698 * @param $error
699 * @param bool $allowNoneSelection
700 *
701 */
702 public static function priceSetValidation($priceSetId, $fields, &$error, $allowNoneSelection = FALSE) {
703 // check for at least one positive
704 // amount price field should be selected.
705 $priceField = new CRM_Price_DAO_PriceField();
706 $priceField->price_set_id = $priceSetId;
707 $priceField->find();
708
709 $priceFields = array();
710
711 if ($allowNoneSelection) {
712 $noneSelectedPriceFields = array();
713 }
714
715 while ($priceField->fetch()) {
716 $key = "price_{$priceField->id}";
717
718 if ($allowNoneSelection) {
719 if (array_key_exists($key, $fields)) {
720 if ($fields[$key] == 0 && !$priceField->is_required) {
721 $noneSelectedPriceFields[] = $priceField->id;
722 }
723 }
724 }
725
726 if (!empty($fields[$key])) {
727 $priceFields[$priceField->id] = $fields[$key];
728 }
729 }
730
731 if (!empty($priceFields)) {
732 // we should has to have positive amount.
733 $sql = "
734 SELECT id, html_type
735 FROM civicrm_price_field
736 WHERE id IN (" . implode(',', array_keys($priceFields)) . ')';
737 $fieldDAO = CRM_Core_DAO::executeQuery($sql);
738 $htmlTypes = array();
739 while ($fieldDAO->fetch()) {
740 $htmlTypes[$fieldDAO->id] = $fieldDAO->html_type;
741 }
742
743 $selectedAmounts = array();
744
745 foreach ($htmlTypes as $fieldId => $type) {
746 $options = array();
747 CRM_Price_BAO_PriceFieldValue::getValues($fieldId, $options);
748
749 if (empty($options)) {
750 continue;
751 }
752
753 if ($type == 'Text') {
754 foreach ($options as $opId => $option) {
755 $selectedAmounts[$opId] = $priceFields[$fieldId] * $option['amount'];
756 break;
757 }
758 }
759 elseif (is_array($fields["price_{$fieldId}"])) {
760 foreach (array_keys($fields["price_{$fieldId}"]) as $opId) {
761 $selectedAmounts[$opId] = $options[$opId]['amount'];
762 }
763 }
764 elseif (in_array($fields["price_{$fieldId}"], array_keys($options))) {
765 $selectedAmounts[$fields["price_{$fieldId}"]] = $options[$fields["price_{$fieldId}"]]['amount'];
766 }
767 }
768
769 list($componentName) = explode(':', $fields['_qf_default']);
770 // now we have all selected amount in hand.
771 $totalAmount = array_sum($selectedAmounts);
772 if ($totalAmount < 0) {
773 $error['_qf_default'] = ts('%1 amount can not be less than zero. Please select the options accordingly.', array(1 => $componentName));
774 }
775 }
776 else {
777 if ($allowNoneSelection) {
778 if (empty($noneSelectedPriceFields)) {
779 $error['_qf_default'] = ts('Please select at least one option from price set.');
780 }
781 }
782 else {
783 $error['_qf_default'] = ts('Please select at least one option from price set.');
784 }
785 }
786 }
787
788 /**
789 * Generate the label for price fields based on tax display setting option on CiviContribute Component Settings page.
790 *
791 * @param array $opt
792 * @param string $valueFieldName
793 * Amount.
794 * @param string $displayOpt
795 * Tax display setting option.
796 *
797 * @return string
798 * tax label for custom field
799 *
800 */
801 public static function getTaxLabel($opt, $valueFieldName, $displayOpt, $taxTerm) {
802 if ($displayOpt == 'Do_not_show') {
803 $label = CRM_Utils_Money::format($opt[$valueFieldName] + $opt['tax_amount']);
804 }
805 elseif ($displayOpt == 'Inclusive') {
806 $label = CRM_Utils_Money::format($opt[$valueFieldName] + $opt['tax_amount']);
807 $label .= '<span class="crm-price-amount-tax"> (includes ' . $taxTerm . ' of ' . CRM_Utils_Money::format($opt['tax_amount']) . ')</span>';
808 }
809 else {
810 $label = CRM_Utils_Money::format($opt[$valueFieldName]);
811 $label .= '<span class="crm-price-amount-tax"> + ' . CRM_Utils_Money::format($opt['tax_amount']) . ' ' . $taxTerm . '</span>';
812 }
813
814 return $label;
815 }
816
817 }