Merge pull request #4899 from colemanw/INFRA-132
[civicrm-core.git] / CRM / Price / BAO / LineItem.php
1 <?php
2 /*
3 +--------------------------------------------------------------------+
4 | CiviCRM version 4.6 |
5 +--------------------------------------------------------------------+
6 | Copyright CiviCRM LLC (c) 2004-2014 |
7 +--------------------------------------------------------------------+
8 | This file is a part of CiviCRM. |
9 | |
10 | CiviCRM is free software; you can copy, modify, and distribute it |
11 | under the terms of the GNU Affero General Public License |
12 | Version 3, 19 November 2007 and the CiviCRM Licensing Exception. |
13 | |
14 | CiviCRM is distributed in the hope that it will be useful, but |
15 | WITHOUT ANY WARRANTY; without even the implied warranty of |
16 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. |
17 | See the GNU Affero General Public License for more details. |
18 | |
19 | You should have received a copy of the GNU Affero General Public |
20 | License and the CiviCRM Licensing Exception along |
21 | with this program; if not, contact CiviCRM LLC |
22 | at info[AT]civicrm[DOT]org. If you have questions about the |
23 | GNU Affero General Public License or the licensing of CiviCRM, |
24 | see the CiviCRM license FAQ at http://civicrm.org/licensing |
25 +--------------------------------------------------------------------+
26 */
27
28 /**
29 *
30 * @package CRM
31 * @copyright CiviCRM LLC (c) 2004-2014
32 * $Id$
33 *
34 */
35
36 /**
37 *
38 * @package CRM
39 * @author Marshal Newrock <marshal@idealso.com>
40 * $Id$
41 */
42
43 /**
44 * Business objects for Line Items generated by monetary transactions
45 */
46 class CRM_Price_BAO_LineItem extends CRM_Price_DAO_LineItem {
47
48 /**
49 * Creates a new entry in the database.
50 *
51 * @param array $params
52 * (reference) an assoc array of name/value pairs.
53 *
54 * @return CRM_Price_DAO_LineItem object
55 * @static
56 */
57 public static function create(&$params) {
58 $id = CRM_Utils_Array::value('id', $params);
59 if ($id) {
60 CRM_Utils_Hook::pre('edit', 'LineItem', $id, $params);
61 }
62 else {
63 CRM_Utils_Hook::pre('create', 'LineItem', $params['entity_id'], $params);
64 }
65
66 // unset entity table and entity id in $params
67 // we never update the entity table and entity id during update mode
68 if ($id) {
69 unset($params['entity_id'], $params['entity_table']);
70 }
71
72 $lineItemBAO = new CRM_Price_BAO_LineItem();
73 $lineItemBAO->copyValues($params);
74
75 $return = $lineItemBAO->save();
76
77 if ($id) {
78 CRM_Utils_Hook::post('edit', 'LineItem', $id, $params);
79 }
80 else {
81 CRM_Utils_Hook::post('create', 'LineItem', $params['entity_id'], $params);
82 }
83
84 return $return;
85 }
86
87 /**
88 * Takes a bunch of params that are needed to match certain criteria and
89 * retrieves the relevant objects. Typically, the valid params are only
90 * price_field_id. This is the inverse function of create. It also
91 * stores all of the retrieved values in the default array.
92 *
93 * @param array $params
94 * (reference ) an assoc array of name/value pairs.
95 * @param array $defaults
96 * (reference ) an assoc array to hold the flattened values.
97 *
98 * @return CRM_Price_BAO_LineItem object
99 * @static
100 */
101 public static function retrieve(&$params, &$defaults) {
102 $lineItem = new CRM_Price_BAO_LineItem();
103 $lineItem->copyValues($params);
104 if ($lineItem->find(TRUE)) {
105 CRM_Core_DAO::storeValues($lineItem, $defaults);
106 return $lineItem;
107 }
108 return NULL;
109 }
110
111 /**
112 * @param int $entityId
113 * @param $entityTable
114 *
115 * @return null|string
116 */
117 public static function getLineTotal($entityId, $entityTable) {
118 $sqlLineItemTotal = "SELECT SUM(li.line_total + COALESCE(li.tax_amount,0))
119 FROM civicrm_line_item li
120 WHERE li.entity_table = '{$entityTable}'
121 AND li.entity_id = {$entityId}
122 ";
123 $lineItemTotal = CRM_Core_DAO::singleValueQuery($sqlLineItemTotal);
124 return $lineItemTotal;
125 }
126
127 /**
128 * Wrapper for line item retrieval when contribution ID is known
129 * @param int $contributionID
130 *
131 * @return array
132 */
133 public static function getLineItemsByContributionID($contributionID) {
134 return self::getLineItems($contributionID, 'contribution', NULL, TRUE, TRUE, " WHERE contribution_id = " . (int) $contributionID);
135 }
136
137 /**
138 * Given a participant id/contribution id,
139 * return contribution/fee line items
140 *
141 * @param int $entityId
142 * participant/contribution id.
143 * @param string $entity
144 * participant/contribution.
145 *
146 * @param null $isQuick
147 * @param bool $isQtyZero
148 * @param bool $relatedEntity
149 *
150 * @param string $overrideWhereClause
151 * E.g "WHERE contribution id = 7 " per the getLineItemsByContributionID wrapper.
152 * this function precedes the convenience of the contribution id but since it does quite a bit more than just a db retrieval we need to be able to use it even
153 * when we don't want it's entity-id magix
154 *
155 * @return array
156 * of line items
157 */
158 public static function getLineItems($entityId, $entity = 'participant', $isQuick = NULL, $isQtyZero = TRUE, $relatedEntity = FALSE, $overrideWhereClause = '') {
159 $whereClause = $fromClause = NULL;
160 $selectClause = "
161 SELECT li.id,
162 li.label,
163 li.contribution_id,
164 li.qty,
165 li.unit_price,
166 li.line_total,
167 li.entity_table,
168 li.entity_id,
169 pf.label as field_title,
170 pf.html_type,
171 pfv.membership_type_id,
172 pfv.membership_num_terms,
173 li.price_field_id,
174 li.participant_count,
175 li.price_field_value_id,
176 li.financial_type_id,
177 li.tax_amount,
178 pfv.description";
179
180 $condition = "li.entity_id = %2.id AND li.entity_table = 'civicrm_%2'";
181 if ($relatedEntity) {
182 $condition = "li.contribution_id = %2.id ";
183 }
184
185 $fromClause = "
186 FROM civicrm_%2 as %2
187 LEFT JOIN civicrm_line_item li ON ({$condition})
188 LEFT JOIN civicrm_price_field_value pfv ON ( pfv.id = li.price_field_value_id )
189 LEFT JOIN civicrm_price_field pf ON (pf.id = li.price_field_id )";
190 $whereClause = "
191 WHERE %2.id = %1";
192
193 $orderByClause = " ORDER BY pf.weight, pfv.weight";
194
195 if ($isQuick) {
196 $fromClause .= " LEFT JOIN civicrm_price_set cps on cps.id = pf.price_set_id ";
197 $whereClause .= " and cps.is_quick_config = 0";
198 }
199
200 if (!$isQtyZero) {
201 $whereClause .= " and li.qty != 0";
202 }
203
204 $lineItems = array();
205
206 if (!$entityId || !$entity || !$fromClause) {
207 return $lineItems;
208 }
209
210 $params = array(
211 1 => array($entityId, 'Integer'),
212 2 => array($entity, 'Text'),
213 );
214
215 $getTaxDetails = FALSE;
216 $invoiceSettings = CRM_Core_BAO_Setting::getItem(CRM_Core_BAO_Setting::CONTRIBUTE_PREFERENCES_NAME, 'contribution_invoice_settings');
217 $invoicing = CRM_Utils_Array::value('invoicing', $invoiceSettings);
218 if ($overrideWhereClause) {
219 $whereClause = $overrideWhereClause;
220 }
221
222 $dao = CRM_Core_DAO::executeQuery("$selectClause $fromClause $whereClause $orderByClause", $params);
223 while ($dao->fetch()) {
224 if (!$dao->id) {
225 continue;
226 }
227 $lineItems[$dao->id] = array(
228 'qty' => (float) $dao->qty,
229 'label' => $dao->label,
230 'unit_price' => $dao->unit_price,
231 'line_total' => $dao->line_total,
232 'price_field_id' => $dao->price_field_id,
233 'participant_count' => $dao->participant_count,
234 'price_field_value_id' => $dao->price_field_value_id,
235 'field_title' => $dao->field_title,
236 'html_type' => $dao->html_type,
237 'description' => $dao->description,
238 // the entity id seems prone to randomness but not sure if it has a reason - so if we are overriding the Where clause we assume
239 // we also JUST WANT TO KNOW the the entity_id in the DB
240 'entity_id' => empty($overrideWhereClause) ? $entityId : $dao->entity_id,
241 'entity_table' => $dao->entity_table,
242 'contribution_id' => $dao->contribution_id,
243 'financial_type_id' => $dao->financial_type_id,
244 'membership_type_id' => $dao->membership_type_id,
245 'membership_num_terms' => $dao->membership_num_terms,
246 'tax_amount' => $dao->tax_amount,
247 );
248 $lineItems[$dao->id]['tax_rate'] = CRM_Price_BAO_LineItem::calculateTaxRate($lineItems[$dao->id]);
249 $lineItems[$dao->id]['subTotal'] = $lineItems[$dao->id]['qty'] * $lineItems[$dao->id]['unit_price'];
250 if ($lineItems[$dao->id]['tax_amount'] != '') {
251 $getTaxDetails = TRUE;
252 }
253 }
254 if ($invoicing) {
255 $taxTerm = CRM_Utils_Array::value('tax_term', $invoiceSettings);
256 $smarty = CRM_Core_Smarty::singleton();
257 $smarty->assign('taxTerm', $taxTerm);
258 $smarty->assign('getTaxDetails', $getTaxDetails);
259 }
260 return $lineItems;
261 }
262
263 /**
264 * This method will create the lineItem array required for
265 * processAmount method
266 *
267 * @param int $fid
268 * Price set field id.
269 * @param array $params
270 * Reference to form values.
271 * @param array $fields
272 * Reference to array of fields belonging.
273 * to the price set used for particular event
274 * @param array $values
275 * Reference to the values array(.
276 * this is
277 * lineItem array)
278 *
279 * @return void
280 */
281 public static function format($fid, &$params, &$fields, &$values) {
282 if (empty($params["price_{$fid}"])) {
283 return;
284 }
285
286 $optionIDs = implode(',', array_keys($params["price_{$fid}"]));
287
288 //lets first check in fun parameter,
289 //since user might modified w/ hooks.
290 $options = array();
291 if (array_key_exists('options', $fields)) {
292 $options = $fields['options'];
293 }
294 else {
295 CRM_Price_BAO_PriceFieldValue::getValues($fid, $options, 'weight', TRUE);
296 }
297 $fieldTitle = CRM_Utils_Array::value('label', $fields);
298 if (!$fieldTitle) {
299 $fieldTitle = CRM_Core_DAO::getFieldValue('CRM_Price_DAO_PriceField', $fid, 'label');
300 }
301
302 foreach ($params["price_{$fid}"] as $oid => $qty) {
303 $price = $options[$oid]['amount'];
304
305 // lets clean the price in case it is not yet cleant
306 // CRM-10974
307 $price = CRM_Utils_Rule::cleanMoney($price);
308
309 $participantsPerField = CRM_Utils_Array::value('count', $options[$oid], 0);
310
311 $values[$oid] = array(
312 'price_field_id' => $fid,
313 'price_field_value_id' => $oid,
314 'label' => CRM_Utils_Array::value('label', $options[$oid]),
315 'field_title' => $fieldTitle,
316 'description' => CRM_Utils_Array::value('description', $options[$oid]),
317 'qty' => $qty,
318 'unit_price' => $price,
319 'line_total' => $qty * $price,
320 'participant_count' => $qty * $participantsPerField,
321 'max_value' => CRM_Utils_Array::value('max_value', $options[$oid]),
322 'membership_type_id' => CRM_Utils_Array::value('membership_type_id', $options[$oid]),
323 'membership_num_terms' => CRM_Utils_Array::value('membership_num_terms', $options[$oid]),
324 'auto_renew' => CRM_Utils_Array::value('auto_renew', $options[$oid]),
325 'html_type' => $fields['html_type'],
326 'financial_type_id' => CRM_Utils_Array::value('financial_type_id', $options[$oid]),
327 'tax_amount' => CRM_Utils_Array::value('tax_amount', $options[$oid]),
328 );
329
330 if ($values[$oid]['membership_type_id'] && empty($values[$oid]['auto_renew'])) {
331 $values[$oid]['auto_renew'] = CRM_Core_DAO::getFieldValue('CRM_Member_DAO_MembershipType', $values[$oid]['membership_type_id'], 'auto_renew');
332 }
333 }
334 }
335
336 /**
337 * Delete line items for given entity.
338 *
339 * @param int $entityId
340 * @param int $entityTable
341 *
342 * @return bool
343 * @static
344 */
345 public static function deleteLineItems($entityId, $entityTable) {
346 if (!$entityId || !$entityTable) {
347 return FALSE;
348 }
349
350 if ($entityId && !is_array($entityId)) {
351 $entityId = array($entityId);
352 }
353
354 $query = "DELETE FROM civicrm_line_item where entity_id IN ('" . implode("','", $entityId) . "') AND entity_table = '$entityTable'";
355 $dao = CRM_Core_DAO::executeQuery($query);
356 return TRUE;
357 }
358
359 /**
360 * Process price set and line items.
361 *
362 * @param int $entityId
363 * @param array $lineItem
364 * Line item array.
365 * @param object $contributionDetails
366 * @param string $entityTable
367 * Entity table.
368 *
369 * @param bool $update
370 *
371 * @return void
372 * @static
373 */
374 public static function processPriceSet($entityId, $lineItem, $contributionDetails = NULL, $entityTable = 'civicrm_contribution', $update = FALSE) {
375 if (!$entityId || !is_array($lineItem)
376 || CRM_Utils_system::isNull($lineItem)
377 ) {
378 return;
379 }
380
381 foreach ($lineItem as $priceSetId => $values) {
382 if (!$priceSetId) {
383 continue;
384 }
385
386 foreach ($values as $line) {
387 $line['entity_table'] = $entityTable;
388 if (empty($line['entity_id'])) {
389 $line['entity_id'] = $entityId;
390 }
391 if (!empty($line['membership_type_id'])) {
392 $line['entity_table'] = 'civicrm_membership';
393 }
394 if (!empty($contributionDetails->id)) {
395 $line['contribution_id'] = $contributionDetails->id;
396 if ($line['entity_table'] == 'civicrm_contribution') {
397 $line['entity_id'] = $contributionDetails->id;
398 }
399 }
400
401 // if financial type is not set and if price field value is NOT NULL
402 // get financial type id of price field value
403 if (!empty($line['price_field_value_id']) && empty($line['financial_type_id'])) {
404 $line['financial_type_id'] = CRM_Core_DAO::getFieldValue('CRM_Price_DAO_PriceFieldValue', $line['price_field_value_id'], 'financial_type_id');
405 }
406 $lineItems = CRM_Price_BAO_LineItem::create($line);
407 if (!$update && $contributionDetails) {
408 CRM_Financial_BAO_FinancialItem::add($lineItems, $contributionDetails);
409 if (isset($line['tax_amount'])) {
410 CRM_Financial_BAO_FinancialItem::add($lineItems, $contributionDetails, TRUE);
411 }
412 }
413 }
414 }
415 }
416
417 /**
418 * @param int $entityId
419 * @param string $entityTable
420 * @param $amount
421 * @param array $otherParams
422 */
423 public static function syncLineItems($entityId, $entityTable = 'civicrm_contribution', $amount, $otherParams = NULL) {
424 if (!$entityId || CRM_Utils_System::isNull($amount)) {
425 return;
426 }
427
428 $from = " civicrm_line_item li
429 LEFT JOIN civicrm_price_field pf ON pf.id = li.price_field_id
430 LEFT JOIN civicrm_price_set ps ON ps.id = pf.price_set_id ";
431
432 $set = " li.unit_price = %3,
433 li.line_total = %3 ";
434
435 $where = " li.entity_id = %1 AND
436 li.entity_table = %2 ";
437
438 $params = array(
439 1 => array($entityId, 'Integer'),
440 2 => array($entityTable, 'String'),
441 3 => array($amount, 'Float'),
442 );
443
444 if ($entityTable == 'civicrm_contribution') {
445 $entityName = 'default_contribution_amount';
446 $where .= " AND ps.name = %4 ";
447 $params[4] = array($entityName, 'String');
448 }
449 elseif ($entityTable == 'civicrm_participant') {
450 $from .= "
451 LEFT JOIN civicrm_price_set_entity cpse ON cpse.price_set_id = ps.id
452 LEFT JOIN civicrm_price_field_value cpfv ON cpfv.price_field_id = pf.id and cpfv.label = %4 ";
453 $set .= " ,li.label = %4,
454 li.price_field_value_id = cpfv.id ";
455 $where .= " AND cpse.entity_table = 'civicrm_event' AND cpse.entity_id = %5 ";
456 $amount = empty($amount) ? 0 : $amount;
457 $params += array(
458 4 => array($otherParams['fee_label'], 'String'),
459 5 => array($otherParams['event_id'], 'String'),
460 );
461 }
462
463 $query = "
464 UPDATE $from
465 SET $set
466 WHERE $where
467 ";
468
469 CRM_Core_DAO::executeQuery($query, $params);
470 }
471
472 /**
473 * Build line items array.
474 * @param array $params
475 * Form values.
476 *
477 * @param string $entityId
478 * Entity id.
479 *
480 * @param string $entityTable
481 * Entity Table.
482 *
483 * @return void
484 * @static
485 */
486 public static function getLineItemArray(&$params, $entityId = NULL, $entityTable = 'contribution', $isRelatedID = FALSE) {
487
488 if (!$entityId) {
489 $priceSetDetails = CRM_Price_BAO_PriceSet::getDefaultPriceSet($entityTable);
490 $totalAmount = CRM_Utils_Array::value('total_amount', $params);
491 $financialType = CRM_Utils_Array::value('financial_type_id', $params);
492 foreach ($priceSetDetails as $values) {
493 if ($entityTable == 'membership') {
494 if ($isRelatedID != $values['membership_type_id']) {
495 continue;
496 }
497 if (!$totalAmount) {
498 $totalAmount = $values['amount'];
499 }
500 $financialType = $values['financial_type_id'];
501 }
502 $params['line_item'][$values['setID']][$values['priceFieldID']] = array(
503 'price_field_id' => $values['priceFieldID'],
504 'price_field_value_id' => $values['priceFieldValueID'],
505 'label' => $values['label'],
506 'qty' => 1,
507 'unit_price' => $totalAmount,
508 'line_total' => $totalAmount,
509 'financial_type_id' => $financialType,
510 'membership_type_id' => $values['membership_type_id'],
511 );
512 break;
513 }
514 }
515 else {
516 $setID = NULL;
517 $totalEntityId = count($entityId);
518 foreach ($entityId as $id) {
519 $lineItems = CRM_Price_BAO_LineItem::getLineItems($id, $entityTable, NULL, TRUE, $isRelatedID);
520 foreach ($lineItems as $key => $values) {
521 if (!$setID && $values['price_field_id']) {
522 $setID = CRM_Core_DAO::getFieldValue('CRM_Price_DAO_PriceField', $values['price_field_id'], 'price_set_id');
523 $params['is_quick_config'] = CRM_Core_DAO::getFieldValue('CRM_Price_DAO_PriceSet', $setID, 'is_quick_config');
524 }
525 if (!empty($params['is_quick_config']) && array_key_exists('total_amount', $params)
526 && $totalEntityId == 1
527 ) {
528 $values['line_total'] = $values['unit_price'] = $params['total_amount'];
529 }
530 $values['id'] = $key;
531 $params['line_item'][$setID][$key] = $values;
532 }
533 }
534 }
535 }
536
537 /**
538 * Calculate tax rate in percentage
539 *
540 * @param array $lineItemId
541 * An assoc array of lineItem.
542 *
543 * @return number|void
544 * tax rate
545 *
546 * @static
547 */
548 public static function calculateTaxRate($lineItemId) {
549 if ($lineItemId['unit_price'] == 0) {
550 return;
551 }
552 if ($lineItemId['html_type'] == 'Text') {
553 $tax = $lineItemId['tax_amount'] / ($lineItemId['unit_price'] * $lineItemId['qty']) * 100;
554 }
555 else {
556 $tax = ($lineItemId['tax_amount'] / $lineItemId['unit_price']) * 100;
557 }
558 return $tax;
559 }
560 }