* $Id$ */ /** * Business objects for Line Items generated by monetary transactions */ class CRM_Upgrade_Snapshot_V4p2_Price_BAO_LineItem extends CRM_Upgrade_Snapshot_V4p2_Price_DAO_LineItem { /** * Creates a new entry in the database. * * @param array $params * (reference) an assoc array of name/value pairs. * * @return CRM_Upgrade_Snapshot_V4p2_Price_DAO_LineItem object * @static */ public static function create(&$params) { //create mode only as we don't support editing line items CRM_Utils_Hook::pre('create', 'LineItem', $params['entity_id'], $params); $lineItemBAO = new CRM_Upgrade_Snapshot_V4p2_Price_BAO_LineItem(); $lineItemBAO->copyValues($params); $return = $lineItemBAO->save(); CRM_Utils_Hook::post('create', 'LineItem', $params['entity_id'], $params); return $return; } /** * Takes a bunch of params that are needed to match certain criteria and * retrieves the relevant objects. Typically, the valid params are only * price_field_id. This is the inverse function of create. It also * stores all of the retrieved values in the default array. * * @param array $params * (reference ) an assoc array of name/value pairs. * @param array $defaults * (reference ) an assoc array to hold the flattened values. * * @return CRM_Upgrade_Snapshot_V4p2_Price_BAO_LineItem object * @static */ public static function retrieve(&$params, &$defaults) { $lineItem = new CRM_Upgrade_Snapshot_V4p2_Price_BAO_LineItem(); $lineItem->copyValues($params); if ($lineItem->find(TRUE)) { CRM_Core_DAO::storeValues($lineItem, $defaults); return $lineItem; } return NULL; } /** * Given a participant id/contribution id, * return contribution/fee line items * * @param $entityId * Int participant/contribution id. * @param $entity * String participant/contribution. * * @param null $isQuick * * @return array of line items */ public static function getLineItems($entityId, $entity = 'participant', $isQuick = NULL) { $selectClause = $whereClause = $fromClause = NULL; $selectClause = " SELECT li.id, li.label, li.qty, li.unit_price, li.line_total, pf.label as field_title, pf.html_type, pfv.membership_type_id, li.price_field_id, li.participant_count, li.price_field_value_id, pfv.description"; $fromClause = " FROM civicrm_%2 as %2 LEFT JOIN civicrm_line_item li ON ( li.entity_id = %2.id AND li.entity_table = 'civicrm_%2') LEFT JOIN civicrm_price_field_value pfv ON ( pfv.id = li.price_field_value_id ) LEFT JOIN civicrm_price_field pf ON (pf.id = li.price_field_id )"; $whereClause = " WHERE %2.id = %1"; if ($isQuick) { $fromClause .= " LEFT JOIN civicrm_price_set cps on cps.id = pf.price_set_id "; $whereClause .= " and cps.is_quick_config = 0"; } $lineItems = array(); if (!$entityId || !$entity || !$fromClause) { return $lineItems; } $params = array( 1 => array($entityId, 'Integer'), 2 => array($entity, 'Text'), ); $dao = CRM_Core_DAO::executeQuery("$selectClause $fromClause $whereClause", $params); while ($dao->fetch()) { if (!$dao->id) { continue; } $lineItems[$dao->id] = array( 'qty' => $dao->qty, 'label' => $dao->label, 'unit_price' => $dao->unit_price, 'line_total' => $dao->line_total, 'price_field_id' => $dao->price_field_id, 'participant_count' => $dao->participant_count, 'price_field_value_id' => $dao->price_field_value_id, 'field_title' => $dao->field_title, 'html_type' => $dao->html_type, 'description' => $dao->description, 'entity_id' => $entityId, 'membership_type_id' => $dao->membership_type_id, ); } return $lineItems; } /** * This method will create the lineItem array required for * processAmount method * * @param int $fid * Price set field id. * @param array $params * Reference to form values. * @param array $fields * Reference to array of fields belonging. * to the price set used for particular event * @param array $values * Reference to the values array(. this is * lineItem array) * * @return void */ public static function format($fid, &$params, &$fields, &$values) { if (empty($params["price_{$fid}"])) { return; } $optionIDs = implode(',', array_keys($params["price_{$fid}"])); //lets first check in fun parameter, //since user might modified w/ hooks. $options = array(); if (array_key_exists('options', $fields)) { $options = $fields['options']; } else { CRM_Upgrade_Snapshot_V4p2_Price_BAO_FieldValue::getValues($fid, $options, 'weight', TRUE); } $fieldTitle = CRM_Utils_Array::value('label', $fields); if (!$fieldTitle) { $fieldTitle = CRM_Core_DAO::getFieldValue('CRM_Upgrade_Snapshot_V4p2_Price_DAO_Field', $fid, 'label'); } foreach ($params["price_{$fid}"] as $oid => $qty) { $price = $options[$oid]['amount']; // lets clean the price in case it is not yet cleaned // CRM-10974 $price = CRM_Utils_Rule::cleanMoney($price); $participantsPerField = CRM_Utils_Array::value('count', $options[$oid], 0); $values[$oid] = array( 'price_field_id' => $fid, 'price_field_value_id' => $oid, 'label' => CRM_Utils_Array::value('label', $options[$oid]), 'field_title' => $fieldTitle, 'description' => CRM_Utils_Array::value('description', $options[$oid]), 'qty' => $qty, 'unit_price' => $price, 'line_total' => $qty * $price, 'participant_count' => $qty * $participantsPerField, 'max_value' => CRM_Utils_Array::value('max_value', $options[$oid]), 'membership_type_id' => CRM_Utils_Array::value('membership_type_id', $options[$oid]), 'auto_renew' => CRM_Utils_Array::value('auto_renew', $options[$oid]), 'html_type' => $fields['html_type'], ); } } /** * Delete line items for given entity. * * @param int $entityId * @param int $entityTable * * @return bool * @static */ public static function deleteLineItems($entityId, $entityTable) { $result = FALSE; if (!$entityId || !$entityTable) { return $result; } if ($entityId && !is_array($entityId)) { $entityId = array($entityId); } $query = "DELETE FROM civicrm_line_item where entity_id IN ('" . implode("','", $entityId) . "') AND entity_table = '$entityTable'"; $dao = CRM_Core_DAO::executeQuery($query); return $result; } /** * @param int $entityId * @param string $entityTable * @param $amount * @param array $otherParams */ public static function syncLineItems($entityId, $entityTable = 'civicrm_contribution', $amount, $otherParams = NULL) { if (!$entityId || CRM_Utils_System::isNull($amount)) return; $from = " civicrm_line_item li LEFT JOIN civicrm_price_field pf ON pf.id = li.price_field_id LEFT JOIN civicrm_price_set ps ON ps.id = pf.price_set_id "; $set = " li.unit_price = %3, li.line_total = %3 "; $where = " li.entity_id = %1 AND li.entity_table = %2 "; $params = array( 1 => array($entityId, 'Integer'), 2 => array($entityTable, 'String'), 3 => array($amount, 'Float'), ); if ($entityTable == 'civicrm_contribution') { $entityName = 'default_contribution_amount'; $where .= " AND ps.name = %4 "; $params[4] = array($entityName, 'String'); } elseif ($entityTable == 'civicrm_participant') { $from .= " LEFT JOIN civicrm_price_set_entity cpse ON cpse.price_set_id = ps.id LEFT JOIN civicrm_price_field_value cpfv ON cpfv.price_field_id = pf.id and cpfv.label = %4 "; $set .= " ,li.label = %4, li.price_field_value_id = cpfv.id "; $where .= " AND cpse.entity_table = 'civicrm_event' AND cpse.entity_id = %5 "; $amount = empty($amount) ? 0: $amount; $params += array( 4 => array($otherParams['fee_label'], 'String'), 5 => array($otherParams['event_id'], 'String'), ); } $query = " UPDATE $from SET $set WHERE $where "; CRM_Core_DAO::executeQuery($query, $params); } }