comment fixes
[civicrm-core.git] / CRM / Upgrade / Snapshot / V4p2 / Price / BAO / LineItem.php
1 <?php
2 /*
3 +--------------------------------------------------------------------+
4 | CiviCRM version 4.7 |
5 +--------------------------------------------------------------------+
6 | Copyright CiviCRM LLC (c) 2004-2015 |
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-2015
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_Upgrade_Snapshot_V4p2_Price_BAO_LineItem extends CRM_Upgrade_Snapshot_V4p2_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_Upgrade_Snapshot_V4p2_Price_DAO_LineItem
55 */
56 public static function create(&$params) {
57 //create mode only as we don't support editing line items
58
59 CRM_Utils_Hook::pre('create', 'LineItem', $params['entity_id'], $params);
60
61 $lineItemBAO = new CRM_Upgrade_Snapshot_V4p2_Price_BAO_LineItem();
62 $lineItemBAO->copyValues($params);
63
64 $return = $lineItemBAO->save();
65
66 CRM_Utils_Hook::post('create', 'LineItem', $params['entity_id'], $params);
67
68 return $return;
69 }
70
71 /**
72 * Retrieve DB object based on input parameters.
73 *
74 * It also stores all the retrieved values in the default array.
75 *
76 * @param array $params
77 * (reference ) an assoc array of name/value pairs.
78 * @param array $defaults
79 * (reference ) an assoc array to hold the flattened values.
80 *
81 * @return CRM_Upgrade_Snapshot_V4p2_Price_BAO_LineItem
82 */
83 public static function retrieve(&$params, &$defaults) {
84 $lineItem = new CRM_Upgrade_Snapshot_V4p2_Price_BAO_LineItem();
85 $lineItem->copyValues($params);
86 if ($lineItem->find(TRUE)) {
87 CRM_Core_DAO::storeValues($lineItem, $defaults);
88 return $lineItem;
89 }
90 return NULL;
91 }
92
93 /**
94 * Given a participant id/contribution id,
95 * return contribution/fee line items
96 *
97 * @param int $entityId
98 * participant/contribution id.
99 * @param string $entity
100 * participant/contribution.
101 *
102 * @param null $isQuick
103 *
104 * @return array
105 * Array of line items
106 */
107 public static function getLineItems($entityId, $entity = 'participant', $isQuick = NULL) {
108 $selectClause = $whereClause = $fromClause = NULL;
109
110 $selectClause = "
111 SELECT li.id,
112 li.label,
113 li.qty,
114 li.unit_price,
115 li.line_total,
116 pf.label as field_title,
117 pf.html_type,
118 pfv.membership_type_id,
119 li.price_field_id,
120 li.participant_count,
121 li.price_field_value_id,
122 pfv.description";
123
124 $fromClause = "
125 FROM civicrm_%2 as %2
126 LEFT JOIN civicrm_line_item li ON ( li.entity_id = %2.id AND li.entity_table = 'civicrm_%2')
127 LEFT JOIN civicrm_price_field_value pfv ON ( pfv.id = li.price_field_value_id )
128 LEFT JOIN civicrm_price_field pf ON (pf.id = li.price_field_id )";
129 $whereClause = "
130 WHERE %2.id = %1";
131
132 if ($isQuick) {
133 $fromClause .= " LEFT JOIN civicrm_price_set cps on cps.id = pf.price_set_id ";
134 $whereClause .= " and cps.is_quick_config = 0";
135 }
136 $lineItems = array();
137
138 if (!$entityId || !$entity || !$fromClause) {
139 return $lineItems;
140 }
141
142 $params = array(
143 1 => array($entityId, 'Integer'),
144 2 => array($entity, 'Text'),
145 );
146
147 $dao = CRM_Core_DAO::executeQuery("$selectClause $fromClause $whereClause", $params);
148 while ($dao->fetch()) {
149 if (!$dao->id) {
150 continue;
151 }
152 $lineItems[$dao->id] = array(
153 'qty' => $dao->qty,
154 'label' => $dao->label,
155 'unit_price' => $dao->unit_price,
156 'line_total' => $dao->line_total,
157 'price_field_id' => $dao->price_field_id,
158 'participant_count' => $dao->participant_count,
159 'price_field_value_id' => $dao->price_field_value_id,
160 'field_title' => $dao->field_title,
161 'html_type' => $dao->html_type,
162 'description' => $dao->description,
163 'entity_id' => $entityId,
164 'membership_type_id' => $dao->membership_type_id,
165 );
166 }
167 return $lineItems;
168 }
169
170 /**
171 * This method will create the lineItem array required for.
172 * processAmount method
173 *
174 * @param int $fid
175 * Price set field id.
176 * @param array $params
177 * Reference to form values.
178 * @param array $fields
179 * Reference to array of fields belonging.
180 * to the price set used for particular event
181 * @param array $values
182 * Reference to the values array(.
183 * this is lineItem array)
184 */
185 public static function format($fid, &$params, &$fields, &$values) {
186 if (empty($params["price_{$fid}"])) {
187 return;
188 }
189
190 $optionIDs = implode(',', array_keys($params["price_{$fid}"]));
191
192 //lets first check in fun parameter,
193 //since user might modified w/ hooks.
194 $options = array();
195 if (array_key_exists('options', $fields)) {
196 $options = $fields['options'];
197 }
198 else {
199 CRM_Upgrade_Snapshot_V4p2_Price_BAO_FieldValue::getValues($fid, $options, 'weight', TRUE);
200 }
201 $fieldTitle = CRM_Utils_Array::value('label', $fields);
202 if (!$fieldTitle) {
203 $fieldTitle = CRM_Core_DAO::getFieldValue('CRM_Upgrade_Snapshot_V4p2_Price_DAO_Field', $fid, 'label');
204 }
205
206 foreach ($params["price_{$fid}"] as $oid => $qty) {
207 $price = $options[$oid]['amount'];
208
209 // lets clean the price in case it is not yet cleaned
210 // CRM-10974
211 $price = CRM_Utils_Rule::cleanMoney($price);
212
213 $participantsPerField = CRM_Utils_Array::value('count', $options[$oid], 0);
214
215 $values[$oid] = array(
216 'price_field_id' => $fid,
217 'price_field_value_id' => $oid,
218 'label' => CRM_Utils_Array::value('label', $options[$oid]),
219 'field_title' => $fieldTitle,
220 'description' => CRM_Utils_Array::value('description', $options[$oid]),
221 'qty' => $qty,
222 'unit_price' => $price,
223 'line_total' => $qty * $price,
224 'participant_count' => $qty * $participantsPerField,
225 'max_value' => CRM_Utils_Array::value('max_value', $options[$oid]),
226 'membership_type_id' => CRM_Utils_Array::value('membership_type_id', $options[$oid]),
227 'auto_renew' => CRM_Utils_Array::value('auto_renew', $options[$oid]),
228 'html_type' => $fields['html_type'],
229 );
230 }
231 }
232
233 /**
234 * Delete line items for given entity.
235 *
236 * @param int $entityId
237 * @param int $entityTable
238 *
239 * @return bool
240 */
241 public static function deleteLineItems($entityId, $entityTable) {
242 $result = FALSE;
243 if (!$entityId || !$entityTable) {
244 return $result;
245 }
246
247 if ($entityId && !is_array($entityId)) {
248 $entityId = array($entityId);
249 }
250
251 $query = "DELETE FROM civicrm_line_item where entity_id IN ('" . implode("','", $entityId) . "') AND entity_table = '$entityTable'";
252 $dao = CRM_Core_DAO::executeQuery($query);
253 return $result;
254 }
255
256 /**
257 * @param int $entityId
258 * @param string $entityTable
259 * @param $amount
260 * @param array $otherParams
261 */
262 public static function syncLineItems($entityId, $entityTable = 'civicrm_contribution', $amount, $otherParams = NULL) {
263 if (!$entityId || CRM_Utils_System::isNull($amount)) {
264 return;
265 }
266
267 $from = " civicrm_line_item li
268 LEFT JOIN civicrm_price_field pf ON pf.id = li.price_field_id
269 LEFT JOIN civicrm_price_set ps ON ps.id = pf.price_set_id ";
270
271 $set = " li.unit_price = %3,
272 li.line_total = %3 ";
273
274 $where = " li.entity_id = %1 AND
275 li.entity_table = %2 ";
276
277 $params = array(
278 1 => array($entityId, 'Integer'),
279 2 => array($entityTable, 'String'),
280 3 => array($amount, 'Float'),
281 );
282
283 if ($entityTable == 'civicrm_contribution') {
284 $entityName = 'default_contribution_amount';
285 $where .= " AND ps.name = %4 ";
286 $params[4] = array($entityName, 'String');
287 }
288 elseif ($entityTable == 'civicrm_participant') {
289 $from .= "
290 LEFT JOIN civicrm_price_set_entity cpse ON cpse.price_set_id = ps.id
291 LEFT JOIN civicrm_price_field_value cpfv ON cpfv.price_field_id = pf.id and cpfv.label = %4 ";
292 $set .= " ,li.label = %4,
293 li.price_field_value_id = cpfv.id ";
294 $where .= " AND cpse.entity_table = 'civicrm_event' AND cpse.entity_id = %5 ";
295 $amount = empty($amount) ? 0 : $amount;
296 $params += array(
297 4 => array($otherParams['fee_label'], 'String'),
298 5 => array($otherParams['event_id'], 'String'),
299 );
300 }
301
302 $query = "
303 UPDATE $from
304 SET $set
305 WHERE $where
306 ";
307
308 CRM_Core_DAO::executeQuery($query, $params);
309 }
310
311 }