bulk comment fixes
[civicrm-core.git] / CRM / Contribute / BAO / ContributionSoft.php
1 <?php
2 /*
3 +--------------------------------------------------------------------+
4 | CiviCRM version 4.5 |
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 class CRM_Contribute_BAO_ContributionSoft extends CRM_Contribute_DAO_ContributionSoft {
36
37 /**
38 * construct method
39 */
40 function __construct() {
41 parent::__construct();
42 }
43
44 /**
45 * function to add contribution soft credit record
46 *
47 * @param array $params (reference ) an assoc array of name/value pairs
48 *
49 * @return object soft contribution of object that is added
50 * @access public
51 *
52 */
53 public static function add(&$params) {
54 $contributionSoft = new CRM_Contribute_DAO_ContributionSoft();
55 $contributionSoft->copyValues($params);
56
57 // set currency for CRM-1496
58 if (!isset($contributionSoft->currency)) {
59 $config = CRM_Core_Config::singleton();
60 $contributionSoft->currency = $config->defaultCurrency;
61 }
62 return $contributionSoft->save();
63 }
64
65 /**
66 * Takes a bunch of params that are needed to match certain criteria and
67 * retrieves the relevant objects. Typically the valid params are only
68 * contact_id. We'll tweak this function to be more full featured over a period
69 * of time. This is the inverse function of create. It also stores all the retrieved
70 * values in the default array
71 *
72 * @param array $params (reference ) an assoc array of name/value pairs
73 * @param array $defaults (reference ) an assoc array to hold the flattened values
74 *
75 * @return object CRM_Contribute_BAO_ContributionSoft object
76 * @access public
77 * @static
78 */
79 static function retrieve(&$params, &$defaults) {
80 $contributionSoft = new CRM_Contribute_DAO_ContributionSoft();
81 $contributionSoft->copyValues($params);
82 if ($contributionSoft->find(TRUE)) {
83 CRM_Core_DAO::storeValues($contributionSoft, $defaults);
84 return $contributionSoft;
85 }
86 return NULL;
87 }
88
89 /**
90 * Function to delete soft credits
91 *
92 * @param $params
93 *
94 * @internal param int $contributionTypeId
95 * @static
96 */
97 static function del($params) {
98 //delete from contribution soft table
99 $contributionSoft = new CRM_Contribute_DAO_ContributionSoft();
100 foreach($params as $column => $value) {
101 $contributionSoft->$column = $value;
102 }
103 $contributionSoft->delete();
104 }
105
106 static function getSoftContributionTotals($contact_id, $isTest = 0) {
107 $query = '
108 SELECT SUM(amount) as amount, AVG(total_amount) as average, cc.currency
109 FROM civicrm_contribution_soft ccs
110 LEFT JOIN civicrm_contribution cc ON ccs.contribution_id = cc.id
111 WHERE cc.is_test = %2 AND ccs.contact_id = %1
112 GROUP BY currency';
113
114 $params = array(1 => array($contact_id, 'Integer'),
115 2 => array($isTest, 'Integer'));
116
117 $cs = CRM_Core_DAO::executeQuery($query, $params);
118
119 $count = 0;
120 $amount = $average = array();
121
122 while ($cs->fetch()) {
123 if ($cs->amount > 0) {
124 $count++;
125 $amount[] = $cs->amount;
126 $average[] = $cs->average;
127 $currency[] = $cs->currency;
128 }
129 }
130
131 if ($count > 0) {
132 return array(
133 implode(',&nbsp;', $amount),
134 implode(',&nbsp;', $average),
135 implode(',&nbsp;', $currency),
136 );
137 }
138 return array(0, 0);
139 }
140
141 /**
142 * Function to retrieve soft contributions for contribution record.
143 *
144 * @param $contributionID
145 * @param boolean $all include PCP data
146 *
147 * @internal param array $params an associated array
148 * @return array of soft contribution ids, amounts, and associated contact ids
149 * @static
150 */
151 static function getSoftContribution($contributionID, $all = FALSE) {
152 $pcpFields = array(
153 'pcp_id',
154 'pcp_title',
155 'pcp_display_in_roll',
156 'pcp_roll_nickname',
157 'pcp_personal_note',
158 );
159
160 $query = '
161 SELECT ccs.id, pcp_id, cpcp.title as pcp_title, pcp_display_in_roll, pcp_roll_nickname, pcp_personal_note, ccs.currency as currency, amount, ccs.contact_id as contact_id, c.display_name, ccs.soft_credit_type_id
162 FROM civicrm_contribution_soft ccs INNER JOIN civicrm_contact c on c.id = ccs.contact_id
163 LEFT JOIN civicrm_pcp cpcp ON ccs.pcp_id = cpcp.id
164 WHERE contribution_id = %1;
165 ';
166
167 $params = array(1 => array($contributionID, 'Integer'));
168
169 $dao = CRM_Core_DAO::executeQuery($query, $params);
170
171 $softContribution = array();
172 $count = 1;
173 while ($dao->fetch()) {
174 if ($dao->pcp_id) {
175 if ($all) {
176 foreach ($pcpFields as $val) {
177 $softContribution[$val] = $dao->$val;
178 }
179 $softContribution['pcp_soft_credit_to_name'] = $dao->display_name;
180 $softContribution['pcp_soft_credit_to_id'] = $dao->contact_id;
181 }
182 }
183 else {
184 $softContribution['soft_credit'][$count] = array(
185 'contact_id' => $dao->contact_id,
186 'soft_credit_id' => $dao->id,
187 'currency' => $dao->currency,
188 'amount' => $dao->amount,
189 'contact_name' => $dao->display_name,
190 'soft_credit_type' => $dao->soft_credit_type_id,
191 'soft_credit_type_label' => CRM_Core_OptionGroup::getLabel('soft_credit_type', $dao->soft_credit_type_id)
192 );
193 $count++;
194 }
195 }
196
197 return $softContribution;
198 }
199
200 static function getSoftCreditIds($contributionID , $isPCP = FALSE) {
201 $query = "
202 SELECT id
203 FROM civicrm_contribution_soft
204 WHERE contribution_id = %1
205 ";
206
207 if ($isPCP) {
208 $query .= " AND pcp_id IS NOT NULL";
209 }
210 else {
211 $query .= " AND pcp_id IS NULL";
212 }
213 $params = array(1 => array($contributionID, 'Integer'));
214
215 $dao = CRM_Core_DAO::executeQuery($query, $params);
216 $id = array();
217 $type = '';
218 while ($dao->fetch()) {
219 if ($isPCP) {
220 return $dao->id;
221 }
222 $id[] = $dao->id;
223 }
224 return $id;
225 }
226
227 /**
228 * Function to retrieve the list of soft contributions for given contact.
229 *
230 * @param int $contact_id contact id
231 *
232 * @param int $isTest
233 *
234 * @return array
235 * @static
236 */
237 static function getSoftContributionList($contact_id, $isTest = 0) {
238 $query = '
239 SELECT ccs.id, ccs.amount as amount,
240 ccs.contribution_id,
241 ccs.pcp_id,
242 ccs.pcp_display_in_roll,
243 ccs.pcp_roll_nickname,
244 ccs.pcp_personal_note,
245 ccs.soft_credit_type_id,
246 cc.receive_date,
247 cc.contact_id as contributor_id,
248 cc.contribution_status_id as contribution_status_id,
249 cp.title as pcp_title,
250 cc.currency,
251 contact.display_name,
252 cct.name as contributionType
253 FROM civicrm_contribution_soft ccs
254 LEFT JOIN civicrm_contribution cc
255 ON ccs.contribution_id = cc.id
256 LEFT JOIN civicrm_pcp cp
257 ON ccs.pcp_id = cp.id
258 LEFT JOIN civicrm_contact contact ON
259 ccs.contribution_id = cc.id AND cc.contact_id = contact.id
260 LEFT JOIN civicrm_financial_type cct ON cc.financial_type_id = cct.id
261 WHERE cc.is_test = %2 AND ccs.contact_id = %1
262 ORDER BY cc.receive_date DESC';
263
264 $params = array(
265 1 => array($contact_id, 'Integer'),
266 2 => array($isTest, 'Integer')
267 );
268 $cs = CRM_Core_DAO::executeQuery($query, $params);
269 $contributionStatus = CRM_Contribute_PseudoConstant::contributionStatus();
270 $result = array();
271 while ($cs->fetch()) {
272 $result[$cs->id]['amount'] = $cs->amount;
273 $result[$cs->id]['currency'] = $cs->currency;
274 $result[$cs->id]['contributor_id'] = $cs->contributor_id;
275 $result[$cs->id]['contribution_id'] = $cs->contribution_id;
276 $result[$cs->id]['contributor_name'] = $cs->display_name;
277 $result[$cs->id]['financial_type'] = $cs->contributionType;
278 $result[$cs->id]['receive_date'] = $cs->receive_date;
279 $result[$cs->id]['pcp_id'] = $cs->pcp_id;
280 $result[$cs->id]['pcp_title'] = $cs->pcp_title;
281 $result[$cs->id]['pcp_display_in_roll'] = $cs->pcp_display_in_roll;
282 $result[$cs->id]['pcp_roll_nickname'] = $cs->pcp_roll_nickname;
283 $result[$cs->id]['pcp_personal_note'] = $cs->pcp_personal_note;
284 $result[$cs->id]['contribution_status'] = CRM_Utils_Array::value($cs->contribution_status_id, $contributionStatus);
285 $result[$cs->id]['sct_label'] = CRM_Core_OptionGroup::getLabel('soft_credit_type', $cs->soft_credit_type_id);
286
287 if ($isTest) {
288 $result[$cs->id]['contribution_status'] = $result[$cs->id]['contribution_status'] . '<br /> (test)';
289 }
290 }
291 return $result;
292 }
293
294 /*
295 * Function to assign honor profile fields to template/form, if $honorId (as soft-credit's contact_id)
296 * is passed then whole honoreeprofile fields with title/value assoc array assigned or only honoreeName
297 * is assigned
298 *
299 * @static
300 */
301
302 static function formatHonoreeProfileFields($form, $params, $honoreeprofileId, $honorId = NULL) {
303 $profileContactType = CRM_Core_BAO_UFGroup::getContactType($honoreeprofileId);
304 $profileFields = CRM_Core_BAO_UFGroup::getFields($honoreeprofileId);
305 $honoreeProfileFields = $values = array();
306 $honorName = NULL;
307
308 if ($honorId) {
309 CRM_Core_BAO_UFGroup::getValues($honorId, $profileFields, $values, FALSE, $params);
310 if (empty($params)) {
311 foreach ($profileFields as $name => $field) {
312 $title = $field['title'];
313 $params[$field['name']] = $values[$title];
314 }
315 }
316 }
317
318 //remove name related fields and construct name string with prefix/suffix
319 //which will be later assigned to template
320 switch ($profileContactType) {
321 case 'Individual':
322 if (array_key_exists('prefix_id', $params)) {
323 $honorName = CRM_Utils_Array::value(CRM_Utils_Array::value('prefix_id', $params),
324 CRM_Core_PseudoConstant::get('CRM_Contact_DAO_Contact', 'prefix_id')
325 );
326 unset($profileFields['prefix_id']);
327 }
328 $honorName .= ' ' . $params['first_name'] . ' ' . $params['last_name'];
329 unset($profileFields['first_name']);
330 unset($profileFields['last_name']);
331 if (array_key_exists('suffix_id', $params)) {
332 $honorName .= ' ' . CRM_Utils_Array::value(CRM_Utils_Array::value('suffix_id', $params),
333 CRM_Core_PseudoConstant::get('CRM_Contact_DAO_Contact', 'suffix_id')
334 );
335 unset($profileFields['suffix_id']);
336 }
337 break;
338 case 'Organization':
339 $honorName = $params['organization_name'];
340 unset($profileFields['organization_name']);
341 break;
342 case 'Household':
343 $honorName = $params['household_name'];
344 unset($profileFields['household_name']);
345 break;
346 }
347
348 if ($honorId) {
349 $honoreeProfileFields['Name'] = $honorName;
350 foreach ($profileFields as $name => $field) {
351 $title = $field['title'];
352 $honoreeProfileFields[$title] = $values[$title];
353 }
354 $form->assign('honoreeProfile', $honoreeProfileFields);
355 }
356 else {
357 $form->assign('honorName', $honorName);
358 }
359 }
360 }
361