Added the current uncommited changes to production code, and rebased to 4.6.8
[civicrm-core.git] / CRM / Price / BAO / PriceSet.php
CommitLineData
6a488035
TO
1<?php
2/*
3 +--------------------------------------------------------------------+
fee14197 4 | CiviCRM version 5 |
6a488035 5 +--------------------------------------------------------------------+
6b83d5bd 6 | Copyright CiviCRM LLC (c) 2004-2019 |
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 +--------------------------------------------------------------------+
e70a7fc0 26 */
6a488035
TO
27
28/**
29 *
30 * @package CRM
6b83d5bd 31 * @copyright CiviCRM LLC (c) 2004-2019
6a488035
TO
32 */
33
34/**
1bde39c7 35 * Business object for managing price sets.
6a488035
TO
36 *
37 */
9da8dc8c 38class CRM_Price_BAO_PriceSet extends CRM_Price_DAO_PriceSet {
6a488035 39
71ba92c4 40 /**
fe482240 41 * Static field for default price set details.
71ba92c4
PN
42 *
43 * @var array
71ba92c4 44 */
971e129b 45 public static $_defaultPriceSet = NULL;
71ba92c4 46
6a488035 47 /**
fe482240 48 * Class constructor.
6a488035 49 */
00be9182 50 public function __construct() {
6a488035
TO
51 parent::__construct();
52 }
53
54 /**
fe482240 55 * Takes an associative array and creates a price set object.
6a488035 56 *
414c1420
TO
57 * @param array $params
58 * (reference) an assoc array of name/value pairs.
6a488035 59 *
16b10e64 60 * @return CRM_Price_DAO_PriceSet
6a488035 61 */
00be9182 62 public static function create(&$params) {
22e263ad 63 if (empty($params['id']) && empty($params['name'])) {
e0c1764e
EM
64 $params['name'] = CRM_Utils_String::munge($params['title'], '_', 242);
65 }
e68e1c9a
PN
66 $priceSetID = NULL;
67 $validatePriceSet = TRUE;
e10ac060 68 if (!empty($params['extends']) && is_array($params['extends'])) {
e68e1c9a
PN
69 if (!array_key_exists(CRM_Core_Component::getComponentID('CiviEvent'), $params['extends'])
70 || !array_key_exists(CRM_Core_Component::getComponentID('CiviMember'), $params['extends'])
71 ) {
72 $validatePriceSet = FALSE;
73 }
076809e3
JV
74 $params['extends'] = CRM_Utils_Array::implodePadded($params['extends']);
75 }
e68e1c9a
PN
76 else {
77 $priceSetID = CRM_Utils_Array::value('id', $params);
78 }
9da8dc8c 79 $priceSetBAO = new CRM_Price_BAO_PriceSet();
6a488035
TO
80 $priceSetBAO->copyValues($params);
81 if (self::eventPriceSetDomainID()) {
82 $priceSetBAO->domain_id = CRM_Core_Config::domainID();
83 }
84 return $priceSetBAO->save();
85 }
86
87 /**
fe482240 88 * Fetch object based on array of properties.
6a488035 89 *
414c1420
TO
90 * @param array $params
91 * (reference ) an assoc array of name/value pairs.
92 * @param array $defaults
93 * (reference ) an assoc array to hold the flattened values.
6a488035 94 *
16b10e64 95 * @return CRM_Price_DAO_PriceSet
6a488035 96 */
00be9182 97 public static function retrieve(&$params, &$defaults) {
9da8dc8c 98 return CRM_Core_DAO::commonRetrieve('CRM_Price_DAO_PriceSet', $params, $defaults);
6a488035
TO
99 }
100
101 /**
fe482240 102 * Update the is_active flag in the db.
6a488035 103 *
414c1420
TO
104 * @param int $id
105 * Id of the database record.
6c8f6e67
EM
106 * @param $isActive
107 *
8a4fede3 108 * @return bool
109 * true if we found and updated the object, else false
6a488035 110 */
00be9182 111 public static function setIsActive($id, $isActive) {
9da8dc8c 112 return CRM_Core_DAO::setFieldValue('CRM_Price_DAO_PriceSet', $id, 'is_active', $isActive);
6a488035
TO
113 }
114
115 /**
116 * Calculate the default price set id
117 * assigned to the contribution/membership etc
118 *
119 * @param string $entity
120 *
a6c01b45
CW
121 * @return array
122 * default price set
6a488035 123 *
6a488035
TO
124 */
125 public static function getDefaultPriceSet($entity = 'contribution') {
71ba92c4
PN
126 if (!empty(self::$_defaultPriceSet[$entity])) {
127 return self::$_defaultPriceSet[$entity];
128 }
e0c1764e
EM
129 $entityName = 'default_contribution_amount';
130 if ($entity == 'membership') {
6a488035
TO
131 $entityName = 'default_membership_type_amount';
132 }
133
134 $sql = "
82cc6775 135SELECT ps.id AS setID, pfv.price_field_id AS priceFieldID, pfv.id AS priceFieldValueID, pfv.name, pfv.label, pfv.membership_type_id, pfv.amount, pfv.financial_type_id
6a488035
TO
136FROM civicrm_price_set ps
137LEFT JOIN civicrm_price_field pf ON pf.`price_set_id` = ps.id
138LEFT JOIN civicrm_price_field_value pfv ON pfv.price_field_id = pf.id
139WHERE ps.name = '{$entityName}'
140";
141
142 $dao = CRM_Core_DAO::executeQuery($sql);
be2fb01f 143 self::$_defaultPriceSet[$entity] = [];
6a488035 144 while ($dao->fetch()) {
be2fb01f 145 self::$_defaultPriceSet[$entity][$dao->priceFieldValueID] = [
353ffa53
TO
146 'setID' => $dao->setID,
147 'priceFieldID' => $dao->priceFieldID,
148 'name' => $dao->name,
149 'label' => $dao->label,
150 'priceFieldValueID' => $dao->priceFieldValueID,
151 'membership_type_id' => $dao->membership_type_id,
152 'amount' => $dao->amount,
153 'financial_type_id' => $dao->financial_type_id,
be2fb01f 154 ];
6a488035
TO
155 }
156
71ba92c4 157 return self::$_defaultPriceSet[$entity];
6a488035
TO
158 }
159
160 /**
161 * Get the price set title.
162 *
414c1420
TO
163 * @param int $id
164 * Id of price set.
6a488035 165 *
a6c01b45
CW
166 * @return string
167 * title
6a488035 168 *
6a488035
TO
169 */
170 public static function getTitle($id) {
9da8dc8c 171 return CRM_Core_DAO::getFieldValue('CRM_Price_DAO_PriceSet', $id, 'title');
6a488035
TO
172 }
173
174 /**
175 * Return a list of all forms which use this price set.
176 *
414c1420
TO
177 * @param int $id
178 * Id of price set.
e0c1764e 179 * @param bool|string $simpleReturn - get raw data. Possible values: 'entity', 'table'
6a488035
TO
180 *
181 * @return array
182 */
1bde39c7 183 public static function getUsedBy($id, $simpleReturn = FALSE) {
be2fb01f 184 $usedBy = [];
f5b8da4b 185 $forms = self::getFormsUsingPriceSet($id);
186 $tables = array_keys($forms);
187 // @todo - this is really clumsy overloading the signature like this. Instead
188 // move towards having a function that does not call reformatUsedByFormsWithEntityData
189 // and call that when that data is not used.
6a488035
TO
190 if ($simpleReturn == 'table') {
191 return $tables;
192 }
f5b8da4b 193 // @todo - this is painfully slow in some cases.
6a488035
TO
194 if (empty($forms)) {
195 $queryString = "
196SELECT cli.entity_table, cli.entity_id
197FROM civicrm_line_item cli
198LEFT JOIN civicrm_price_field cpf ON cli.price_field_id = cpf.id
199WHERE cpf.price_set_id = %1";
be2fb01f 200 $params = [1 => [$id, 'Integer']];
6a488035
TO
201 $crmFormDAO = CRM_Core_DAO::executeQuery($queryString, $params);
202 while ($crmFormDAO->fetch()) {
203 $forms[$crmFormDAO->entity_table][] = $crmFormDAO->entity_id;
204 $tables[] = $crmFormDAO->entity_table;
205 }
206 if (empty($forms)) {
207 return $usedBy;
208 }
209 }
f5b8da4b 210 // @todo - this is really clumsy overloading the signature like this. See above.
6a488035
TO
211 if ($simpleReturn == 'entity') {
212 return $forms;
213 }
f5b8da4b 214 $usedBy = self::reformatUsedByFormsWithEntityData($forms, $usedBy);
6a488035
TO
215
216 return $usedBy;
217 }
218
219 /**
9d8f190f 220 * Delete the price set, including the fields.
6a488035 221 *
414c1420
TO
222 * @param int $id
223 * Price Set id.
6a488035 224 *
acb1052e 225 * @return bool
a6c01b45 226 * false if fields exist for this set, true if the
16b10e64 227 * set could be deleted
6a488035 228 *
6a488035
TO
229 */
230 public static function deleteSet($id) {
6a488035 231 // delete price fields
9da8dc8c 232 $priceField = new CRM_Price_DAO_PriceField();
6a488035
TO
233 $priceField->price_set_id = $id;
234 $priceField->find();
235 while ($priceField->fetch()) {
236 // delete options first
9da8dc8c 237 CRM_Price_BAO_PriceField::deleteField($priceField->id);
6a488035
TO
238 }
239
9da8dc8c 240 $set = new CRM_Price_DAO_PriceSet();
6a488035
TO
241 $set->id = $id;
242 return $set->delete();
243 }
244
245 /**
fe482240 246 * Link the price set with the specified table and id.
6a488035
TO
247 *
248 * @param string $entityTable
414c1420
TO
249 * @param int $entityId
250 * @param int $priceSetId
6a488035
TO
251 *
252 * @return bool
253 */
254 public static function addTo($entityTable, $entityId, $priceSetId) {
255 // verify that the price set exists
9da8dc8c 256 $dao = new CRM_Price_DAO_PriceSet();
6a488035
TO
257 $dao->id = $priceSetId;
258 if (!$dao->find()) {
259 return FALSE;
260 }
261 unset($dao);
262
9da8dc8c 263 $dao = new CRM_Price_DAO_PriceSetEntity();
6a488035
TO
264 // find if this already exists
265 $dao->entity_id = $entityId;
266 $dao->entity_table = $entityTable;
267 $dao->find(TRUE);
268
269 // add or update price_set_id
270 $dao->price_set_id = $priceSetId;
271 return $dao->save();
272 }
273
274 /**
fe482240 275 * Delete price set for the given entity and id.
6a488035
TO
276 *
277 * @param string $entityTable
414c1420 278 * @param int $entityId
77b97be7
EM
279 *
280 * @return mixed
6a488035
TO
281 */
282 public static function removeFrom($entityTable, $entityId) {
353ffa53 283 $dao = new CRM_Price_DAO_PriceSetEntity();
6a488035 284 $dao->entity_table = $entityTable;
353ffa53 285 $dao->entity_id = $entityId;
6a488035
TO
286 return $dao->delete();
287 }
288
289 /**
1bde39c7 290 * Find a price_set_id associated with the given table, id and usedFor
6a488035
TO
291 * Used For value for events:1, contribution:2, membership:3
292 *
293 * @param string $entityTable
77b97be7 294 * @param int $entityId
414c1420
TO
295 * @param int $usedFor
296 * ( price set that extends/used for particular component ).
77b97be7
EM
297 *
298 * @param null $isQuickConfig
299 * @param null $setName
6a488035 300 *
df8d3074 301 * @return int|false
72b3a70c 302 * price_set_id, or false if none found
6a488035
TO
303 */
304 public static function getFor($entityTable, $entityId, $usedFor = NULL, $isQuickConfig = NULL, &$setName = NULL) {
305 if (!$entityTable || !$entityId) {
306 return FALSE;
307 }
308
309 $sql = 'SELECT ps.id as price_set_id, ps.name as price_set_name
310 FROM civicrm_price_set ps
311 INNER JOIN civicrm_price_set_entity pse ON ps.id = pse.price_set_id
312 WHERE pse.entity_table = %1 AND pse.entity_id = %2 ';
313 if ($isQuickConfig) {
314 $sql .= ' AND ps.is_quick_config = 0 ';
315 }
be2fb01f
CW
316 $params = [
317 1 => [$entityTable, 'String'],
318 2 => [$entityId, 'Integer'],
319 ];
6a488035
TO
320 if ($usedFor) {
321 $sql .= " AND ps.extends LIKE '%%3%' ";
be2fb01f 322 $params[3] = [$usedFor, 'Integer'];
6a488035
TO
323 }
324
325 $dao = CRM_Core_DAO::executeQuery($sql, $params);
326 $dao->fetch();
327 $setName = (isset($dao->price_set_name)) ? $dao->price_set_name : FALSE;
328 return (isset($dao->price_set_id)) ? $dao->price_set_id : FALSE;
329 }
330
331 /**
fe482240 332 * Find a price_set_id associated with the given option value or field ID.
6a488035 333 *
414c1420
TO
334 * @param array $params
335 * (reference) an assoc array of name/value pairs.
6a488035
TO
336 * array may contain either option id or
337 * price field id
338 *
df8d3074 339 * @return int|NULL
72b3a70c 340 * price set id on success, null otherwise
6a488035
TO
341 */
342 public static function getSetId(&$params) {
343 $fid = NULL;
344
345 if ($oid = CRM_Utils_Array::value('oid', $params)) {
9da8dc8c 346 $fieldValue = new CRM_Price_DAO_PriceFieldValue();
6a488035
TO
347 $fieldValue->id = $oid;
348 if ($fieldValue->find(TRUE)) {
349 $fid = $fieldValue->price_field_id;
350 }
351 }
352 else {
353 $fid = CRM_Utils_Array::value('fid', $params);
354 }
355
356 if (isset($fid)) {
9da8dc8c 357 return CRM_Core_DAO::getFieldValue('CRM_Price_DAO_PriceField', $fid, 'price_set_id');
6a488035
TO
358 }
359
360 return NULL;
361 }
362
363 /**
fe482240 364 * Return an associative array of all price sets.
6a488035 365 *
414c1420
TO
366 * @param bool $withInactive
367 * Whether or not to include inactive entries.
77b97be7 368 * @param bool|string $extendComponentName name of the component like 'CiviEvent','CiviContribute'
6a3d8d2d 369 * @param string $column name of the column.
6a488035 370 *
a6c01b45
CW
371 * @return array
372 * associative array of id => name
6a488035 373 */
6a3d8d2d
WA
374 public static function getAssoc($withInactive = FALSE, $extendComponentName = FALSE, $column = 'title') {
375 $query = "
6a488035 376 SELECT
75d6d479 377 DISTINCT ( price_set_id ) as id, s.{$column}
6a488035 378 FROM
53df1142
E
379 civicrm_price_set s
380 INNER JOIN civicrm_price_field f ON f.price_set_id = s.id
381 INNER JOIN civicrm_price_field_value v ON v.price_field_id = f.id
6a488035 382 WHERE
75d6d479 383 is_quick_config = 0 ";
6a488035
TO
384
385 if (!$withInactive) {
53df1142 386 $query .= ' AND s.is_active = 1 ';
6a488035
TO
387 }
388
389 if (self::eventPriceSetDomainID()) {
53df1142 390 $query .= ' AND s.domain_id = ' . CRM_Core_Config::domainID();
6a488035
TO
391 }
392
be2fb01f 393 $priceSets = [];
6a488035
TO
394
395 if ($extendComponentName) {
396 $componentId = CRM_Core_Component::getComponentID($extendComponentName);
397 if (!$componentId) {
398 return $priceSets;
399 }
53df1142 400 $query .= " AND s.extends LIKE '%$componentId%' ";
6a488035 401 }
53df1142 402 // Check permissioned financial types
573fd305 403 CRM_Financial_BAO_FinancialType::getAvailableFinancialTypes($financialType, CRM_Core_Action::ADD);
53df1142 404 if ($financialType) {
40c655aa 405 $types = implode(',', array_keys($financialType));
53df1142
E
406 $query .= ' AND s.financial_type_id IN (' . $types . ') AND v.financial_type_id IN (' . $types . ') ';
407 }
408 else {
c5c263ca
AH
409 // Do not display any price sets
410 $query .= " AND 0 ";
53df1142
E
411 }
412 $query .= " GROUP BY s.id";
6a488035
TO
413 $dao = CRM_Core_DAO::executeQuery($query);
414 while ($dao->fetch()) {
6a3d8d2d 415 $priceSets[$dao->id] = $dao->$column;
6a488035
TO
416 }
417 return $priceSets;
418 }
419
420 /**
fe482240 421 * Get price set details.
6a488035
TO
422 *
423 * An array containing price set details (including price fields) is returned
424 *
100fef9d 425 * @param int $setID
003ca729 426 * Price Set ID.
2a6da8d7 427 * @param bool $required
003ca729 428 * Appears to have no effect based on reading the code.
2a6da8d7 429 * @param bool $validOnly
003ca729 430 * Should only fields where today's date falls within the valid range be returned?
2a6da8d7 431 *
a6c01b45 432 * @return array
003ca729 433 * Array consisting of field details
6a488035
TO
434 */
435 public static function getSetDetail($setID, $required = TRUE, $validOnly = FALSE) {
436 // create a new tree
be2fb01f 437 $setTree = [];
6a488035 438
be2fb01f 439 $priceFields = [
6a488035
TO
440 'id',
441 'name',
442 'label',
443 'html_type',
444 'is_enter_qty',
445 'help_pre',
446 'help_post',
447 'weight',
448 'is_display_amounts',
449 'options_per_line',
450 'is_active',
451 'active_on',
452 'expire_on',
453 'javascript',
454 'visibility_id',
455 'is_required',
be2fb01f 456 ];
6a488035
TO
457 if ($required == TRUE) {
458 $priceFields[] = 'is_required';
459 }
460
461 // create select
462 $select = 'SELECT ' . implode(',', $priceFields);
463 $from = ' FROM civicrm_price_field';
464
be2fb01f
CW
465 $params = [
466 1 => [$setID, 'Integer'],
467 ];
9bb909ef 468 $currentTime = date('YmdHis');
469 $where = "
6a488035
TO
470WHERE price_set_id = %1
471AND is_active = 1
9bb909ef 472AND ( active_on IS NULL OR active_on <= {$currentTime} )
473";
6a488035
TO
474 $dateSelect = '';
475 if ($validOnly) {
6a488035 476 $dateSelect = "
6a488035
TO
477AND ( expire_on IS NULL OR expire_on >= {$currentTime} )
478";
479 }
480
481 $orderBy = ' ORDER BY weight';
482
483 $sql = $select . $from . $where . $dateSelect . $orderBy;
484
485 $dao = CRM_Core_DAO::executeQuery($sql, $params);
486
265807d1
PN
487 $isDefaultContributionPriceSet = FALSE;
488 if ('default_contribution_amount' == CRM_Core_DAO::getFieldValue('CRM_Price_DAO_PriceSet', $setID)) {
489 $isDefaultContributionPriceSet = TRUE;
490 }
491
6a488035
TO
492 $visibility = CRM_Core_PseudoConstant::visibility('name');
493 while ($dao->fetch()) {
494 $fieldID = $dao->id;
495
be2fb01f 496 $setTree[$setID]['fields'][$fieldID] = [];
6a488035
TO
497 $setTree[$setID]['fields'][$fieldID]['id'] = $fieldID;
498
499 foreach ($priceFields as $field) {
500 if ($field == 'id' || is_null($dao->$field)) {
501 continue;
502 }
503
504 if ($field == 'visibility_id') {
505 $setTree[$setID]['fields'][$fieldID]['visibility'] = $visibility[$dao->$field];
506 }
507 $setTree[$setID]['fields'][$fieldID][$field] = $dao->$field;
508 }
265807d1 509 $setTree[$setID]['fields'][$fieldID]['options'] = CRM_Price_BAO_PriceField::getOptions($fieldID, FALSE, FALSE, $isDefaultContributionPriceSet);
6a488035
TO
510 }
511
512 // also get the pre and post help from this price set
513 $sql = "
601c7a24 514SELECT extends, financial_type_id, help_pre, help_post, is_quick_config, min_amount
6a488035
TO
515FROM civicrm_price_set
516WHERE id = %1";
517 $dao = CRM_Core_DAO::executeQuery($sql, $params);
518 if ($dao->fetch()) {
519 $setTree[$setID]['extends'] = $dao->extends;
157b21d8 520 $setTree[$setID]['financial_type_id'] = $dao->financial_type_id;
6a488035
TO
521 $setTree[$setID]['help_pre'] = $dao->help_pre;
522 $setTree[$setID]['help_post'] = $dao->help_post;
523 $setTree[$setID]['is_quick_config'] = $dao->is_quick_config;
601c7a24 524 $setTree[$setID]['min_amount'] = $dao->min_amount;
6a488035
TO
525 }
526 return $setTree;
527 }
528
85020e43 529 /**
003ca729
EM
530 * Get the Price Field ID.
531 *
532 * We call this function when more than one being present would represent an error
85020e43
EM
533 * starting format derived from current(CRM_Price_BAO_PriceSet::getSetDetail($priceSetId))
534 * @param array $priceSet
535 *
536 * @throws CRM_Core_Exception
537 * @return int
538 */
00be9182 539 public static function getOnlyPriceFieldID(array $priceSet) {
22e263ad 540 if (count($priceSet['fields']) > 1) {
1bde39c7 541 throw new CRM_Core_Exception(ts('expected only one price field to be in price set but multiple are present'));
85020e43
EM
542 }
543 return (int) implode('_', array_keys($priceSet['fields']));
544 }
545
546 /**
547 * Get the Price Field Value ID. We call this function when more than one being present would represent an error
548 * current(CRM_Price_BAO_PriceSet::getSetDetail($priceSetId))
549 * @param array $priceSet
550 *
551 * @throws CRM_Core_Exception
552 * @return int
553 */
00be9182 554 public static function getOnlyPriceFieldValueID(array $priceSet) {
85020e43 555 $priceFieldID = self::getOnlyPriceFieldID($priceSet);
22e263ad 556 if (count($priceSet['fields'][$priceFieldID]['options']) > 1) {
1bde39c7 557 throw new CRM_Core_Exception(ts('expected only one price field to be in price set but multiple are present'));
85020e43
EM
558 }
559 return (int) implode('_', array_keys($priceSet['fields'][$priceFieldID]['options']));
560 }
561
ffd93213 562 /**
003ca729
EM
563 * Initiate price set such that various non-BAO things are set on the form.
564 *
565 * This function is not really a BAO function so the location is misleading.
566 *
e0c1764e 567 * @param CRM_Core_Form $form
100fef9d 568 * @param int $id
003ca729 569 * Form entity id.
ffd93213
EM
570 * @param string $entityTable
571 * @param bool $validOnly
100fef9d 572 * @param int $priceSetId
003ca729 573 * Price Set ID
ffd93213
EM
574 *
575 * @return bool|false|int|null
576 */
00be9182 577 public static function initSet(&$form, $id, $entityTable = 'civicrm_event', $validOnly = FALSE, $priceSetId = NULL) {
6a488035
TO
578 if (!$priceSetId) {
579 $priceSetId = self::getFor($entityTable, $id);
580 }
581
1bde39c7 582 //check if price set is is_config
6a488035 583 if (is_numeric($priceSetId)) {
9da8dc8c 584 if (CRM_Core_DAO::getFieldValue('CRM_Price_DAO_PriceSet', $priceSetId, 'is_quick_config') && $form->getVar('_name') != 'Participant') {
6a488035
TO
585 $form->assign('quickConfig', 1);
586 }
587 }
588 // get price info
589 if ($priceSetId) {
590 if ($form->_action & CRM_Core_Action::UPDATE) {
591 $entityId = $entity = NULL;
592
593 switch ($entityTable) {
594 case 'civicrm_event':
595 $entity = 'participant';
596 if (CRM_Utils_System::getClassName($form) == 'CRM_Event_Form_Participant') {
597 $entityId = $form->_id;
598 }
599 else {
600 $entityId = $form->_participantId;
601 }
602 break;
603
604 case 'civicrm_contribution_page':
605 case 'civicrm_contribution':
606 $entity = 'contribution';
607 $entityId = $form->_id;
608 break;
609 }
610
611 if ($entityId && $entity) {
612 $form->_values['line_items'] = CRM_Price_BAO_LineItem::getLineItems($entityId, $entity);
613 }
614 $required = FALSE;
615 }
616 else {
617 $required = TRUE;
618 }
619
620 $form->_priceSetId = $priceSetId;
621 $priceSet = self::getSetDetail($priceSetId, $required, $validOnly);
622 $form->_priceSet = CRM_Utils_Array::value($priceSetId, $priceSet);
623 $form->_values['fee'] = CRM_Utils_Array::value('fields', $form->_priceSet);
624
625 //get the price set fields participant count.
626 if ($entityTable == 'civicrm_event') {
627 //get option count info.
628 $form->_priceSet['optionsCountTotal'] = self::getPricesetCount($priceSetId);
629 if ($form->_priceSet['optionsCountTotal']) {
be2fb01f 630 $optionsCountDetails = [];
6a488035
TO
631 if (!empty($form->_priceSet['fields'])) {
632 foreach ($form->_priceSet['fields'] as $field) {
633 foreach ($field['options'] as $option) {
634 $count = CRM_Utils_Array::value('count', $option, 0);
1bde39c7 635 $optionsCountDetails['fields'][$field['id']]['options'][$option['id']] = $count;
6a488035
TO
636 }
637 }
638 }
1bde39c7 639 $form->_priceSet['optionsCountDetails'] = $optionsCountDetails;
6a488035
TO
640 }
641
642 //get option max value info.
643 $optionsMaxValueTotal = 0;
be2fb01f 644 $optionsMaxValueDetails = [];
6a488035
TO
645
646 if (!empty($form->_priceSet['fields'])) {
647 foreach ($form->_priceSet['fields'] as $field) {
648 foreach ($field['options'] as $option) {
649 $maxVal = CRM_Utils_Array::value('max_value', $option, 0);
650 $optionsMaxValueDetails['fields'][$field['id']]['options'][$option['id']] = $maxVal;
651 $optionsMaxValueTotal += $maxVal;
652 }
653 }
654 }
655
656 $form->_priceSet['optionsMaxValueTotal'] = $optionsMaxValueTotal;
657 if ($optionsMaxValueTotal) {
658 $form->_priceSet['optionsMaxValueDetails'] = $optionsMaxValueDetails;
659 }
660 }
661 $form->set('priceSetId', $form->_priceSetId);
662 $form->set('priceSet', $form->_priceSet);
663
664 return $priceSetId;
665 }
666 return FALSE;
667 }
668
ffd93213 669 /**
003ca729
EM
670 * Get line item purchase information.
671 *
672 * This function takes the input parameters and interprets out of it what has been purchased.
673 *
ffd93213 674 * @param $fields
003ca729
EM
675 * This is the output of the function CRM_Price_BAO_PriceSet::getSetDetail($priceSetID, FALSE, FALSE);
676 * And, it would make sense to introduce caching into that function and call it from here rather than
677 * require the $fields array which is passed from pillar to post around the form in order to pass it in here.
c490a46a 678 * @param array $params
003ca729 679 * Params reflecting form input e.g with fields 'price_5' => 7, 'price_8' => array(7, 8)
ffd93213 680 * @param $lineItem
003ca729 681 * Line item array to be altered.
ffd93213 682 * @param string $component
003ca729
EM
683 * This parameter appears to only be relevant to determining whether memberships should be auto-renewed.
684 * (and is effectively a boolean for 'is_membership' which could be calculated from the line items.)
1bde39c7 685 * @param int $priceSetID
ffd93213 686 */
1a1a2f4f 687 public static function processAmount($fields, &$params, &$lineItem, $component = '', $priceSetID = NULL) {
6a488035 688 // using price set
dc428161 689 $totalPrice = $totalTax = 0;
1a1a2f4f 690 // CRM-18701 Sometimes the amount in the price set is overridden by the amount on the form.
691 // This is notably the case with memberships and we need to put this amount
692 // on the line item rather than the calculated amount.
693 // This seems to only affect radio link items as that is the use case for the 'quick config'
694 // set up (which allows a free form field).
695 $amount_override = NULL;
0be991f0 696
6a488035 697 if ($component) {
be2fb01f 698 $autoRenew = [];
6a488035
TO
699 $autoRenew[0] = $autoRenew[1] = $autoRenew[2] = 0;
700 }
1a1a2f4f 701 if ($priceSetID) {
702 $priceFields = self::filterPriceFieldsFromParams($priceSetID, $params);
15f4ec65 703 if (count($priceFields) == 1) {
704 $amount_override = CRM_Utils_Array::value('partial_payment_total', $params, CRM_Utils_Array::value('total_amount', $params));
1a1a2f4f 705 }
706 }
6a488035 707 foreach ($fields as $id => $field) {
a7488080 708 if (empty($params["price_{$id}"]) ||
6a488035
TO
709 (empty($params["price_{$id}"]) && $params["price_{$id}"] == NULL)
710 ) {
711 // skip if nothing was submitted for this field
712 continue;
713 }
714
715 switch ($field['html_type']) {
716 case 'Text':
be45c8b4 717 $firstOption = reset($field['options']);
be2fb01f 718 $params["price_{$id}"] = [$firstOption['id'] => $params["price_{$id}"]];
15f4ec65 719 CRM_Price_BAO_LineItem::format($id, $params, $field, $lineItem, CRM_Utils_Array::value('partial_payment_total', $params));
83e1baa3
PN
720 $optionValueId = key($field['options']);
721
722 if (CRM_Utils_Array::value('name', $field['options'][$optionValueId]) == 'contribution_amount') {
049db839 723 $taxRates = CRM_Core_PseudoConstant::getTaxRates();
724 if (array_key_exists($params['financial_type_id'], $taxRates)) {
725 $field['options'][key($field['options'])]['tax_rate'] = $taxRates[$params['financial_type_id']];
83e1baa3
PN
726 $taxAmount = CRM_Contribute_BAO_Contribution_Utils::calculateTaxAmount($field['options'][$optionValueId]['amount'], $field['options'][$optionValueId]['tax_rate']);
727 $field['options'][$optionValueId]['tax_amount'] = round($taxAmount['tax_amount'], 2);
049db839 728 }
729 }
83e1baa3
PN
730 if (CRM_Utils_Array::value('tax_rate', $field['options'][$optionValueId])) {
731 $lineItem = self::setLineItem($field, $lineItem, $optionValueId, $totalTax);
732 }
3b5db8ce 733 $totalPrice += $lineItem[$firstOption['id']]['line_total'] + CRM_Utils_Array::value('tax_amount', $lineItem[key($field['options'])]);
6a488035
TO
734 break;
735
736 case 'Radio':
737 //special case if user select -none-
738 if ($params["price_{$id}"] <= 0) {
94b444d0 739 break;
6a488035 740 }
be2fb01f 741 $params["price_{$id}"] = [$params["price_{$id}"] => 1];
6a488035 742 $optionValueId = CRM_Utils_Array::key(1, $params["price_{$id}"]);
0be991f0 743
1a1a2f4f 744 CRM_Price_BAO_LineItem::format($id, $params, $field, $lineItem, $amount_override);
dc428161 745 if (CRM_Utils_Array::value('tax_rate', $field['options'][$optionValueId])) {
83e1baa3 746 $lineItem = self::setLineItem($field, $lineItem, $optionValueId, $totalTax);
f436577a 747 if ($amount_override) {
c40e1ff4 748 $lineItem[$optionValueId]['line_total'] = $lineItem[$optionValueId]['unit_price'] = CRM_Utils_Rule::cleanMoney($lineItem[$optionValueId]['line_total'] - $lineItem[$optionValueId]['tax_amount']);
749 }
dc428161 750 }
c40e1ff4 751 $totalPrice += $lineItem[$optionValueId]['line_total'] + CRM_Utils_Array::value('tax_amount', $lineItem[$optionValueId]);
cde484fd
DL
752 if (
753 $component &&
a6c4ca20 754 // auto_renew exists and is empty in some workflows, which php treat as a 0
28156120 755 // and hence we explicitly check to see if auto_renew is numeric
cde484fd
DL
756 isset($lineItem[$optionValueId]['auto_renew']) &&
757 is_numeric($lineItem[$optionValueId]['auto_renew'])
758 ) {
6a488035
TO
759 $autoRenew[$lineItem[$optionValueId]['auto_renew']] += $lineItem[$optionValueId]['line_total'];
760 }
761 break;
762
763 case 'Select':
be2fb01f 764 $params["price_{$id}"] = [$params["price_{$id}"] => 1];
6a488035 765 $optionValueId = CRM_Utils_Array::key(1, $params["price_{$id}"]);
0be991f0 766
15f4ec65 767 CRM_Price_BAO_LineItem::format($id, $params, $field, $lineItem, CRM_Utils_Array::value('partial_payment_total', $params));
dc428161 768 if (CRM_Utils_Array::value('tax_rate', $field['options'][$optionValueId])) {
83e1baa3 769 $lineItem = self::setLineItem($field, $lineItem, $optionValueId, $totalTax);
dc428161 770 }
c40e1ff4 771 $totalPrice += $lineItem[$optionValueId]['line_total'] + CRM_Utils_Array::value('tax_amount', $lineItem[$optionValueId]);
cde484fd
DL
772 if (
773 $component &&
774 isset($lineItem[$optionValueId]['auto_renew']) &&
775 is_numeric($lineItem[$optionValueId]['auto_renew'])
776 ) {
6a488035
TO
777 $autoRenew[$lineItem[$optionValueId]['auto_renew']] += $lineItem[$optionValueId]['line_total'];
778 }
779 break;
780
781 case 'CheckBox':
0be991f0 782
15f4ec65 783 CRM_Price_BAO_LineItem::format($id, $params, $field, $lineItem, CRM_Utils_Array::value('partial_payment_total', $params));
0be991f0 784 foreach ($params["price_{$id}"] as $optionId => $option) {
dc428161 785 if (CRM_Utils_Array::value('tax_rate', $field['options'][$optionId])) {
83e1baa3 786 $lineItem = self::setLineItem($field, $lineItem, $optionId, $totalTax);
dc428161 787 }
c40e1ff4 788 $totalPrice += $lineItem[$optionId]['line_total'] + CRM_Utils_Array::value('tax_amount', $lineItem[$optionId]);
cde484fd
DL
789 if (
790 $component &&
791 isset($lineItem[$optionId]['auto_renew']) &&
792 is_numeric($lineItem[$optionId]['auto_renew'])
793 ) {
6a488035
TO
794 $autoRenew[$lineItem[$optionId]['auto_renew']] += $lineItem[$optionId]['line_total'];
795 }
796 }
797 break;
798 }
799 }
800
be2fb01f 801 $amount_level = [];
6a488035
TO
802 $totalParticipant = 0;
803 if (is_array($lineItem)) {
804 foreach ($lineItem as $values) {
805 $totalParticipant += $values['participant_count'];
2b308818
DG
806 // This is a bit nasty. The logic of 'quick config' was because price set configuration was
807 // (and still is) too difficult to replace the 'quick config' price set configuration on the contribution
808 // page.
809 //
810 // However, because the quick config concept existed all sorts of logic was hung off it
811 // and function behaviour sometimes depends on whether 'price set' is set - although actually it
812 // is always set at the functional level. In this case we are dealing with the default 'quick config'
813 // price set having a label of 'Contribution Amount' which could wind up creating a 'funny looking' label.
814 // The correct answer is probably for it to have an empty label in the DB - the label is never shown so it is a
815 // place holder.
816 //
817 // But, in the interests of being careful when capacity is low - avoiding the known default value
818 // will get us by.
819 // Crucially a test has been added so a better solution can be implemented later with some comfort.
c039f658 820 // @todo - stop setting amount level in this function & call the getAmountLevel function to retrieve it.
2b308818
DG
821 if ($values['label'] != ts('Contribution Amount')) {
822 $amount_level[] = $values['label'] . ' - ' . (float) $values['qty'];
823 }
6a488035
TO
824 }
825 }
826
827 $displayParticipantCount = '';
828 if ($totalParticipant > 0) {
829 $displayParticipantCount = ' Participant Count -' . $totalParticipant;
830 }
c039f658 831 // @todo - stop setting amount level in this function & call the getAmountLevel function to retrieve it.
c0214b81 832 if (!empty($amount_level)) {
0aa9b939 833 $params['amount_level'] = CRM_Utils_Array::implodePadded($amount_level);
c0214b81 834 if (!empty($displayParticipantCount)) {
d7a867a8 835 $params['amount_level'] = CRM_Core_DAO::VALUE_SEPARATOR . implode(CRM_Core_DAO::VALUE_SEPARATOR, $amount_level) . $displayParticipantCount . CRM_Core_DAO::VALUE_SEPARATOR;
c0214b81 836 }
2b308818 837 }
88afada7 838
839 $params['amount'] = $totalPrice;
dc428161 840 $params['tax_amount'] = $totalTax;
6a488035
TO
841 if ($component) {
842 foreach ($autoRenew as $dontCare => $eachAmount) {
843 if (!$eachAmount) {
cde484fd 844 unset($autoRenew[$dontCare]);
6a488035
TO
845 }
846 }
481a74f4 847 if (count($autoRenew) > 1) {
6a488035
TO
848 $params['autoRenew'] = $autoRenew;
849 }
850 }
851 }
852
c039f658 853 /**
854 * Get the text to record for amount level.
855 *
856 * @param array $params
857 * Submitted parameters
858 * - priceSetId is required to be set in the calling function
859 * (we don't e-notice check it to enforce that - all payments DO have a price set - even if it is the
860 * default one & this function asks that be set if it is the case).
861 *
862 * @return string
863 * Text for civicrm_contribution.amount_level field.
864 */
865 public static function getAmountLevelText($params) {
866 $priceSetID = $params['priceSetId'];
867 $priceFieldSelection = self::filterPriceFieldsFromParams($priceSetID, $params);
868 $priceFieldMetadata = self::getCachedPriceSetDetail($priceSetID);
8c632a5d 869 $displayParticipantCount = NULL;
0f8a0349 870
be2fb01f 871 $amount_level = [];
c039f658 872 foreach ($priceFieldMetadata['fields'] as $field) {
873 if (!empty($priceFieldSelection[$field['id']])) {
0f8a0349 874 $qtyString = '';
c039f658 875 if ($field['is_enter_qty']) {
876 $qtyString = ' - ' . (float) $params['price_' . $field['id']];
877 }
878 // We deliberately & specifically exclude contribution amount as it has a specific meaning.
879 // ie. it represents the default price field for a contribution. Another approach would be not
880 // to give it a label if we don't want it to show.
881 if ($field['label'] != ts('Contribution Amount')) {
882 $amount_level[] = $field['label'] . $qtyString;
883 }
884 }
885 }
886 return CRM_Core_DAO::VALUE_SEPARATOR . implode(CRM_Core_DAO::VALUE_SEPARATOR, $amount_level) . $displayParticipantCount . CRM_Core_DAO::VALUE_SEPARATOR;
887 }
888
889 /**
890 * Get the fields relevant to the price field from the parameters.
891 *
892 * E.g we are looking for price_5 => 7 out of a big array of input parameters.
893 *
894 * @param int $priceSetID
895 * @param array $params
896 *
897 * @return array
898 * Price fields found in the params array
899 */
900 public static function filterPriceFieldsFromParams($priceSetID, $params) {
901 $priceSet = self::getCachedPriceSetDetail($priceSetID);
be2fb01f 902 $return = [];
c039f658 903 foreach ($priceSet['fields'] as $field) {
904 if (!empty($params['price_' . $field['id']])) {
905 $return[$field['id']] = $params['price_' . $field['id']];
906 }
907 }
908 return $return;
909 }
910
911 /**
912 * Wrapper for getSetDetail with caching.
913 *
914 * We seem to be passing this array around in a painful way - presumably to avoid the hit
915 * of loading it - so lets make it callable with caching.
916 *
917 * Why not just add caching to the other function? We could do - it just seemed a bit unclear the best caching pattern
918 * & the function was already pretty fugly. Also, I feel like we need to migrate the interaction with price-sets into
919 * a more granular interaction - ie. retrieve specific data using specific functions on this class & have the form
920 * think less about the price sets.
921 *
922 * @param int $priceSetID
923 *
924 * @return array
925 */
926 public static function getCachedPriceSetDetail($priceSetID) {
927 $cacheKey = __CLASS__ . __FUNCTION__ . '_' . $priceSetID;
928 $cache = CRM_Utils_Cache::singleton();
982f1e47 929 $values = $cache->get($cacheKey);
c039f658 930 if (empty($values)) {
931 $data = self::getSetDetail($priceSetID);
932 $values = $data[$priceSetID];
933 $cache->set($cacheKey, $values);
934 }
935 return $values;
936 }
937
6a488035 938 /**
100fef9d 939 * Build the price set form.
6a488035 940 *
e0c1764e 941 * @param CRM_Core_Form $form
dd244018 942 *
355ba699 943 * @return void
6a488035 944 */
00be9182 945 public static function buildPriceSet(&$form) {
6a488035 946 $priceSetId = $form->get('priceSetId');
6a488035
TO
947 if (!$priceSetId) {
948 return;
949 }
950
951 $validFieldsOnly = TRUE;
952 $className = CRM_Utils_System::getClassName($form);
be2fb01f 953 if (in_array($className, [
353ffa53 954 'CRM_Contribute_Form_Contribution',
acb1052e 955 'CRM_Member_Form_Membership',
be2fb01f 956 ])) {
6a488035
TO
957 $validFieldsOnly = FALSE;
958 }
959
353ffa53
TO
960 $priceSet = self::getSetDetail($priceSetId, TRUE, $validFieldsOnly);
961 $form->_priceSet = CRM_Utils_Array::value($priceSetId, $priceSet);
883e4763 962 $validPriceFieldIds = array_keys($form->_priceSet['fields']);
6a488035 963 $form->_quickConfig = $quickConfig = 0;
9da8dc8c 964 if (CRM_Core_DAO::getFieldValue('CRM_Price_DAO_PriceSet', $priceSetId, 'is_quick_config')) {
6a488035
TO
965 $quickConfig = 1;
966 }
967
968 $form->assign('quickConfig', $quickConfig);
969 if ($className == 'CRM_Contribute_Form_Contribution_Main') {
970 $form->_quickConfig = $quickConfig;
971 }
ee7f71d9
AS
972
973 // Mark which field should have the auto-renew checkbox, if any. CRM-18305
f4fd225b 974 if (!empty($form->_membershipTypeValues) && is_array($form->_membershipTypeValues)) {
be2fb01f 975 $autoRenewMembershipTypes = [];
ee7f71d9
AS
976 foreach ($form->_membershipTypeValues as $membershiptTypeValue) {
977 if ($membershiptTypeValue['auto_renew']) {
978 $autoRenewMembershipTypes[] = $membershiptTypeValue['id'];
979 }
980 }
a012055b 981 foreach ($form->_priceSet['fields'] as $field) {
ee7f71d9
AS
982 if (array_key_exists('options', $field) && is_array($field['options'])) {
983 foreach ($field['options'] as $option) {
b3460c23 984 if (!empty($option['membership_type_id'])) {
ee7f71d9
AS
985 if (in_array($option['membership_type_id'], $autoRenewMembershipTypes)) {
986 $form->_priceSet['auto_renew_membership_field'] = $field['id'];
987 // Only one field can offer auto_renew memberships, so break here.
988 break;
989 }
990 }
991 }
992 }
993 }
994 }
6a488035
TO
995 $form->assign('priceSet', $form->_priceSet);
996
997 $component = 'contribution';
998 if ($className == 'CRM_Member_Form_Membership') {
999 $component = 'membership';
1000 }
1001
1002 if ($className == 'CRM_Contribute_Form_Contribution_Main') {
1003 $feeBlock = &$form->_values['fee'];
1004 if (!empty($form->_useForMember)) {
1005 $component = 'membership';
1006 }
1007 }
1008 else {
1009 $feeBlock = &$form->_priceSet['fields'];
1010 }
66af7c48
PN
1011 if (CRM_Financial_BAO_FinancialType::isACLFinancialTypeStatus()) {
1012 foreach ($feeBlock as $key => $value) {
1013 foreach ($value['options'] as $k => $options) {
1014 if (!CRM_Core_Permission::check('add contributions of type ' . CRM_Contribute_PseudoConstant::financialType($options['financial_type_id']))) {
1015 unset($feeBlock[$key]['options'][$k]);
1016 }
1017 }
1018 if (empty($feeBlock[$key]['options'])) {
1019 unset($feeBlock[$key]);
e1a89dfd 1020 }
4a695b27 1021 }
e1a89dfd 1022 }
6a488035
TO
1023 // call the hook.
1024 CRM_Utils_Hook::buildAmount($component, $form, $feeBlock);
1025
c7b3d063 1026 // CRM-14492 Admin price fields should show up on event registration if user has 'administer CiviCRM' permissions
ba1dcfda 1027 $adminFieldVisible = FALSE;
c7b3d063 1028 if (CRM_Core_Permission::check('administer CiviCRM')) {
ba1dcfda 1029 $adminFieldVisible = TRUE;
c7b3d063 1030 }
77b97be7 1031
a13c171d
CR
1032 $hideAdminValues = TRUE;
1033 if (CRM_Core_Permission::check('edit contributions')) {
1034 $hideAdminValues = FALSE;
1035 }
1036
883e4763 1037 foreach ($feeBlock as $id => $field) {
6a488035 1038 if (CRM_Utils_Array::value('visibility', $field) == 'public' ||
ba1dcfda 1039 (CRM_Utils_Array::value('visibility', $field) == 'admin' && $adminFieldVisible == TRUE) ||
6a488035
TO
1040 !$validFieldsOnly
1041 ) {
1042 $options = CRM_Utils_Array::value('options', $field);
1043 if ($className == 'CRM_Contribute_Form_Contribution_Main' && $component = 'membership') {
cc509891 1044 $userid = $form->getVar('_membershipContactID');
6a488035
TO
1045 $checklifetime = self::checkCurrentMembership($options, $userid);
1046 if ($checklifetime) {
1047 $form->assign('ispricelifetime', TRUE);
1048 }
1049 }
a13c171d 1050
be2fb01f 1051 $formClasses = ['CRM_Contribute_Form_Contribution', 'CRM_Member_Form_Membership'];
a13c171d 1052
883e4763 1053 if (!is_array($options) || !in_array($id, $validPriceFieldIds)) {
6a488035
TO
1054 continue;
1055 }
a13c171d
CR
1056 elseif ($hideAdminValues && !in_array($className, $formClasses)) {
1057 foreach ($options as $key => $currentOption) {
1058 if ($currentOption['visibility_id'] == CRM_Price_BAO_PriceField::getVisibilityOptionID('admin')) {
1059 unset($options[$key]);
1060 }
1061 }
1062 }
1019b2fe
SL
1063 if (!empty($options)) {
1064 CRM_Price_BAO_PriceField::addQuickFormElement($form,
1065 'price_' . $field['id'],
1066 $field['id'],
1067 FALSE,
1068 CRM_Utils_Array::value('is_required', $field, FALSE),
1069 NULL,
1070 $options
1071 );
1072 }
6a488035
TO
1073 }
1074 }
1075 }
1076
1077 /**
003ca729
EM
1078 * Check the current Membership having end date null.
1079 *
1080 * @param array $options
1081 * @param int $userid
1082 * Probably actually contact ID.
1083 *
1084 * @return bool
6a488035 1085 */
00be9182 1086 public static function checkCurrentMembership(&$options, $userid) {
6a488035 1087 if (!$userid || empty($options)) {
925157c5 1088 return FALSE;
6a488035 1089 }
be2fb01f 1090 static $_contact_memberships = [];
003ca729 1091 $checkLifetime = FALSE;
6a488035 1092 foreach ($options as $key => $value) {
a7488080 1093 if (!empty($value['membership_type_id'])) {
6a488035
TO
1094 if (!isset($_contact_memberships[$userid][$value['membership_type_id']])) {
1095 $_contact_memberships[$userid][$value['membership_type_id']] = CRM_Member_BAO_Membership::getContactMembership($userid, $value['membership_type_id'], FALSE);
1096 }
1097 $currentMembership = $_contact_memberships[$userid][$value['membership_type_id']];
8cc574cf 1098 if (!empty($currentMembership) && empty($currentMembership['end_date'])) {
6a488035 1099 unset($options[$key]);
003ca729 1100 $checkLifetime = TRUE;
6a488035
TO
1101 }
1102 }
1103 }
003ca729 1104 if ($checkLifetime) {
6a488035
TO
1105 return TRUE;
1106 }
1107 else {
1108 return FALSE;
1109 }
1110 }
1111
1112 /**
100fef9d 1113 * Set daefult the price set fields.
6a488035 1114 *
c490a46a 1115 * @param CRM_Core_Form $form
fd31fa4c
EM
1116 * @param $defaults
1117 *
a6c01b45 1118 * @return array
6a488035 1119 */
00be9182 1120 public static function setDefaultPriceSet(&$form, &$defaults) {
6a488035
TO
1121 if (!isset($form->_priceSet) || empty($form->_priceSet['fields'])) {
1122 return $defaults;
1123 }
1124
1bde39c7 1125 foreach ($form->_priceSet['fields'] as $val) {
6a488035 1126 foreach ($val['options'] as $keys => $values) {
cb063506
KJ
1127 // build price field index which is passed via URL
1128 // url format will be appended by "&price_5=11"
1129 $priceFieldName = 'price_' . $values['price_field_id'];
1130 $priceFieldValue = self::getPriceFieldValueFromURL($form, $priceFieldName);
1131 if (!empty($priceFieldValue)) {
034b5cb6 1132 self::setDefaultPriceSetField($priceFieldName, $priceFieldValue, $val['html_type'], $defaults);
cb063506
KJ
1133 // break here to prevent overwriting of default due to 'is_default'
1134 // option configuration. The value sent via URL get's higher priority.
1135 break;
1136 }
1137 elseif ($values['is_default']) {
034b5cb6 1138 self::setDefaultPriceSetField($priceFieldName, $keys, $val['html_type'], $defaults);
6a488035
TO
1139 }
1140 }
1141 }
1142 return $defaults;
1143 }
1144
034b5cb6
KJ
1145 /**
1146 * Get the value of price field if passed via url
1147 *
1148 * @param string $priceFieldName
1149 * @param string $priceFieldValue
1150 * @param string $priceFieldType
1151 * @param array $defaults
1152 *
1153 * @return void
1154 */
1155 public static function setDefaultPriceSetField($priceFieldName, $priceFieldValue, $priceFieldType, &$defaults) {
1156 if ($priceFieldType == 'CheckBox') {
1157 $defaults[$priceFieldName][$priceFieldValue] = 1;
1158 }
1159 else {
1160 $defaults[$priceFieldName] = $priceFieldValue;
1161 }
1162 }
1163
cb063506
KJ
1164 /**
1165 * Get the value of price field if passed via url
1166 *
1167 * @param CRM_Core_Form $form
1168 * @param string $priceFieldName
1169 *
1170 * @return mixed $priceFieldValue
1171 */
1172 public static function getPriceFieldValueFromURL(&$form, $priceFieldName) {
1173 $priceFieldValue = CRM_Utils_Request::retrieve($priceFieldName, 'String', $form, FALSE, NULL, 'GET');
1174 if (!empty($priceFieldValue)) {
1175 return $priceFieldValue;
1176 }
1177 }
1178
b2cdd843
EM
1179 /**
1180 * Supports event create function by setting up required price sets, not tested but expect
1181 * it will work for contribution page
414c1420
TO
1182 * @param array $params
1183 * As passed to api/bao create fn.
1184 * @param CRM_Core_DAO $entity
1185 * Object for given entity.
1186 * @param string $entityName
1187 * Name of entity - e.g event.
b2cdd843 1188 */
00be9182 1189 public static function setPriceSets(&$params, $entity, $entityName) {
22e263ad 1190 if (empty($params['price_set_id']) || !is_array($params['price_set_id'])) {
b2cdd843
EM
1191 return;
1192 }
1193 // CRM-14069 note that we may as well start by assuming more than one.
1194 // currently the form does not pass in as an array & will be skipped
1195 // test is passing in as an array but I feel the api should have a metadata that allows
1196 // transform of single to array - seems good for managing transitions - in which case all api
1197 // calls that set price_set_id will hit this
1198 // e.g in getfields 'price_set_id' => array('blah', 'bao_type' => 'array') - causing
1199 // all separated values, strings, json half-separated values (in participant we hit this)
1200 // to be converted to json @ api layer
1201 $pse = new CRM_Price_DAO_PriceSetEntity();
1202 $pse->entity_table = 'civicrm_' . $entityName;
1203 $pse->entity_id = $entity->id;
1204 while ($pse->fetch()) {
22e263ad 1205 if (!in_array($pse->price_set_id, $params['price_set_id'])) {
b2cdd843
EM
1206 // note an even more aggressive form of this deletion currently happens in event form
1207 // past price sets discounts are made inaccessible by this as the discount_id is set to NULL
1208 // on the participant record
1209 if (CRM_Price_BAO_PriceSet::removeFrom('civicrm_' . $entityName, $entity->id)) {
ba1dcfda 1210 CRM_Core_BAO_Discount::del($entity->id, 'civicrm_' . $entityName);
b2cdd843
EM
1211 }
1212 }
1213 }
1214 foreach ($params['price_set_id'] as $priceSetID) {
1215 CRM_Price_BAO_PriceSet::addTo('civicrm_' . $entityName, $entity->id, $priceSetID);
1216 //@todo - how should we do this - copied from form
b53cbfbc 1217 //if (!empty($params['price_field_id'])) {
b2cdd843
EM
1218 // $priceSetID = CRM_Core_DAO::getFieldValue('CRM_Price_DAO_PriceField', $params['price_field_id'], 'price_set_id');
1219 // CRM_Price_BAO_PriceSet::setIsQuickConfig($priceSetID, 0);
1220 //}
1221 }
1222 }
353ffa53 1223
6a488035 1224 /**
fe482240 1225 * Get field ids of a price set.
6a488035 1226 *
414c1420
TO
1227 * @param int $id
1228 * Price Set id.
6a488035 1229 *
a6c01b45 1230 * @return array
16b10e64 1231 * Array of the field ids
6a488035 1232 *
6a488035
TO
1233 */
1234 public static function getFieldIds($id) {
9da8dc8c 1235 $priceField = new CRM_Price_DAO_PriceField();
6a488035
TO
1236 $priceField->price_set_id = $id;
1237 $priceField->find();
1238 while ($priceField->fetch()) {
1239 $var[] = $priceField->id;
1240 }
1241 return $var;
1242 }
1243
1244 /**
72b3a70c 1245 * Copy a price set, including all the fields
6a488035 1246 *
414c1420
TO
1247 * @param int $id
1248 * The price set id to copy.
6a488035 1249 *
72b3a70c 1250 * @return CRM_Price_DAO_PriceSet
6a488035 1251 */
00be9182 1252 public static function copy($id) {
6a488035 1253 $maxId = CRM_Core_DAO::singleValueQuery("SELECT max(id) FROM civicrm_price_set");
be2fb01f 1254 $priceSet = civicrm_api3('PriceSet', 'getsingle', ['id' => $id]);
d5c9aa02 1255
1256 $newTitle = preg_replace('/\[Copy id \d+\]$/', "", $priceSet['title']);
be2fb01f
CW
1257 $title = ts('[Copy id %1]', [1 => $maxId + 1]);
1258 $fieldsFix = [
1259 'replace' => [
06f258d2 1260 'title' => trim($newTitle) . ' ' . $title,
d5c9aa02 1261 'name' => substr($priceSet['name'], 0, 20) . 'price_set_' . ($maxId + 1),
be2fb01f
CW
1262 ],
1263 ];
6a488035 1264
d5c9aa02 1265 $copy = CRM_Core_DAO::copyGeneric('CRM_Price_DAO_PriceSet',
be2fb01f 1266 ['id' => $id],
353ffa53
TO
1267 NULL,
1268 $fieldsFix
6a488035
TO
1269 );
1270
1271 //copying all the blocks pertaining to the price set
d5c9aa02 1272 $copyPriceField = CRM_Core_DAO::copyGeneric('CRM_Price_DAO_PriceField',
be2fb01f
CW
1273 ['price_set_id' => $id],
1274 ['price_set_id' => $copy->id]
6a488035
TO
1275 );
1276 if (!empty($copyPriceField)) {
1277 $price = array_combine(self::getFieldIds($id), self::getFieldIds($copy->id));
1278
1279 //copy option group and values
1280 foreach ($price as $originalId => $copyId) {
9da8dc8c 1281 CRM_Core_DAO::copyGeneric('CRM_Price_DAO_PriceFieldValue',
be2fb01f
CW
1282 ['price_field_id' => $originalId],
1283 ['price_field_id' => $copyId]
6a488035
TO
1284 );
1285 }
1286 }
1287 $copy->save();
1288
1289 CRM_Utils_Hook::copy('Set', $copy);
1290 return $copy;
1291 }
1292
1293 /**
fe482240 1294 * check price set permission.
6a488035 1295 *
414c1420
TO
1296 * @param int $sid
1297 * The price set id.
77b97be7
EM
1298 *
1299 * @return bool
6a488035 1300 */
00be9182 1301 public static function checkPermission($sid) {
44c8822b 1302 if ($sid && self::eventPriceSetDomainID()) {
9da8dc8c 1303 $domain_id = CRM_Core_DAO::getFieldValue('CRM_Price_DAO_PriceSet', $sid, 'domain_id', 'id');
6a488035 1304 if (CRM_Core_Config::domainID() != $domain_id) {
0499b0ad 1305 CRM_Core_Error::fatal(ts('You do not have permission to access this page.'));
6a488035
TO
1306 }
1307 }
1308 return TRUE;
1309 }
1310
1311 /**
1312 * Get the sum of participant count
1313 * for all fields of given price set.
1314 *
414c1420
TO
1315 * @param int $sid
1316 * The price set id.
6a488035 1317 *
77b97be7
EM
1318 * @param bool $onlyActive
1319 *
1320 * @return int|null|string
6a488035
TO
1321 */
1322 public static function getPricesetCount($sid, $onlyActive = TRUE) {
1323 $count = 0;
1324 if (!$sid) {
1325 return $count;
1326 }
1327
1328 $where = NULL;
1329 if ($onlyActive) {
1330 $where = 'AND value.is_active = 1 AND field.is_active = 1';
1331 }
1332
be2fb01f 1333 static $pricesetFieldCount = [];
6a488035
TO
1334 if (!isset($pricesetFieldCount[$sid])) {
1335 $sql = "
1336 SELECT sum(value.count) as totalCount
1337 FROM civicrm_price_field_value value
1338INNER JOIN civicrm_price_field field ON ( field.id = value.price_field_id )
1339INNER JOIN civicrm_price_set pset ON ( pset.id = field.price_set_id )
1340 WHERE pset.id = %1
1341 $where";
1342
be2fb01f 1343 $count = CRM_Core_DAO::singleValueQuery($sql, [1 => [$sid, 'Positive']]);
6a488035
TO
1344 $pricesetFieldCount[$sid] = ($count) ? $count : 0;
1345 }
1346
1347 return $pricesetFieldCount[$sid];
1348 }
1349
ffd93213
EM
1350 /**
1351 * @param $ids
1352 *
1353 * @return array
1354 */
6a488035
TO
1355 public static function getMembershipCount($ids) {
1356 $queryString = "
2dc536ec 1357SELECT count( pfv.id ) AS count, mt.member_of_contact_id AS id
6a488035
TO
1358FROM civicrm_price_field_value pfv
1359INNER JOIN civicrm_membership_type mt ON mt.id = pfv.membership_type_id
1360WHERE pfv.id IN ( $ids )
2dc536ec 1361GROUP BY mt.member_of_contact_id ";
6a488035
TO
1362
1363 $crmDAO = CRM_Core_DAO::executeQuery($queryString);
be2fb01f 1364 $count = [];
6a488035
TO
1365
1366 while ($crmDAO->fetch()) {
1367 $count[$crmDAO->id] = $crmDAO->count;
1368 }
1369
1370 return $count;
1371 }
1372
1373 /**
fe482240 1374 * Check if auto renew option should be shown.
6a488035 1375 *
8eb1503b 1376 * The auto-renew option should be visible if membership types associated with all the fields has
1377 * been set for auto-renew option.
1378 *
1379 * Auto renew checkbox should be frozen if for all the membership type auto renew is required
1380 *
414c1420
TO
1381 * @param int $priceSetId
1382 * Price set id.
6a488035 1383 *
a6c01b45
CW
1384 * @return int
1385 * $autoRenewOption ( 0:hide, 1:optional 2:required )
6a488035
TO
1386 */
1387 public static function checkAutoRenewForPriceSet($priceSetId) {
1217b5fc
RR
1388 // auto-renew option should be visible if membership types associated with all the fields has
1389 // been set for auto-renew option
1390 // Auto renew checkbox should be frozen if for all the membership type auto renew is required
1391
1392 // get the membership type auto renew option and check if required or optional
8eb1503b 1393 $query = 'SELECT DISTINCT mt.auto_renew, mt.duration_interval, mt.duration_unit,
1394 pf.html_type, pf.id as price_field_id
6a488035
TO
1395 FROM civicrm_price_field_value pfv
1396 INNER JOIN civicrm_membership_type mt ON pfv.membership_type_id = mt.id
1397 INNER JOIN civicrm_price_field pf ON pfv.price_field_id = pf.id
1398 WHERE pf.price_set_id = %1
1399 AND pf.is_active = 1
8eb1503b 1400 AND pfv.is_active = 1
1401 ORDER BY price_field_id';
6a488035 1402
be2fb01f 1403 $params = [1 => [$priceSetId, 'Integer']];
6a488035 1404
353ffa53 1405 $dao = CRM_Core_DAO::executeQuery($query, $params);
8eb1503b 1406
88089d21 1407 //CRM-18050: Check count of price set fields which has been set with auto-renew option.
137d1fac
WA
1408 //If price set field is already present with auto-renew option then, it will restrict for adding another price set field with auto-renew option.
1409 if ($dao->N == 0) {
1410 return 0;
1411 }
1412
6a488035 1413 $autoRenewOption = 2;
be2fb01f 1414 $priceFields = [];
6a488035
TO
1415 while ($dao->fetch()) {
1416 if (!$dao->auto_renew) {
8eb1503b 1417 // If any one can't be renewed none can.
1418 return 0;
6a488035
TO
1419 }
1420 if ($dao->auto_renew == 1) {
1421 $autoRenewOption = 1;
1422 }
1423
8eb1503b 1424 if ($dao->html_type == 'Checkbox' && !in_array($dao->duration_interval . $dao->duration_unit, $priceFields[$dao->price_field_id])) {
1425 // Checkbox fields cannot support auto-renew if they have more than one duration configuration
1426 // as more than one can be selected. Radio and select are either-or so they can have more than one duration.
1427 return 0;
1428 }
1429 $priceFields[$dao->price_field_id][] = $dao->duration_interval . $dao->duration_unit;
1430 foreach ($priceFields as $priceFieldID => $durations) {
1431 if ($priceFieldID != $dao->price_field_id && !in_array($dao->duration_interval . $dao->duration_unit, $durations)) {
1432 // Another price field has a duration configuration that differs so we can't offer auto-renew.
1433 return 0;
1434 }
1435 }
6a488035
TO
1436 }
1437
8eb1503b 1438 return $autoRenewOption;
6a488035
TO
1439 }
1440
1441 /**
fe482240 1442 * Retrieve auto renew frequency and interval.
6a488035 1443 *
414c1420
TO
1444 * @param int $priceSetId
1445 * Price set id.
6a488035 1446 *
a6c01b45
CW
1447 * @return array
1448 * associate array of frequency interval and unit
6a488035 1449 */
1217b5fc
RR
1450 public static function getRecurDetails($priceSetId, $priceFieldValueIds) {
1451 // Escape the array of ids.
1452 foreach ($priceFieldValueIds as $index => $id) {
1453 $priceFieldValueIds[$index] = CRM_Utils_Type::escape($id, 'Integer');
1454 }
1455
6a488035
TO
1456 $query = 'SELECT mt.duration_interval, mt.duration_unit
1457 FROM civicrm_price_field_value pfv
1458 INNER JOIN civicrm_membership_type mt ON pfv.membership_type_id = mt.id
1459 INNER JOIN civicrm_price_field pf ON pfv.price_field_id = pf.id
1217b5fc
RR
1460 WHERE pf.price_set_id = %1 AND pfv.id IN ('
1461 . implode(',', $priceFieldValueIds) . ') LIMIT 1';
6a488035 1462
be2fb01f 1463 $params = [1 => [$priceSetId, 'Integer']];
6a488035
TO
1464 $dao = CRM_Core_DAO::executeQuery($query, $params);
1465 $dao->fetch();
be2fb01f 1466 return [$dao->duration_interval, $dao->duration_unit];
6a488035
TO
1467 }
1468
ffd93213
EM
1469 /**
1470 * @return object
1471 */
00be9182 1472 public static function eventPriceSetDomainID() {
d356cdeb 1473 return Civi::settings()->get('event_price_set_domain_id');
6a488035
TO
1474 }
1475
1476 /**
fe482240 1477 * Update the is_quick_config flag in the db.
6a488035 1478 *
414c1420
TO
1479 * @param int $id
1480 * Id of the database record.
acb1052e 1481 * @param bool $isQuickConfig we want to set the is_quick_config field.
414c1420 1482 * Value we want to set the is_quick_config field.
6a488035 1483 *
8a4fede3 1484 * @return bool
1485 * true if we found and updated the object, else false
6a488035 1486 */
00be9182 1487 public static function setIsQuickConfig($id, $isQuickConfig) {
9da8dc8c 1488 return CRM_Core_DAO::setFieldValue('CRM_Price_DAO_PriceSet', $id, 'is_quick_config', $isQuickConfig);
6a488035
TO
1489 }
1490
1491 /**
f72e6e2c 1492 * Check if price set id provides option for user to select both auto-renew and non-auto-renew memberships
6a488035 1493 *
003ca729
EM
1494 * @param int $id
1495 *
1496 * @return bool
6a488035 1497 */
f72e6e2c
EM
1498 public static function isMembershipPriceSetContainsMixOfRenewNonRenew($id) {
1499 $membershipTypes = self::getMembershipTypesFromPriceSet($id);
1500 if (!empty($membershipTypes['autorenew']) && !empty($membershipTypes['non_renew'])) {
1501 return TRUE;
6a488035 1502 }
ba1dcfda 1503 return FALSE;
6a488035
TO
1504 }
1505
37b11065
EM
1506 /**
1507 * Get an array of the membership types in a price set.
1508 *
1509 * @param int $id
1510 *
1511 * @return array(
1512 * Membership types in the price set
1513 */
1514 public static function getMembershipTypesFromPriceSet($id) {
1515 $query
1516 = "SELECT pfv.id, pfv.price_field_id, pfv.name, pfv.membership_type_id, pf.html_type, mt.auto_renew
1517FROM civicrm_price_field_value pfv
1518LEFT JOIN civicrm_price_field pf ON pf.id = pfv.price_field_id
1519LEFT JOIN civicrm_price_set ps ON ps.id = pf.price_set_id
1520LEFT JOIN civicrm_membership_type mt ON mt.id = pfv.membership_type_id
1521WHERE ps.id = %1
1522";
1523
be2fb01f 1524 $params = [1 => [$id, 'Integer']];
37b11065
EM
1525 $dao = CRM_Core_DAO::executeQuery($query, $params);
1526
be2fb01f
CW
1527 $membershipTypes = [
1528 'all' => [],
1529 'autorenew' => [],
1530 'autorenew_required' => [],
1531 'autorenew_optional' => [],
1532 ];
37b11065
EM
1533 while ($dao->fetch()) {
1534 if (empty($dao->membership_type_id)) {
1535 continue;
1536 }
1537 $membershipTypes['all'][] = $dao->membership_type_id;
1538 if (!empty($dao->auto_renew)) {
1539 $membershipTypes['autorenew'][] = $dao->membership_type_id;
1540 if ($dao->auto_renew == 2) {
1541 $membershipTypes['autorenew_required'][] = $dao->membership_type_id;
1542 }
1543 else {
1544 $membershipTypes['autorenew_optional'][] = $dao->membership_type_id;
1545 }
1546 }
1547 else {
1548 $membershipTypes['non_renew'][] = $dao->membership_type_id;
1549 }
1550 }
1551 return $membershipTypes;
1552 }
1553
e0c1764e 1554 /**
c6914066
PN
1555 * Copy priceSet when event/contibution page is copied
1556 *
414c1420
TO
1557 * @param string $baoName
1558 * BAO name.
1559 * @param int $id
1560 * Old event/contribution page id.
1561 * @param int $newId
1562 * Newly created event/contribution page id.
c6914066 1563 */
00be9182 1564 public static function copyPriceSet($baoName, $id, $newId) {
9da8dc8c 1565 $priceSetId = CRM_Price_BAO_PriceSet::getFor($baoName, $id);
c6914066 1566 if ($priceSetId) {
9da8dc8c 1567 $isQuickConfig = CRM_Core_DAO::getFieldValue('CRM_Price_DAO_PriceSet', $priceSetId, 'is_quick_config');
22e263ad 1568 if ($isQuickConfig) {
37326fa1 1569 $copyPriceSet = CRM_Price_BAO_PriceSet::copy($priceSetId);
9da8dc8c 1570 CRM_Price_BAO_PriceSet::addTo($baoName, $newId, $copyPriceSet->id);
44c8822b 1571 }
c6914066 1572 else {
9da8dc8c 1573 $copyPriceSet = &CRM_Core_DAO::copyGeneric('CRM_Price_DAO_PriceSetEntity',
be2fb01f 1574 [
c6914066
PN
1575 'entity_id' => $id,
1576 'entity_table' => $baoName,
be2fb01f
CW
1577 ],
1578 ['entity_id' => $newId]
c6914066
PN
1579 );
1580 }
1581 // copy event discount
1582 if ($baoName == 'civicrm_event') {
1583 $discount = CRM_Core_BAO_Discount::getOptionGroup($id, 'civicrm_event');
1584 foreach ($discount as $discountId => $setId) {
1585
9da8dc8c 1586 $copyPriceSet = &CRM_Price_BAO_PriceSet::copy($setId);
44c8822b 1587
28156120 1588 CRM_Core_DAO::copyGeneric(
c6914066 1589 'CRM_Core_DAO_Discount',
be2fb01f 1590 [
c6914066 1591 'id' => $discountId,
be2fb01f
CW
1592 ],
1593 [
c6914066
PN
1594 'entity_id' => $newId,
1595 'price_set_id' => $copyPriceSet->id,
be2fb01f 1596 ]
c6914066
PN
1597 );
1598 }
1599 }
1600 }
1601 }
dc428161 1602
d424ffde 1603 /**
fe482240 1604 * Function to set tax_amount and tax_rate in LineItem.
d424ffde
CW
1605 *
1606 * @param array $field
1607 * @param array $lineItem
1608 * @param int $optionValueId
83e1baa3 1609 * @param float $totalTax
d424ffde
CW
1610 *
1611 * @return array
dc428161 1612 */
83e1baa3 1613 public static function setLineItem($field, $lineItem, $optionValueId, &$totalTax) {
4f5911bb 1614 // Here we round - i.e. after multiplying by quantity
dc428161 1615 if ($field['html_type'] == 'Text') {
4f5911bb 1616 $taxAmount = round($field['options'][$optionValueId]['tax_amount'] * $lineItem[$optionValueId]['qty'], 2);
dc428161 1617 }
1618 else {
4f5911bb 1619 $taxAmount = round($field['options'][$optionValueId]['tax_amount'], 2);
dc428161 1620 }
1621 $taxRate = $field['options'][$optionValueId]['tax_rate'];
dc428161 1622 $lineItem[$optionValueId]['tax_amount'] = $taxAmount;
1623 $lineItem[$optionValueId]['tax_rate'] = $taxRate;
83e1baa3 1624 $totalTax += $taxAmount;
dc428161 1625 return $lineItem;
1626 }
96025800 1627
362bd1b7 1628 /**
1629 * Get the first price set value IDs from a parameters array.
1630 *
1631 * In practice this is really used when we only expect one to exist.
1632 *
1633 * @param array $params
1634 *
1635 * @return array
1636 * Array of the ids of the price set values.
1637 */
1638 public static function parseFirstPriceSetValueIDFromParams($params) {
1639 $priceSetValueIDs = self::parsePriceSetValueIDsFromParams($params);
1640 return reset($priceSetValueIDs);
1641 }
1642
1643 /**
1644 * Get the price set value IDs from a set of parameters
1645 *
1646 * @param array $params
1647 *
1648 * @return array
1649 * Array of the ids of the price set values.
1650 */
1651 public static function parsePriceSetValueIDsFromParams($params) {
1652 $priceSetParams = self::parsePriceSetArrayFromParams($params);
be2fb01f 1653 $priceSetValueIDs = [];
362bd1b7 1654 foreach ($priceSetParams as $priceSetParam) {
1655 foreach (array_keys($priceSetParam) as $priceValueID) {
1656 $priceSetValueIDs[] = $priceValueID;
1657 }
1658 }
1659 return $priceSetValueIDs;
1660 }
1661
1662 /**
1663 * Get the price set value IDs from a set of parameters
1664 *
1665 * @param array $params
1666 *
1667 * @return array
1668 * Array of price fields filtered from the params.
1669 */
1670 public static function parsePriceSetArrayFromParams($params) {
be2fb01f 1671 $priceSetParams = [];
362bd1b7 1672 foreach ($params as $field => $value) {
1673 $parts = explode('_', $field);
0b34e9a4 1674 if (count($parts) == 2 && $parts[0] == 'price' && is_numeric($parts[1]) && is_array($value)) {
362bd1b7 1675 $priceSetParams[$field] = $value;
1676 }
1677 }
1678 return $priceSetParams;
1679 }
1680
05465712 1681 /**
1682 * Get non-deductible amount from price options
1683 *
1684 * @param int $priceSetId
1685 * @param array $lineItem
1686 *
1687 * @return int
1688 * calculated non-deductible amount.
1689 */
1690 public static function getNonDeductibleAmountFromPriceSet($priceSetId, $lineItem) {
1691 $nonDeductibleAmount = 0;
1692 if (!empty($lineItem[$priceSetId])) {
1bde39c7 1693 foreach ($lineItem[$priceSetId] as $options) {
05465712 1694 $nonDeductibleAmount += $options['non_deductible_amount'] * $options['qty'];
1695 }
1696 }
1697
1698 return $nonDeductibleAmount;
1699 }
1700
f5b8da4b 1701 /**
1702 * Get an array of all forms using a given price set.
1703 *
1704 * @param int $id
1705 *
1706 * @return array
1707 * Pages using the price set, keyed by type. e.g
1708 * array('
1709 * 'civicrm_contribution_page' => array(2,5,6),
1710 * 'civicrm_event' => array(5,6),
1711 * 'civicrm_event_template' => array(7),
1712 * )
1713 */
1714 public static function getFormsUsingPriceSet($id) {
be2fb01f 1715 $forms = [];
f5b8da4b 1716 $queryString = "
1717SELECT entity_table, entity_id
1718FROM civicrm_price_set_entity
1719WHERE price_set_id = %1";
be2fb01f 1720 $params = [1 => [$id, 'Integer']];
f5b8da4b 1721 $crmFormDAO = CRM_Core_DAO::executeQuery($queryString, $params);
1722
1723 while ($crmFormDAO->fetch()) {
1724 $forms[$crmFormDAO->entity_table][] = $crmFormDAO->entity_id;
1725 }
1726 return $forms;
1727 }
1728
1729 /**
1730 * @param array $forms
1731 * Array of forms that use a price set keyed by entity. e.g
1732 * array('
1733 * 'civicrm_contribution_page' => array(2,5,6),
1734 * 'civicrm_event' => array(5,6),
1735 * 'civicrm_event_template' => array(7),
1736 * )
1737 *
1738 * @return mixed
1739 * Array of entities suppliemented with per entity information.
1740 * e.g
1741 * array('civicrm_event' => array(7 => array('title' => 'x'...))
1742 *
1743 * @throws \Exception
1744 */
1745 protected static function reformatUsedByFormsWithEntityData($forms) {
be2fb01f 1746 $usedBy = [];
f5b8da4b 1747 foreach ($forms as $table => $entities) {
1748 switch ($table) {
1749 case 'civicrm_event':
1750 $ids = implode(',', $entities);
1751 $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
1752FROM civicrm_event ce
1753LEFT JOIN civicrm_option_value ON
1754 ( ce.event_type_id = civicrm_option_value.value )
1755LEFT JOIN civicrm_option_group ON
1756 ( civicrm_option_group.id = civicrm_option_value.option_group_id )
1757WHERE
1758 civicrm_option_group.name = 'event_type' AND
1759 ce.id IN ($ids) AND
1760 ce.is_active = 1;";
1761 $crmDAO = CRM_Core_DAO::executeQuery($queryString);
1762 while ($crmDAO->fetch()) {
1763 if ($crmDAO->isTemplate) {
1764 $usedBy['civicrm_event_template'][$crmDAO->id]['title'] = $crmDAO->templateTitle;
1765 $usedBy['civicrm_event_template'][$crmDAO->id]['eventType'] = $crmDAO->eventType;
1766 $usedBy['civicrm_event_template'][$crmDAO->id]['isPublic'] = $crmDAO->isPublic;
1767 }
1768 else {
1769 $usedBy[$table][$crmDAO->id]['title'] = $crmDAO->title;
1770 $usedBy[$table][$crmDAO->id]['eventType'] = $crmDAO->eventType;
1771 $usedBy[$table][$crmDAO->id]['startDate'] = $crmDAO->startDate;
1772 $usedBy[$table][$crmDAO->id]['endDate'] = $crmDAO->endDate;
1773 $usedBy[$table][$crmDAO->id]['isPublic'] = $crmDAO->isPublic;
1774 }
1775 }
1776 break;
1777
1778 case 'civicrm_contribution_page':
1779 $ids = implode(',', $entities);
1780 $queryString = "SELECT cp.id as id, cp.title as title, cp.start_date as startDate, cp.end_date as endDate,ct.name as type
1781FROM civicrm_contribution_page cp, civicrm_financial_type ct
1782WHERE ct.id = cp.financial_type_id AND
1783 cp.id IN ($ids) AND
1784 cp.is_active = 1;";
1785 $crmDAO = CRM_Core_DAO::executeQuery($queryString);
1786 while ($crmDAO->fetch()) {
1787 $usedBy[$table][$crmDAO->id]['title'] = $crmDAO->title;
1788 $usedBy[$table][$crmDAO->id]['type'] = $crmDAO->type;
1789 $usedBy[$table][$crmDAO->id]['startDate'] = $crmDAO->startDate;
1790 $usedBy[$table][$crmDAO->id]['endDate'] = $crmDAO->endDate;
1791 }
1792 break;
1793
1794 case 'civicrm_contribution':
1795 case 'civicrm_membership':
1796 case 'civicrm_participant':
1797 $usedBy[$table] = 1;
1798 break;
1799
1800 default:
1801 CRM_Core_Error::fatal("$table is not supported in PriceSet::usedBy()");
1802 break;
1803 }
1804 }
1805 return $usedBy;
1806 }
1807
6a488035 1808}