3 +--------------------------------------------------------------------+
4 | CiviCRM version 4.6 |
5 +--------------------------------------------------------------------+
6 | Copyright CiviCRM LLC (c) 2004-2015 |
7 +--------------------------------------------------------------------+
8 | This file is a part of CiviCRM. |
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. |
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. |
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 +--------------------------------------------------------------------+
31 * @copyright CiviCRM LLC (c) 2004-2015
39 * @author Marshal Newrock <marshal@idealso.com>
44 * Business objects for Line Items generated by monetary transactions
46 class CRM_Price_BAO_LineItem
extends CRM_Price_DAO_LineItem
{
49 * Creates a new entry in the database.
51 * @param array $params
52 * (reference) an assoc array of name/value pairs.
54 * @return CRM_Price_DAO_LineItem
56 public static function create(&$params) {
57 $id = CRM_Utils_Array
::value('id', $params);
59 CRM_Utils_Hook
::pre('edit', 'LineItem', $id, $params);
62 CRM_Utils_Hook
::pre('create', 'LineItem', $params['entity_id'], $params);
65 // unset entity table and entity id in $params
66 // we never update the entity table and entity id during update mode
68 unset($params['entity_id'], $params['entity_table']);
71 $lineItemBAO = new CRM_Price_BAO_LineItem();
72 $lineItemBAO->copyValues($params);
74 $return = $lineItemBAO->save();
77 CRM_Utils_Hook
::post('edit', 'LineItem', $id, $params);
80 CRM_Utils_Hook
::post('create', 'LineItem', $params['entity_id'], $params);
87 * Retrieve DB object based on input parameters.
89 * It also stores all the retrieved values in the default array.
91 * @param array $params
92 * (reference ) an assoc array of name/value pairs.
93 * @param array $defaults
94 * (reference ) an assoc array to hold the flattened values.
96 * @return CRM_Price_BAO_LineItem
98 public static function retrieve(&$params, &$defaults) {
99 $lineItem = new CRM_Price_BAO_LineItem();
100 $lineItem->copyValues($params);
101 if ($lineItem->find(TRUE)) {
102 CRM_Core_DAO
::storeValues($lineItem, $defaults);
109 * @param int $entityId
110 * @param $entityTable
112 * @return null|string
114 public static function getLineTotal($entityId, $entityTable) {
115 $sqlLineItemTotal = "SELECT SUM(li.line_total + COALESCE(li.tax_amount,0))
116 FROM civicrm_line_item li
117 WHERE li.entity_table = '{$entityTable}'
118 AND li.entity_id = {$entityId}
120 $lineItemTotal = CRM_Core_DAO
::singleValueQuery($sqlLineItemTotal);
121 return $lineItemTotal;
125 * Wrapper for line item retrieval when contribution ID is known.
126 * @param int $contributionID
130 public static function getLineItemsByContributionID($contributionID) {
131 return self
::getLineItems($contributionID, 'contribution', NULL, TRUE, TRUE, " WHERE contribution_id = " . (int) $contributionID);
135 * Given a participant id/contribution id,
136 * return contribution/fee line items
138 * @param int $entityId
139 * participant/contribution id.
140 * @param string $entity
141 * participant/contribution.
143 * @param null $isQuick
144 * @param bool $isQtyZero
145 * @param bool $relatedEntity
147 * @param string $overrideWhereClause
148 * E.g "WHERE contribution id = 7 " per the getLineItemsByContributionID wrapper.
149 * 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
150 * when we don't want it's entity-id magix
153 * Array of line items
155 public static function getLineItems($entityId, $entity = 'participant', $isQuick = NULL, $isQtyZero = TRUE, $relatedEntity = FALSE, $overrideWhereClause = '') {
156 $whereClause = $fromClause = NULL;
166 pf.label as field_title,
168 pfv.membership_type_id,
169 pfv.membership_num_terms,
171 li.participant_count,
172 li.price_field_value_id,
173 li.financial_type_id,
177 $condition = "li.entity_id = %2.id AND li.entity_table = 'civicrm_%2'";
178 if ($relatedEntity) {
179 $condition = "li.contribution_id = %2.id ";
183 FROM civicrm_%2 as %2
184 LEFT JOIN civicrm_line_item li ON ({$condition})
185 LEFT JOIN civicrm_price_field_value pfv ON ( pfv.id = li.price_field_value_id )
186 LEFT JOIN civicrm_price_field pf ON (pf.id = li.price_field_id )";
190 $orderByClause = " ORDER BY pf.weight, pfv.weight";
193 $fromClause .= " LEFT JOIN civicrm_price_set cps on cps.id = pf.price_set_id ";
194 $whereClause .= " and cps.is_quick_config = 0";
198 $whereClause .= " and li.qty != 0";
201 $lineItems = array();
203 if (!$entityId ||
!$entity ||
!$fromClause) {
208 1 => array($entityId, 'Integer'),
209 2 => array($entity, 'Text'),
212 $getTaxDetails = FALSE;
213 $invoiceSettings = CRM_Core_BAO_Setting
::getItem(CRM_Core_BAO_Setting
::CONTRIBUTE_PREFERENCES_NAME
, 'contribution_invoice_settings');
214 $invoicing = CRM_Utils_Array
::value('invoicing', $invoiceSettings);
215 if ($overrideWhereClause) {
216 $whereClause = $overrideWhereClause;
219 $dao = CRM_Core_DAO
::executeQuery("$selectClause $fromClause $whereClause $orderByClause", $params);
220 while ($dao->fetch()) {
224 $lineItems[$dao->id
] = array(
225 'qty' => (float) $dao->qty
,
226 'label' => $dao->label
,
227 'unit_price' => $dao->unit_price
,
228 'line_total' => $dao->line_total
,
229 'price_field_id' => $dao->price_field_id
,
230 'participant_count' => $dao->participant_count
,
231 'price_field_value_id' => $dao->price_field_value_id
,
232 'field_title' => $dao->field_title
,
233 'html_type' => $dao->html_type
,
234 'description' => $dao->description
,
235 // 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
236 // we also JUST WANT TO KNOW the the entity_id in the DB
237 'entity_id' => empty($overrideWhereClause) ?
$entityId : $dao->entity_id
,
238 'entity_table' => $dao->entity_table
,
239 'contribution_id' => $dao->contribution_id
,
240 'financial_type_id' => $dao->financial_type_id
,
241 'membership_type_id' => $dao->membership_type_id
,
242 'membership_num_terms' => $dao->membership_num_terms
,
243 'tax_amount' => $dao->tax_amount
,
245 $lineItems[$dao->id
]['tax_rate'] = CRM_Price_BAO_LineItem
::calculateTaxRate($lineItems[$dao->id
]);
246 $lineItems[$dao->id
]['subTotal'] = $lineItems[$dao->id
]['qty'] * $lineItems[$dao->id
]['unit_price'];
247 if ($lineItems[$dao->id
]['tax_amount'] != '') {
248 $getTaxDetails = TRUE;
252 $taxTerm = CRM_Utils_Array
::value('tax_term', $invoiceSettings);
253 $smarty = CRM_Core_Smarty
::singleton();
254 $smarty->assign('taxTerm', $taxTerm);
255 $smarty->assign('getTaxDetails', $getTaxDetails);
261 * This method will create the lineItem array required for
262 * processAmount method
265 * Price set field id.
266 * @param array $params
267 * Reference to form values.
268 * @param array $fields
269 * Reference to array of fields belonging.
270 * to the price set used for particular event
271 * @param array $values
272 * Reference to the values array(.
278 public static function format($fid, &$params, &$fields, &$values) {
279 if (empty($params["price_{$fid}"])) {
283 $optionIDs = implode(',', array_keys($params["price_{$fid}"]));
285 //lets first check in fun parameter,
286 //since user might modified w/ hooks.
288 if (array_key_exists('options', $fields)) {
289 $options = $fields['options'];
292 CRM_Price_BAO_PriceFieldValue
::getValues($fid, $options, 'weight', TRUE);
294 $fieldTitle = CRM_Utils_Array
::value('label', $fields);
296 $fieldTitle = CRM_Core_DAO
::getFieldValue('CRM_Price_DAO_PriceField', $fid, 'label');
299 foreach ($params["price_{$fid}"] as $oid => $qty) {
300 $price = $options[$oid]['amount'];
302 // lets clean the price in case it is not yet cleant
304 $price = CRM_Utils_Rule
::cleanMoney($price);
306 $participantsPerField = CRM_Utils_Array
::value('count', $options[$oid], 0);
308 $values[$oid] = array(
309 'price_field_id' => $fid,
310 'price_field_value_id' => $oid,
311 'label' => CRM_Utils_Array
::value('label', $options[$oid]),
312 'field_title' => $fieldTitle,
313 'description' => CRM_Utils_Array
::value('description', $options[$oid]),
315 'unit_price' => $price,
316 'line_total' => $qty * $price,
317 'participant_count' => $qty * $participantsPerField,
318 'max_value' => CRM_Utils_Array
::value('max_value', $options[$oid]),
319 'membership_type_id' => CRM_Utils_Array
::value('membership_type_id', $options[$oid]),
320 'membership_num_terms' => CRM_Utils_Array
::value('membership_num_terms', $options[$oid]),
321 'auto_renew' => CRM_Utils_Array
::value('auto_renew', $options[$oid]),
322 'html_type' => $fields['html_type'],
323 'financial_type_id' => CRM_Utils_Array
::value('financial_type_id', $options[$oid]),
324 'tax_amount' => CRM_Utils_Array
::value('tax_amount', $options[$oid]),
327 if ($values[$oid]['membership_type_id'] && empty($values[$oid]['auto_renew'])) {
328 $values[$oid]['auto_renew'] = CRM_Core_DAO
::getFieldValue('CRM_Member_DAO_MembershipType', $values[$oid]['membership_type_id'], 'auto_renew');
334 * Delete line items for given entity.
336 * @param int $entityId
337 * @param int $entityTable
341 public static function deleteLineItems($entityId, $entityTable) {
342 if (!$entityId ||
!$entityTable) {
346 if ($entityId && !is_array($entityId)) {
347 $entityId = array($entityId);
350 $query = "DELETE FROM civicrm_line_item where entity_id IN ('" . implode("','", $entityId) . "') AND entity_table = '$entityTable'";
351 $dao = CRM_Core_DAO
::executeQuery($query);
356 * Process price set and line items.
358 * @param int $entityId
359 * @param array $lineItem
361 * @param object $contributionDetails
362 * @param string $entityTable
365 * @param bool $update
369 public static function processPriceSet($entityId, $lineItem, $contributionDetails = NULL, $entityTable = 'civicrm_contribution', $update = FALSE) {
370 if (!$entityId ||
!is_array($lineItem)
371 || CRM_Utils_system
::isNull($lineItem)
376 foreach ($lineItem as $priceSetId => $values) {
381 foreach ($values as $line) {
382 $line['entity_table'] = $entityTable;
383 if (empty($line['entity_id'])) {
384 $line['entity_id'] = $entityId;
386 if (!empty($line['membership_type_id'])) {
387 $line['entity_table'] = 'civicrm_membership';
389 if (!empty($contributionDetails->id
)) {
390 $line['contribution_id'] = $contributionDetails->id
;
391 if ($line['entity_table'] == 'civicrm_contribution') {
392 $line['entity_id'] = $contributionDetails->id
;
396 // if financial type is not set and if price field value is NOT NULL
397 // get financial type id of price field value
398 if (!empty($line['price_field_value_id']) && empty($line['financial_type_id'])) {
399 $line['financial_type_id'] = CRM_Core_DAO
::getFieldValue('CRM_Price_DAO_PriceFieldValue', $line['price_field_value_id'], 'financial_type_id');
401 $lineItems = CRM_Price_BAO_LineItem
::create($line);
402 if (!$update && $contributionDetails) {
403 CRM_Financial_BAO_FinancialItem
::add($lineItems, $contributionDetails);
404 if (isset($line['tax_amount'])) {
405 CRM_Financial_BAO_FinancialItem
::add($lineItems, $contributionDetails, TRUE);
413 * @param int $entityId
414 * @param string $entityTable
416 * @param array $otherParams
418 public static function syncLineItems($entityId, $entityTable = 'civicrm_contribution', $amount, $otherParams = NULL) {
419 if (!$entityId || CRM_Utils_System
::isNull($amount)) {
423 $from = " civicrm_line_item li
424 LEFT JOIN civicrm_price_field pf ON pf.id = li.price_field_id
425 LEFT JOIN civicrm_price_set ps ON ps.id = pf.price_set_id ";
427 $set = " li.unit_price = %3,
428 li.line_total = %3 ";
430 $where = " li.entity_id = %1 AND
431 li.entity_table = %2 ";
434 1 => array($entityId, 'Integer'),
435 2 => array($entityTable, 'String'),
436 3 => array($amount, 'Float'),
439 if ($entityTable == 'civicrm_contribution') {
440 $entityName = 'default_contribution_amount';
441 $where .= " AND ps.name = %4 ";
442 $params[4] = array($entityName, 'String');
444 elseif ($entityTable == 'civicrm_participant') {
446 LEFT JOIN civicrm_price_set_entity cpse ON cpse.price_set_id = ps.id
447 LEFT JOIN civicrm_price_field_value cpfv ON cpfv.price_field_id = pf.id and cpfv.label = %4 ";
448 $set .= " ,li.label = %4,
449 li.price_field_value_id = cpfv.id ";
450 $where .= " AND cpse.entity_table = 'civicrm_event' AND cpse.entity_id = %5 ";
451 $amount = empty($amount) ?
0 : $amount;
453 4 => array($otherParams['fee_label'], 'String'),
454 5 => array($otherParams['event_id'], 'String'),
464 CRM_Core_DAO
::executeQuery($query, $params);
468 * Build line items array.
469 * @param array $params
472 * @param string $entityId
475 * @param string $entityTable
480 public static function getLineItemArray(&$params, $entityId = NULL, $entityTable = 'contribution', $isRelatedID = FALSE) {
483 $priceSetDetails = CRM_Price_BAO_PriceSet
::getDefaultPriceSet($entityTable);
484 $totalAmount = CRM_Utils_Array
::value('total_amount', $params);
485 $financialType = CRM_Utils_Array
::value('financial_type_id', $params);
486 foreach ($priceSetDetails as $values) {
487 if ($entityTable == 'membership') {
488 if ($isRelatedID != $values['membership_type_id']) {
492 $totalAmount = $values['amount'];
494 $financialType = $values['financial_type_id'];
496 $params['line_item'][$values['setID']][$values['priceFieldID']] = array(
497 'price_field_id' => $values['priceFieldID'],
498 'price_field_value_id' => $values['priceFieldValueID'],
499 'label' => $values['label'],
501 'unit_price' => $totalAmount,
502 'line_total' => $totalAmount,
503 'financial_type_id' => $financialType,
504 'membership_type_id' => $values['membership_type_id'],
511 $totalEntityId = count($entityId);
512 foreach ($entityId as $id) {
513 $lineItems = CRM_Price_BAO_LineItem
::getLineItems($id, $entityTable, NULL, TRUE, $isRelatedID);
514 foreach ($lineItems as $key => $values) {
515 if (!$setID && $values['price_field_id']) {
516 $setID = CRM_Core_DAO
::getFieldValue('CRM_Price_DAO_PriceField', $values['price_field_id'], 'price_set_id');
517 $params['is_quick_config'] = CRM_Core_DAO
::getFieldValue('CRM_Price_DAO_PriceSet', $setID, 'is_quick_config');
519 if (!empty($params['is_quick_config']) && array_key_exists('total_amount', $params)
520 && $totalEntityId == 1
522 $values['line_total'] = $values['unit_price'] = $params['total_amount'];
524 $values['id'] = $key;
525 $params['line_item'][$setID][$key] = $values;
532 * Calculate tax rate in percentage.
534 * @param array $lineItemId
535 * An assoc array of lineItem.
540 public static function calculateTaxRate($lineItemId) {
541 if ($lineItemId['unit_price'] == 0) {
544 if ($lineItemId['html_type'] == 'Text') {
545 $tax = $lineItemId['tax_amount'] / ($lineItemId['unit_price'] * $lineItemId['qty']) * 100;
548 $tax = ($lineItemId['tax_amount'] / $lineItemId['unit_price']) * 100;