Merge pull request #2999 from GinkgoFJG/CRM-14545
[civicrm-core.git] / CRM / Price / BAO / PriceSet.php
CommitLineData
6a488035
TO
1<?php
2/*
3 +--------------------------------------------------------------------+
06b69b18 4 | CiviCRM version 4.5 |
6a488035 5 +--------------------------------------------------------------------+
06b69b18 6 | Copyright CiviCRM LLC (c) 2004-2014 |
6a488035
TO
7 +--------------------------------------------------------------------+
8 | This file is a part of CiviCRM. |
9 | |
10 | CiviCRM is free software; you can copy, modify, and distribute it |
11 | under the terms of the GNU Affero General Public License |
12 | Version 3, 19 November 2007 and the CiviCRM Licensing Exception. |
13 | |
14 | CiviCRM is distributed in the hope that it will be useful, but |
15 | WITHOUT ANY WARRANTY; without even the implied warranty of |
16 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. |
17 | See the GNU Affero General Public License for more details. |
18 | |
19 | You should have received a copy of the GNU Affero General Public |
20 | License and the CiviCRM Licensing Exception along |
21 | with this program; if not, contact CiviCRM LLC |
22 | at info[AT]civicrm[DOT]org. If you have questions about the |
23 | GNU Affero General Public License or the licensing of CiviCRM, |
24 | see the CiviCRM license FAQ at http://civicrm.org/licensing |
25 +--------------------------------------------------------------------+
26*/
27
28/**
29 *
30 * @package CRM
06b69b18 31 * @copyright CiviCRM LLC (c) 2004-2014
6a488035
TO
32 * $Id$
33 *
34 */
35
36/**
37 * Business object for managing price sets
38 *
39 */
9da8dc8c 40class CRM_Price_BAO_PriceSet extends CRM_Price_DAO_PriceSet {
6a488035
TO
41
42 /**
43 * class constructor
44 */
45 function __construct() {
46 parent::__construct();
47 }
48
49 /**
50 * takes an associative array and creates a price set object
51 *
52 * @param array $params (reference) an assoc array of name/value pairs
53 *
9da8dc8c 54 * @return object CRM_Price_DAO_PriceSet object
6a488035
TO
55 * @access public
56 * @static
57 */
58 static function create(&$params) {
9da8dc8c 59 $priceSetBAO = new CRM_Price_BAO_PriceSet();
6a488035
TO
60 $priceSetBAO->copyValues($params);
61 if (self::eventPriceSetDomainID()) {
62 $priceSetBAO->domain_id = CRM_Core_Config::domainID();
63 }
64 return $priceSetBAO->save();
65 }
66
67 /**
68 * Takes a bunch of params that are needed to match certain criteria and
69 * retrieves the relevant objects. Typically the valid params are only
70 * contact_id. We'll tweak this function to be more full featured over a period
71 * of time. This is the inverse function of create. It also stores all the retrieved
72 * values in the default array
73 *
74 * @param array $params (reference ) an assoc array of name/value pairs
75 * @param array $defaults (reference ) an assoc array to hold the flattened values
76 *
9da8dc8c 77 * @return object CRM_Price_DAO_PriceSet object
6a488035
TO
78 * @access public
79 * @static
80 */
81 static function retrieve(&$params, &$defaults) {
9da8dc8c 82 return CRM_Core_DAO::commonRetrieve('CRM_Price_DAO_PriceSet', $params, $defaults);
6a488035
TO
83 }
84
85 /**
86 * update the is_active flag in the db
87 *
88 * @param int $id id of the database record
89 * @param boolean $is_active value we want to set the is_active field
90 *
91 * @return Object DAO object on sucess, null otherwise
92 * @static
93 * @access public
94 */
95 static function setIsActive($id, $isActive) {
9da8dc8c 96 return CRM_Core_DAO::setFieldValue('CRM_Price_DAO_PriceSet', $id, 'is_active', $isActive);
6a488035
TO
97 }
98
99 /**
100 * Calculate the default price set id
101 * assigned to the contribution/membership etc
102 *
103 * @param string $entity
104 *
105 * @return id $priceSetID
106 *
107 * @access public
108 * @static
109 *
110 */
111 public static function getDefaultPriceSet($entity = 'contribution') {
112 if ($entity == 'contribution') {
113 $entityName = 'default_contribution_amount';
114 }
115 else if ($entity == 'membership') {
116 $entityName = 'default_membership_type_amount';
117 }
118
119 $sql = "
120SELECT ps.id AS setID, pfv.price_field_id AS priceFieldID, pfv.id AS priceFieldValueID, pfv.name, pfv.label
121FROM civicrm_price_set ps
122LEFT JOIN civicrm_price_field pf ON pf.`price_set_id` = ps.id
123LEFT JOIN civicrm_price_field_value pfv ON pfv.price_field_id = pf.id
124WHERE ps.name = '{$entityName}'
125";
126
127 $dao = CRM_Core_DAO::executeQuery($sql);
128 $defaultPriceSet = array();
129 while ($dao->fetch()) {
130 $defaultPriceSet[$dao->priceFieldValueID]['setID'] = $dao->setID;
131 $defaultPriceSet[$dao->priceFieldValueID]['priceFieldID'] = $dao->priceFieldID;
132 $defaultPriceSet[$dao->priceFieldValueID]['name'] = $dao->name;
133 $defaultPriceSet[$dao->priceFieldValueID]['label'] = $dao->label;
134 $defaultPriceSet[$dao->priceFieldValueID]['priceFieldValueID'] = $dao->priceFieldValueID;
135 }
136
137 return $defaultPriceSet;
138 }
139
140 /**
141 * Get the price set title.
142 *
143 * @param int $id id of price set
144 *
145 * @return string title
146 *
147 * @access public
148 * @static
149 *
150 */
151 public static function getTitle($id) {
9da8dc8c 152 return CRM_Core_DAO::getFieldValue('CRM_Price_DAO_PriceSet', $id, 'title');
6a488035
TO
153 }
154
155 /**
156 * Return a list of all forms which use this price set.
157 *
158 * @param int $id id of price set
159 * @param str $simpleReturn - get raw data. Possible values: 'entity', 'table'
160 *
161 * @return array
162 */
163 public static function &getUsedBy($id, $simpleReturn = FALSE) {
164 $usedBy = $forms = $tables = array();
165 $queryString = "
166SELECT entity_table, entity_id
167FROM civicrm_price_set_entity
168WHERE price_set_id = %1";
169 $params = array(1 => array($id, 'Integer'));
170 $crmFormDAO = CRM_Core_DAO::executeQuery($queryString, $params);
171
172 while ($crmFormDAO->fetch()) {
173 $forms[$crmFormDAO->entity_table][] = $crmFormDAO->entity_id;
174 $tables[] = $crmFormDAO->entity_table;
175 }
176 // Return only tables
177 if ($simpleReturn == 'table') {
178 return $tables;
179 }
180 if (empty($forms)) {
181 $queryString = "
182SELECT cli.entity_table, cli.entity_id
183FROM civicrm_line_item cli
184LEFT JOIN civicrm_price_field cpf ON cli.price_field_id = cpf.id
185WHERE cpf.price_set_id = %1";
186 $params = array(1 => array($id, 'Integer'));
187 $crmFormDAO = CRM_Core_DAO::executeQuery($queryString, $params);
188 while ($crmFormDAO->fetch()) {
189 $forms[$crmFormDAO->entity_table][] = $crmFormDAO->entity_id;
190 $tables[] = $crmFormDAO->entity_table;
191 }
192 if (empty($forms)) {
193 return $usedBy;
194 }
195 }
196 // Return only entity data
197 if ($simpleReturn == 'entity') {
198 return $forms;
199 }
200 foreach ($forms as $table => $entities) {
201 switch ($table) {
202 case 'civicrm_event':
203 $ids = implode(',', $entities);
c34e4bb4 204 $queryString = "SELECT ce.id as id, ce.title as title, ce.is_public as isPublic, ce.start_date as startDate, ce.end_date as endDate, civicrm_option_value.label as eventType, ce.is_template as isTemplate, ce.template_title as templateTitle
6a488035
TO
205FROM civicrm_event ce
206LEFT JOIN civicrm_option_value ON
207 ( ce.event_type_id = civicrm_option_value.value )
208LEFT JOIN civicrm_option_group ON
209 ( civicrm_option_group.id = civicrm_option_value.option_group_id )
210WHERE
211 civicrm_option_group.name = 'event_type' AND
6a488035
TO
212 ce.id IN ($ids) AND
213 ce.is_active = 1;";
214 $crmDAO = CRM_Core_DAO::executeQuery($queryString);
215 while ($crmDAO->fetch()) {
c34e4bb4
PJ
216 if ($crmDAO->isTemplate) {
217 $usedBy['civicrm_event_template'][$crmDAO->id]['title'] = $crmDAO->templateTitle;
218 $usedBy['civicrm_event_template'][$crmDAO->id]['eventType'] = $crmDAO->eventType;
219 $usedBy['civicrm_event_template'][$crmDAO->id]['isPublic'] = $crmDAO->isPublic;
220 }
221 else {
222 $usedBy[$table][$crmDAO->id]['title'] = $crmDAO->title;
223 $usedBy[$table][$crmDAO->id]['eventType'] = $crmDAO->eventType;
224 $usedBy[$table][$crmDAO->id]['startDate'] = $crmDAO->startDate;
225 $usedBy[$table][$crmDAO->id]['endDate'] = $crmDAO->endDate;
226 $usedBy[$table][$crmDAO->id]['isPublic'] = $crmDAO->isPublic;
227 }
6a488035
TO
228 }
229 break;
230
231 case 'civicrm_contribution_page':
232 $ids = implode(',', $entities);
233 $queryString = "SELECT cp.id as id, cp.title as title, cp.start_date as startDate, cp.end_date as endDate,ct.name as type
234FROM civicrm_contribution_page cp, civicrm_financial_type ct
cde484fd 235WHERE ct.id = cp.financial_type_id AND
6a488035
TO
236 cp.id IN ($ids) AND
237 cp.is_active = 1;";
238 $crmDAO = CRM_Core_DAO::executeQuery($queryString);
239 while ($crmDAO->fetch()) {
240 $usedBy[$table][$crmDAO->id]['title'] = $crmDAO->title;
241 $usedBy[$table][$crmDAO->id]['type'] = $crmDAO->type;
242 $usedBy[$table][$crmDAO->id]['startDate'] = $crmDAO->startDate;
243 $usedBy[$table][$crmDAO->id]['endDate'] = $crmDAO->endDate;
244 }
245 break;
246
247 case 'civicrm_contribution':
248 case 'civicrm_membership':
249 case 'civicrm_participant':
250 $usedBy[$table] = 1;
251 break;
252
253 default:
254 CRM_Core_Error::fatal("$table is not supported in PriceSet::usedBy()");
255 break;
256 }
257 }
258
259 return $usedBy;
260 }
261
262 /**
263 * Delete the price set
264 *
265 * @param int $id Price Set id
266 *
267 * @return boolean false if fields exist for this set, true if the
268 * set could be deleted
269 *
270 * @access public
271 * @static
272 */
273 public static function deleteSet($id) {
274 // remove from all inactive forms
275 $usedBy = self::getUsedBy($id);
276 if (isset($usedBy['civicrm_event'])) {
277 foreach ($usedBy['civicrm_event'] as $eventId => $unused) {
278 $eventDAO = new CRM_Event_DAO_Event();
279 $eventDAO->id = $eventId;
280 $eventDAO->find();
281 while ($eventDAO->fetch()) {
282 self::removeFrom('civicrm_event', $eventDAO->id);
283 }
284 }
285 }
286
287 // delete price fields
9da8dc8c 288 $priceField = new CRM_Price_DAO_PriceField();
6a488035
TO
289 $priceField->price_set_id = $id;
290 $priceField->find();
291 while ($priceField->fetch()) {
292 // delete options first
9da8dc8c 293 CRM_Price_BAO_PriceField::deleteField($priceField->id);
6a488035
TO
294 }
295
9da8dc8c 296 $set = new CRM_Price_DAO_PriceSet();
6a488035
TO
297 $set->id = $id;
298 return $set->delete();
299 }
300
301 /**
302 * Link the price set with the specified table and id
303 *
304 * @param string $entityTable
305 * @param integer $entityId
306 * @param integer $priceSetId
307 *
308 * @return bool
309 */
310 public static function addTo($entityTable, $entityId, $priceSetId) {
311 // verify that the price set exists
9da8dc8c 312 $dao = new CRM_Price_DAO_PriceSet();
6a488035
TO
313 $dao->id = $priceSetId;
314 if (!$dao->find()) {
315 return FALSE;
316 }
317 unset($dao);
318
9da8dc8c 319 $dao = new CRM_Price_DAO_PriceSetEntity();
6a488035
TO
320 // find if this already exists
321 $dao->entity_id = $entityId;
322 $dao->entity_table = $entityTable;
323 $dao->find(TRUE);
324
325 // add or update price_set_id
326 $dao->price_set_id = $priceSetId;
327 return $dao->save();
328 }
329
330 /**
331 * Delete price set for the given entity and id
332 *
333 * @param string $entityTable
334 * @param integer $entityId
335 */
336 public static function removeFrom($entityTable, $entityId) {
9da8dc8c 337 $dao = new CRM_Price_DAO_PriceSetEntity();
6a488035
TO
338 $dao->entity_table = $entityTable;
339 $dao->entity_id = $entityId;
340 return $dao->delete();
341 }
342
343 /**
344 * Find a price_set_id associatied with the given table, id and usedFor
345 * Used For value for events:1, contribution:2, membership:3
346 *
347 * @param string $entityTable
348 * @param int $entityId
349 * @param int $usedFor ( price set that extends/used for particular component )
350 *
351 * @return integer|false price_set_id, or false if none found
352 */
353 public static function getFor($entityTable, $entityId, $usedFor = NULL, $isQuickConfig = NULL, &$setName = NULL) {
354 if (!$entityTable || !$entityId) {
355 return FALSE;
356 }
357
358 $sql = 'SELECT ps.id as price_set_id, ps.name as price_set_name
359 FROM civicrm_price_set ps
360 INNER JOIN civicrm_price_set_entity pse ON ps.id = pse.price_set_id
361 WHERE pse.entity_table = %1 AND pse.entity_id = %2 ';
362 if ($isQuickConfig) {
363 $sql .= ' AND ps.is_quick_config = 0 ';
364 }
365 $params = array(1 => array($entityTable, 'String'),
366 2 => array($entityId, 'Integer'),
367 );
368 if ($usedFor) {
369 $sql .= " AND ps.extends LIKE '%%3%' ";
370 $params[3] = array($usedFor, 'Integer');
371 }
372
373 $dao = CRM_Core_DAO::executeQuery($sql, $params);
374 $dao->fetch();
375 $setName = (isset($dao->price_set_name)) ? $dao->price_set_name : FALSE;
376 return (isset($dao->price_set_id)) ? $dao->price_set_id : FALSE;
377 }
378
379 /**
380 * Find a price_set_id associatied with the given option value or field ID
381 *
382 * @param array $params (reference) an assoc array of name/value pairs
383 * array may contain either option id or
384 * price field id
385 *
386 * @return price set id on success, null otherwise
387 * @static
388 * @access public
389 */
390 public static function getSetId(&$params) {
391 $fid = NULL;
392
393 if ($oid = CRM_Utils_Array::value('oid', $params)) {
9da8dc8c 394 $fieldValue = new CRM_Price_DAO_PriceFieldValue();
6a488035
TO
395 $fieldValue->id = $oid;
396 if ($fieldValue->find(TRUE)) {
397 $fid = $fieldValue->price_field_id;
398 }
399 }
400 else {
401 $fid = CRM_Utils_Array::value('fid', $params);
402 }
403
404 if (isset($fid)) {
9da8dc8c 405 return CRM_Core_DAO::getFieldValue('CRM_Price_DAO_PriceField', $fid, 'price_set_id');
6a488035
TO
406 }
407
408 return NULL;
409 }
410
411 /**
412 * Return an associative array of all price sets
413 *
414 * @param bool $withInactive whether or not to include inactive entries
415 * @param string $extendComponentName name of the component like 'CiviEvent','CiviContribute'
416 *
417 * @return array associative array of id => name
418 */
419 public static function getAssoc($withInactive = FALSE, $extendComponentName = FALSE) {
420 $query = '
421 SELECT
422 DISTINCT ( price_set_id ) as id, title
423 FROM
424 civicrm_price_field,
425 civicrm_price_set
426 WHERE
427 civicrm_price_set.id = civicrm_price_field.price_set_id AND is_quick_config = 0 ';
428
429 if (!$withInactive) {
430 $query .= ' AND civicrm_price_set.is_active = 1 ';
431 }
432
433 if (self::eventPriceSetDomainID()) {
434 $query .= ' AND civicrm_price_set.domain_id = ' . CRM_Core_Config::domainID();
435 }
436
437 $priceSets = array();
438
439 if ($extendComponentName) {
440 $componentId = CRM_Core_Component::getComponentID($extendComponentName);
441 if (!$componentId) {
442 return $priceSets;
443 }
444 $query .= " AND civicrm_price_set.extends LIKE '%$componentId%' ";
445 }
446
447 $dao = CRM_Core_DAO::executeQuery($query);
448 while ($dao->fetch()) {
449 $priceSets[$dao->id] = $dao->title;
450 }
451 return $priceSets;
452 }
453
454 /**
455 * Get price set details
456 *
457 * An array containing price set details (including price fields) is returned
458 *
459 * @param int $setId - price set id whose details are needed
460 *
461 * @return array $setTree - array consisting of field details
462 */
463 public static function getSetDetail($setID, $required = TRUE, $validOnly = FALSE) {
464 // create a new tree
465 $setTree = array();
466 $select = $from = $where = $orderBy = '';
467
468 $priceFields = array(
469 'id',
470 'name',
471 'label',
472 'html_type',
473 'is_enter_qty',
474 'help_pre',
475 'help_post',
476 'weight',
477 'is_display_amounts',
478 'options_per_line',
479 'is_active',
480 'active_on',
481 'expire_on',
482 'javascript',
483 'visibility_id',
484 'is_required',
485 );
486 if ($required == TRUE) {
487 $priceFields[] = 'is_required';
488 }
489
490 // create select
491 $select = 'SELECT ' . implode(',', $priceFields);
492 $from = ' FROM civicrm_price_field';
493
494 $params = array();
495 $params[1] = array($setID, 'Integer');
496 $where = '
497WHERE price_set_id = %1
498AND is_active = 1
499';
500 $dateSelect = '';
501 if ($validOnly) {
502 $currentTime = date('YmdHis');
503 $dateSelect = "
504AND ( active_on IS NULL OR active_on <= {$currentTime} )
505AND ( expire_on IS NULL OR expire_on >= {$currentTime} )
506";
507 }
508
509 $orderBy = ' ORDER BY weight';
510
511 $sql = $select . $from . $where . $dateSelect . $orderBy;
512
513 $dao = CRM_Core_DAO::executeQuery($sql, $params);
514
515 $visibility = CRM_Core_PseudoConstant::visibility('name');
516 while ($dao->fetch()) {
517 $fieldID = $dao->id;
518
519 $setTree[$setID]['fields'][$fieldID] = array();
520 $setTree[$setID]['fields'][$fieldID]['id'] = $fieldID;
521
522 foreach ($priceFields as $field) {
523 if ($field == 'id' || is_null($dao->$field)) {
524 continue;
525 }
526
527 if ($field == 'visibility_id') {
528 $setTree[$setID]['fields'][$fieldID]['visibility'] = $visibility[$dao->$field];
529 }
530 $setTree[$setID]['fields'][$fieldID][$field] = $dao->$field;
531 }
9da8dc8c 532 $setTree[$setID]['fields'][$fieldID]['options'] = CRM_Price_BAO_PriceField::getOptions($fieldID, FALSE);
6a488035
TO
533 }
534
535 // also get the pre and post help from this price set
536 $sql = "
537SELECT extends, financial_type_id, help_pre, help_post, is_quick_config
538FROM civicrm_price_set
539WHERE id = %1";
540 $dao = CRM_Core_DAO::executeQuery($sql, $params);
541 if ($dao->fetch()) {
542 $setTree[$setID]['extends'] = $dao->extends;
157b21d8 543 $setTree[$setID]['financial_type_id'] = $dao->financial_type_id;
6a488035
TO
544 $setTree[$setID]['help_pre'] = $dao->help_pre;
545 $setTree[$setID]['help_post'] = $dao->help_post;
546 $setTree[$setID]['is_quick_config'] = $dao->is_quick_config;
547 }
548 return $setTree;
549 }
550
551 static function initSet(&$form, $id, $entityTable = 'civicrm_event', $validOnly = FALSE, $priceSetId = NULL) {
552 if (!$priceSetId) {
553 $priceSetId = self::getFor($entityTable, $id);
554 }
555
556 //check if priceset is is_config
557 if (is_numeric($priceSetId)) {
9da8dc8c 558 if (CRM_Core_DAO::getFieldValue('CRM_Price_DAO_PriceSet', $priceSetId, 'is_quick_config') && $form->getVar('_name') != 'Participant') {
6a488035
TO
559 $form->assign('quickConfig', 1);
560 }
561 }
562 // get price info
563 if ($priceSetId) {
564 if ($form->_action & CRM_Core_Action::UPDATE) {
565 $entityId = $entity = NULL;
566
567 switch ($entityTable) {
568 case 'civicrm_event':
569 $entity = 'participant';
570 if (CRM_Utils_System::getClassName($form) == 'CRM_Event_Form_Participant') {
571 $entityId = $form->_id;
572 }
573 else {
574 $entityId = $form->_participantId;
575 }
576 break;
577
578 case 'civicrm_contribution_page':
579 case 'civicrm_contribution':
580 $entity = 'contribution';
581 $entityId = $form->_id;
582 break;
583 }
584
585 if ($entityId && $entity) {
586 $form->_values['line_items'] = CRM_Price_BAO_LineItem::getLineItems($entityId, $entity);
587 }
588 $required = FALSE;
589 }
590 else {
591 $required = TRUE;
592 }
593
594 $form->_priceSetId = $priceSetId;
595 $priceSet = self::getSetDetail($priceSetId, $required, $validOnly);
596 $form->_priceSet = CRM_Utils_Array::value($priceSetId, $priceSet);
597 $form->_values['fee'] = CRM_Utils_Array::value('fields', $form->_priceSet);
598
599 //get the price set fields participant count.
600 if ($entityTable == 'civicrm_event') {
601 //get option count info.
602 $form->_priceSet['optionsCountTotal'] = self::getPricesetCount($priceSetId);
603 if ($form->_priceSet['optionsCountTotal']) {
604 $optionsCountDeails = array();
605 if (!empty($form->_priceSet['fields'])) {
606 foreach ($form->_priceSet['fields'] as $field) {
607 foreach ($field['options'] as $option) {
608 $count = CRM_Utils_Array::value('count', $option, 0);
609 $optionsCountDeails['fields'][$field['id']]['options'][$option['id']] = $count;
610 }
611 }
612 }
613 $form->_priceSet['optionsCountDetails'] = $optionsCountDeails;
614 }
615
616 //get option max value info.
617 $optionsMaxValueTotal = 0;
618 $optionsMaxValueDetails = array();
619
620 if (!empty($form->_priceSet['fields'])) {
621 foreach ($form->_priceSet['fields'] as $field) {
622 foreach ($field['options'] as $option) {
623 $maxVal = CRM_Utils_Array::value('max_value', $option, 0);
624 $optionsMaxValueDetails['fields'][$field['id']]['options'][$option['id']] = $maxVal;
625 $optionsMaxValueTotal += $maxVal;
626 }
627 }
628 }
629
630 $form->_priceSet['optionsMaxValueTotal'] = $optionsMaxValueTotal;
631 if ($optionsMaxValueTotal) {
632 $form->_priceSet['optionsMaxValueDetails'] = $optionsMaxValueDetails;
633 }
634 }
635 $form->set('priceSetId', $form->_priceSetId);
636 $form->set('priceSet', $form->_priceSet);
637
638 return $priceSetId;
639 }
640 return FALSE;
641 }
642
643 static function processAmount(&$fields, &$params, &$lineItem, $component = '') {
644 // using price set
645 $totalPrice = 0;
646 $radioLevel = $checkboxLevel = $selectLevel = $textLevel = array();
647 if ($component) {
648 $autoRenew = array();
649 $autoRenew[0] = $autoRenew[1] = $autoRenew[2] = 0;
650 }
651 foreach ($fields as $id => $field) {
a7488080 652 if (empty($params["price_{$id}"]) ||
6a488035
TO
653 (empty($params["price_{$id}"]) && $params["price_{$id}"] == NULL)
654 ) {
655 // skip if nothing was submitted for this field
656 continue;
657 }
658
659 switch ($field['html_type']) {
660 case 'Text':
661 $params["price_{$id}"] = array(key($field['options']) => $params["price_{$id}"]);
662 CRM_Price_BAO_LineItem::format($id, $params, $field, $lineItem);
663 $totalPrice += $lineItem[key($field['options'])]['line_total'];
664 break;
665
666 case 'Radio':
667 //special case if user select -none-
668 if ($params["price_{$id}"] <= 0) {
669 continue;
670 }
671 $params["price_{$id}"] = array($params["price_{$id}"] => 1);
672 $optionValueId = CRM_Utils_Array::key(1, $params["price_{$id}"]);
673 $optionLabel = CRM_Utils_Array::value('label', $field['options'][$optionValueId]);
674 $params['amount_priceset_level_radio'] = array();
675 $params['amount_priceset_level_radio'][$optionValueId] = $optionLabel;
676 if (isset($radioLevel)) {
677 $radioLevel = array_merge($radioLevel,
678 array_keys($params['amount_priceset_level_radio'])
679 );
680 }
681 else {
682 $radioLevel = array_keys($params['amount_priceset_level_radio']);
683 }
684 CRM_Price_BAO_LineItem::format($id, $params, $field, $lineItem);
685 $totalPrice += $lineItem[$optionValueId]['line_total'];
cde484fd
DL
686 if (
687 $component &&
a6c4ca20
DL
688 // auto_renew exists and is empty in some workflows, which php treat as a 0
689 // and hence we explicity check to see if auto_renew is numeric
cde484fd
DL
690 isset($lineItem[$optionValueId]['auto_renew']) &&
691 is_numeric($lineItem[$optionValueId]['auto_renew'])
692 ) {
6a488035
TO
693 $autoRenew[$lineItem[$optionValueId]['auto_renew']] += $lineItem[$optionValueId]['line_total'];
694 }
695 break;
696
697 case 'Select':
698 $params["price_{$id}"] = array($params["price_{$id}"] => 1);
699 $optionValueId = CRM_Utils_Array::key(1, $params["price_{$id}"]);
700 $optionLabel = $field['options'][$optionValueId]['label'];
701 $params['amount_priceset_level_select'] = array();
702 $params['amount_priceset_level_select'][CRM_Utils_Array::key(1, $params["price_{$id}"])] = $optionLabel;
703 if (isset($selectLevel)) {
704 $selectLevel = array_merge($selectLevel, array_keys($params['amount_priceset_level_select']));
705 }
706 else {
707 $selectLevel = array_keys($params['amount_priceset_level_select']);
708 }
709 CRM_Price_BAO_LineItem::format($id, $params, $field, $lineItem);
710 $totalPrice += $lineItem[$optionValueId]['line_total'];
cde484fd
DL
711 if (
712 $component &&
713 isset($lineItem[$optionValueId]['auto_renew']) &&
714 is_numeric($lineItem[$optionValueId]['auto_renew'])
715 ) {
6a488035
TO
716 $autoRenew[$lineItem[$optionValueId]['auto_renew']] += $lineItem[$optionValueId]['line_total'];
717 }
718 break;
719
720 case 'CheckBox':
721 $params['amount_priceset_level_checkbox'] = $optionIds = array();
722 foreach ($params["price_{$id}"] as $optionId => $option) {
723 $optionIds[] = $optionId;
724 $optionLabel = $field['options'][$optionId]['label'];
725 $params['amount_priceset_level_checkbox']["{$field['options'][$optionId]['id']}"] = $optionLabel;
726 if (isset($checkboxLevel)) {
727 $checkboxLevel = array_unique(array_merge(
728 $checkboxLevel,
729 array_keys($params['amount_priceset_level_checkbox'])
730 )
731 );
732 }
733 else {
734 $checkboxLevel = array_keys($params['amount_priceset_level_checkbox']);
735 }
736 }
737 CRM_Price_BAO_LineItem::format($id, $params, $field, $lineItem);
738 foreach ($optionIds as $optionId) {
739 $totalPrice += $lineItem[$optionId]['line_total'];
cde484fd
DL
740 if (
741 $component &&
742 isset($lineItem[$optionId]['auto_renew']) &&
743 is_numeric($lineItem[$optionId]['auto_renew'])
744 ) {
6a488035
TO
745 $autoRenew[$lineItem[$optionId]['auto_renew']] += $lineItem[$optionId]['line_total'];
746 }
747 }
748 break;
749 }
750 }
751
752 $amount_level = array();
753 $totalParticipant = 0;
754 if (is_array($lineItem)) {
755 foreach ($lineItem as $values) {
756 $totalParticipant += $values['participant_count'];
757 if ($values['html_type'] == 'Text') {
758 $amount_level[] = $values['label'] . ' - ' . $values['qty'];
759 continue;
760 }
761 $amount_level[] = $values['label'];
762 }
763 }
764
765 $displayParticipantCount = '';
766 if ($totalParticipant > 0) {
767 $displayParticipantCount = ' Participant Count -' . $totalParticipant;
768 }
769 $params['amount_level'] = CRM_Core_DAO::VALUE_SEPARATOR . implode(CRM_Core_DAO::VALUE_SEPARATOR, $amount_level) . $displayParticipantCount . CRM_Core_DAO::VALUE_SEPARATOR;
770 $params['amount'] = $totalPrice;
771 if ($component) {
772 foreach ($autoRenew as $dontCare => $eachAmount) {
773 if (!$eachAmount) {
cde484fd 774 unset($autoRenew[$dontCare]);
6a488035
TO
775 }
776 }
777 if (count($autoRenew) > 1 ) {
778 $params['autoRenew'] = $autoRenew;
779 }
780 }
781 }
782
783 /**
784 * Function to build the price set form.
785 *
355ba699 786 * @return void
6a488035
TO
787 * @access public
788 */
789 static function buildPriceSet(&$form) {
790 $priceSetId = $form->get('priceSetId');
791 $userid = $form->getVar('_userID');
792 if (!$priceSetId) {
793 return;
794 }
795
796 $validFieldsOnly = TRUE;
797 $className = CRM_Utils_System::getClassName($form);
798 if (in_array($className, array(
799 'CRM_Contribute_Form_Contribution', 'CRM_Member_Form_Membership'))) {
800 $validFieldsOnly = FALSE;
801 }
802
803 $priceSet = self::getSetDetail($priceSetId, TRUE, $validFieldsOnly);
804 $form->_priceSet = CRM_Utils_Array::value($priceSetId, $priceSet);
883e4763 805 $validPriceFieldIds = array_keys($form->_priceSet['fields']);
6a488035 806 $form->_quickConfig = $quickConfig = 0;
9da8dc8c 807 if (CRM_Core_DAO::getFieldValue('CRM_Price_DAO_PriceSet', $priceSetId, 'is_quick_config')) {
6a488035
TO
808 $quickConfig = 1;
809 }
810
811 $form->assign('quickConfig', $quickConfig);
812 if ($className == 'CRM_Contribute_Form_Contribution_Main') {
813 $form->_quickConfig = $quickConfig;
814 }
815 $form->assign('priceSet', $form->_priceSet);
816
817 $component = 'contribution';
818 if ($className == 'CRM_Member_Form_Membership') {
819 $component = 'membership';
820 }
821
822 if ($className == 'CRM_Contribute_Form_Contribution_Main') {
823 $feeBlock = &$form->_values['fee'];
824 if (!empty($form->_useForMember)) {
825 $component = 'membership';
826 }
827 }
828 else {
829 $feeBlock = &$form->_priceSet['fields'];
830 }
831
832 // call the hook.
833 CRM_Utils_Hook::buildAmount($component, $form, $feeBlock);
834
883e4763 835 foreach ($feeBlock as $id => $field) {
6a488035
TO
836 if (CRM_Utils_Array::value('visibility', $field) == 'public' ||
837 !$validFieldsOnly
838 ) {
839 $options = CRM_Utils_Array::value('options', $field);
840 if ($className == 'CRM_Contribute_Form_Contribution_Main' && $component = 'membership') {
841 $checklifetime = self::checkCurrentMembership($options, $userid);
842 if ($checklifetime) {
843 $form->assign('ispricelifetime', TRUE);
844 }
845 }
883e4763 846 if (!is_array($options) || !in_array($id, $validPriceFieldIds)) {
6a488035
TO
847 continue;
848 }
9da8dc8c 849 CRM_Price_BAO_PriceField::addQuickFormElement($form,
6a488035
TO
850 'price_' . $field['id'],
851 $field['id'],
852 FALSE,
853 CRM_Utils_Array::value('is_required', $field, FALSE),
854 NULL,
855 $options
856 );
857 }
858 }
859 }
860
861 /**
862 * Function to check the current Membership
863 * having end date null.
864 */
865 static function checkCurrentMembership(&$options, $userid) {
866 if (!$userid || empty($options)) {
867 return;
868 }
869 static $_contact_memberships = array();
870 $checklifetime = FALSE;
871 foreach ($options as $key => $value) {
a7488080 872 if (!empty($value['membership_type_id'])) {
6a488035
TO
873 if (!isset($_contact_memberships[$userid][$value['membership_type_id']])) {
874 $_contact_memberships[$userid][$value['membership_type_id']] = CRM_Member_BAO_Membership::getContactMembership($userid, $value['membership_type_id'], FALSE);
875 }
876 $currentMembership = $_contact_memberships[$userid][$value['membership_type_id']];
8cc574cf 877 if (!empty($currentMembership) && empty($currentMembership['end_date'])) {
6a488035
TO
878 unset($options[$key]);
879 $checklifetime = TRUE;
880 }
881 }
882 }
883 if ($checklifetime) {
884 return TRUE;
885 }
886 else {
887 return FALSE;
888 }
889 }
890
891 /**
892 * Function to set daefult the price set fields.
893 *
894 * @return array $defaults
895 * @access public
896 */
897 static function setDefaultPriceSet(&$form, &$defaults) {
898 if (!isset($form->_priceSet) || empty($form->_priceSet['fields'])) {
899 return $defaults;
900 }
901
902 foreach ($form->_priceSet['fields'] as $key => $val) {
903 foreach ($val['options'] as $keys => $values) {
904 if ($values['is_default']) {
905 if ($val['html_type'] == 'CheckBox') {
906 $defaults["price_{$key}"][$keys] = 1;
907 }
908 else {
909 $defaults["price_{$key}"] = $keys;
910 }
911 }
912 }
913 }
914 return $defaults;
915 }
916
917 /**
918 * Get field ids of a price set
919 *
920 * @param int id Price Set id
921 *
922 * @return array of the field ids
923 *
924 * @access public
925 * @static
926 */
927 public static function getFieldIds($id) {
9da8dc8c 928 $priceField = new CRM_Price_DAO_PriceField();
6a488035
TO
929 $priceField->price_set_id = $id;
930 $priceField->find();
931 while ($priceField->fetch()) {
932 $var[] = $priceField->id;
933 }
934 return $var;
935 }
936
937 /**
938 * This function is to make a copy of a price set, including
939 * all the fields
940 *
941 * @param int $id the price set id to copy
942 *
943 * @return the copy object
944 * @access public
945 * @static
946 */
947 static function copy($id) {
948 $maxId = CRM_Core_DAO::singleValueQuery("SELECT max(id) FROM civicrm_price_set");
949
950 $title = ts('[Copy id %1]', array(1 => $maxId + 1));
951 $fieldsFix = array(
952 'suffix' => array('title' => ' ' . $title,
953 'name' => '__Copy_id_' . ($maxId + 1) . '_',
954 ),
955 );
956
9da8dc8c 957 $copy = &CRM_Core_DAO::copyGeneric('CRM_Price_DAO_PriceSet',
6a488035
TO
958 array('id' => $id),
959 NULL,
960 $fieldsFix
961 );
962
963 //copying all the blocks pertaining to the price set
9da8dc8c 964 $copyPriceField = &CRM_Core_DAO::copyGeneric('CRM_Price_DAO_PriceField',
6a488035
TO
965 array('price_set_id' => $id),
966 array('price_set_id' => $copy->id)
967 );
968 if (!empty($copyPriceField)) {
969 $price = array_combine(self::getFieldIds($id), self::getFieldIds($copy->id));
970
971 //copy option group and values
972 foreach ($price as $originalId => $copyId) {
9da8dc8c 973 CRM_Core_DAO::copyGeneric('CRM_Price_DAO_PriceFieldValue',
6a488035
TO
974 array('price_field_id' => $originalId),
975 array('price_field_id' => $copyId)
976 );
977 }
978 }
979 $copy->save();
980
981 CRM_Utils_Hook::copy('Set', $copy);
982 return $copy;
983 }
984
985 /**
986 * This function is to check price set permission
987 *
988 * @param int $sid the price set id
989 */
44c8822b
DL
990 static function checkPermission($sid) {
991 if ($sid && self::eventPriceSetDomainID()) {
9da8dc8c 992 $domain_id = CRM_Core_DAO::getFieldValue('CRM_Price_DAO_PriceSet', $sid, 'domain_id', 'id');
6a488035
TO
993 if (CRM_Core_Config::domainID() != $domain_id) {
994 CRM_Core_Error::fatal(ts('You do not have permission to access this page'));
995 }
996 }
997 return TRUE;
998 }
999
1000 /**
1001 * Get the sum of participant count
1002 * for all fields of given price set.
1003 *
1004 * @param int $sid the price set id
1005 *
1006 * @access public
1007 * @static
1008 */
1009 public static function getPricesetCount($sid, $onlyActive = TRUE) {
1010 $count = 0;
1011 if (!$sid) {
1012 return $count;
1013 }
1014
1015 $where = NULL;
1016 if ($onlyActive) {
1017 $where = 'AND value.is_active = 1 AND field.is_active = 1';
1018 }
1019
1020 static $pricesetFieldCount = array();
1021 if (!isset($pricesetFieldCount[$sid])) {
1022 $sql = "
1023 SELECT sum(value.count) as totalCount
1024 FROM civicrm_price_field_value value
1025INNER JOIN civicrm_price_field field ON ( field.id = value.price_field_id )
1026INNER JOIN civicrm_price_set pset ON ( pset.id = field.price_set_id )
1027 WHERE pset.id = %1
1028 $where";
1029
1030 $count = CRM_Core_DAO::singleValueQuery($sql, array(1 => array($sid, 'Positive')));
1031 $pricesetFieldCount[$sid] = ($count) ? $count : 0;
1032 }
1033
1034 return $pricesetFieldCount[$sid];
1035 }
1036
1037 public static function getMembershipCount($ids) {
1038 $queryString = "
1039SELECT count( pfv.id ) AS count, pfv.id AS id
1040FROM civicrm_price_field_value pfv
1041INNER JOIN civicrm_membership_type mt ON mt.id = pfv.membership_type_id
1042WHERE pfv.id IN ( $ids )
1043GROUP BY mt.member_of_contact_id";
1044
1045 $crmDAO = CRM_Core_DAO::executeQuery($queryString);
1046 $count = array();
1047
1048 while ($crmDAO->fetch()) {
1049 $count[$crmDAO->id] = $crmDAO->count;
1050 }
1051
1052 return $count;
1053 }
1054
1055 /**
1056 * Function to check if auto renew option should be shown
1057 *
1058 * @param int $priceSetId price set id
1059 *
1060 * @return int $autoRenewOption ( 0:hide, 1:optional 2:required )
1061 */
1062 public static function checkAutoRenewForPriceSet($priceSetId) {
1063 // auto-renew option should be visible if membership types associated with all the fields has
1064 // been set for auto-renew option
1065 // Auto renew checkbox should be frozen if for all the membership type auto renew is required
1066
1067 // get the membership type auto renew option and check if required or optional
1068 $query = 'SELECT mt.auto_renew, mt.duration_interval, mt.duration_unit
1069 FROM civicrm_price_field_value pfv
1070 INNER JOIN civicrm_membership_type mt ON pfv.membership_type_id = mt.id
1071 INNER JOIN civicrm_price_field pf ON pfv.price_field_id = pf.id
1072 WHERE pf.price_set_id = %1
1073 AND pf.is_active = 1
1074 AND pfv.is_active = 1';
1075
1076 $params = array(1 => array($priceSetId, 'Integer'));
1077
1078 $dao = CRM_Core_DAO::executeQuery($query, $params);
1079 $autoRenewOption = 2;
1080 $interval = $unit = array();
1081 while ($dao->fetch()) {
1082 if (!$dao->auto_renew) {
1083 $autoRenewOption = 0;
1084 break;
1085 }
1086 if ($dao->auto_renew == 1) {
1087 $autoRenewOption = 1;
1088 }
1089
1090 $interval[$dao->duration_interval] = $dao->duration_interval;
1091 $unit[$dao->duration_unit] = $dao->duration_unit;
1092 }
1093
1094 if (count($interval) == 1 && count($unit) == 1 && $autoRenewOption > 0) {
1095 return $autoRenewOption;
1096 }
1097 else {
1098 return 0;
1099 }
1100 }
1101
1102 /**
1103 * Function to retrieve auto renew frequency and interval
1104 *
1105 * @param int $priceSetId price set id
1106 *
1107 * @return array associate array of frequency interval and unit
1108 * @static
1109 * @access public
1110 */
1111 public static function getRecurDetails($priceSetId) {
1112 $query = 'SELECT mt.duration_interval, mt.duration_unit
1113 FROM civicrm_price_field_value pfv
1114 INNER JOIN civicrm_membership_type mt ON pfv.membership_type_id = mt.id
1115 INNER JOIN civicrm_price_field pf ON pfv.price_field_id = pf.id
1116 WHERE pf.price_set_id = %1 LIMIT 1';
1117
1118 $params = array(1 => array($priceSetId, 'Integer'));
1119 $dao = CRM_Core_DAO::executeQuery($query, $params);
1120 $dao->fetch();
1121 return array($dao->duration_interval, $dao->duration_unit);
1122 }
1123
1124 static function eventPriceSetDomainID() {
1125 return CRM_Core_BAO_Setting::getItem(CRM_Core_BAO_Setting::MULTISITE_PREFERENCES_NAME,
1126 'event_price_set_domain_id',
1127 NULL, FALSE
1128 );
1129 }
1130
1131 /**
1132 * update the is_quick_config flag in the db
1133 *
1134 * @param int $id id of the database record
1135 * @param boolean $isQuickConfig value we want to set the is_quick_config field
1136 *
1137 * @return Object DAO object on sucess, null otherwise
1138 * @static
1139 * @access public
1140 */
1141 static function setIsQuickConfig($id, $isQuickConfig) {
9da8dc8c 1142 return CRM_Core_DAO::setFieldValue('CRM_Price_DAO_PriceSet', $id, 'is_quick_config', $isQuickConfig);
6a488035
TO
1143 }
1144
1145 /**
cde484fd 1146 * Check if price set id provides option for
6a488035
TO
1147 * user to select both auto-renew and non-auto-renew memberships
1148 *
cde484fd 1149 * @access public
6a488035
TO
1150 * @static
1151 *
1152 */
1153 public static function checkMembershipPriceSet($id) {
cde484fd 1154 $query =
6a488035
TO
1155"
1156SELECT pfv.id, pfv.price_field_id, pfv.name, pfv.membership_type_id, pf.html_type, mt.auto_renew
1157FROM civicrm_price_field_value pfv
1158LEFT JOIN civicrm_price_field pf ON pf.id = pfv.price_field_id
1159LEFT JOIN civicrm_price_set ps ON ps.id = pf.price_set_id
1160LEFT JOIN civicrm_membership_type mt ON mt.id = pfv.membership_type_id
1161WHERE ps.id = %1
1162";
1163
1164 $params = array(1 => array($id, 'Integer'));
1165 $dao = CRM_Core_DAO::executeQuery($query, $params);
1166
1167 $autoRenew = array();
1168 //FIXME: do a comprehensive check of whether
1169 //2 membership types can be selected
1170 //instead of comparing all of them
1171 while ($dao->fetch()) {
cde484fd 1172 //temp fix for #CRM-10370
6a488035
TO
1173 //if its NULL consider it '0' i.e. 'No auto-renew option'
1174 $daoAutoRenew = $dao->auto_renew;
1175 if ($daoAutoRenew === NULL) {
1176 $daoAutoRenew = 0;
1177 }
1178 if (!empty($autoRenew) && !in_array($daoAutoRenew, $autoRenew)) {
1179 return true;
1180 }
1181 $autoRenew[] = $daoAutoRenew;
1182 }
1183 return false;
1184 }
1185
c6914066
PN
1186 /*
1187 * Copy priceSet when event/contibution page is copied
1188 *
1189 * @params string $baoName BAO name
1190 * @params int $id old event/contribution page id
1191 * @params int $newId newly created event/contribution page id
1192 *
1193 */
1194 static function copyPriceSet($baoName, $id, $newId) {
9da8dc8c 1195 $priceSetId = CRM_Price_BAO_PriceSet::getFor($baoName, $id);
c6914066 1196 if ($priceSetId) {
9da8dc8c 1197 $isQuickConfig = CRM_Core_DAO::getFieldValue('CRM_Price_DAO_PriceSet', $priceSetId, 'is_quick_config');
c6914066 1198 if($isQuickConfig) {
9da8dc8c 1199 $copyPriceSet = &CRM_Price_BAO_PriceSet::copy($priceSetId);
1200 CRM_Price_BAO_PriceSet::addTo($baoName, $newId, $copyPriceSet->id);
44c8822b 1201 }
c6914066 1202 else {
9da8dc8c 1203 $copyPriceSet = &CRM_Core_DAO::copyGeneric('CRM_Price_DAO_PriceSetEntity',
c6914066
PN
1204 array(
1205 'entity_id' => $id,
1206 'entity_table' => $baoName,
1207 ),
1208 array('entity_id' => $newId)
1209 );
1210 }
1211 // copy event discount
1212 if ($baoName == 'civicrm_event') {
1213 $discount = CRM_Core_BAO_Discount::getOptionGroup($id, 'civicrm_event');
1214 foreach ($discount as $discountId => $setId) {
1215
9da8dc8c 1216 $copyPriceSet = &CRM_Price_BAO_PriceSet::copy($setId);
44c8822b 1217
c6914066
PN
1218 $copyDiscount = &CRM_Core_DAO::copyGeneric(
1219 'CRM_Core_DAO_Discount',
1220 array(
1221 'id' => $discountId,
1222 ),
1223 array(
1224 'entity_id' => $newId,
1225 'price_set_id' => $copyPriceSet->id,
1226 )
1227 );
1228 }
1229 }
1230 }
1231 }
6a488035
TO
1232}
1233