Merge pull request #4627 from colemanw/docblocks
[civicrm-core.git] / CRM / Financial / BAO / FinancialItem.php
CommitLineData
6a488035 1<?php
6a488035
TO
2/*
3 +--------------------------------------------------------------------+
06b69b18 4 | CiviCRM version 4.5 |
6a488035 5 +--------------------------------------------------------------------+
06b69b18 6 | Copyright CiviCRM LLC (c) 2004-2014 |
6a488035
TO
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
06b69b18 31 * @copyright CiviCRM LLC (c) 2004-2014
6a488035
TO
32 * $Id$
33 *
34 */
35
36class CRM_Financial_BAO_FinancialItem extends CRM_Financial_DAO_FinancialItem {
37
38 /**
39 * class constructor
40 */
41 function __construct( ) {
42 parent::__construct( );
43 }
44
45 /**
c490a46a 46 * Fetch object based on array of properties
6a488035
TO
47 *
48 * @param array $params (reference ) an assoc array of name/value pairs
49 * @param array $defaults (reference ) an assoc array to hold the flattened values
50 *
c490a46a 51 * @return CRM_Contribute_BAO_FinancialItem object
6a488035
TO
52 * @access public
53 * @static
54 */
55 static function retrieve(&$params, &$defaults) {
56 $financialItem = new CRM_Financial_DAO_FinancialItem();
57 $financialItem->copyValues($params);
58 if ($financialItem->find(TRUE)) {
59 CRM_Core_DAO::storeValues($financialItem, $defaults);
60 return $financialItem;
61 }
62 return NULL;
63 }
64
65 /**
c490a46a 66 * add the financial items and financial trxn
6a488035
TO
67 *
68 * @param object $lineItem line item object
69 * @param object $contribution contribution object
0b7bd9dd 70 * @param boolean $taxTrxnID
03e04002 71 *
6a488035 72 * @access public
03e04002 73 * @static
6a488035
TO
74 * @return void
75 */
0b7bd9dd 76 static function add($lineItem, $contribution, $taxTrxnID = FALSE) {
6a488035 77 $contributionStatuses = CRM_Contribute_PseudoConstant::contributionStatus(NULL, 'name');
7611ae71 78 $financialItemStatus = CRM_Core_PseudoConstant::get('CRM_Financial_DAO_FinancialItem', 'status_id');
b81ee58c 79 $itemStatus = NULL;
0bdf3091
PJ
80 if ($contribution->contribution_status_id == array_search('Completed', $contributionStatuses)
81 || $contribution->contribution_status_id == array_search('Pending refund', $contributionStatuses)) {
6a488035 82 $itemStatus = array_search('Paid', $financialItemStatus);
03e04002 83 }
f6bae84f 84 elseif ($contribution->contribution_status_id == array_search('Pending', $contributionStatuses)
b81ee58c 85 || $contribution->contribution_status_id == array_search('In Progress', $contributionStatuses)) {
6a488035 86 $itemStatus = array_search('Unpaid', $financialItemStatus);
03e04002 87 }
f8325309
PJ
88 elseif ($contribution->contribution_status_id == array_search('Partially paid', $contributionStatuses)) {
89 $itemStatus = array_search('Partially paid', $financialItemStatus);
90 }
6a488035
TO
91 $params = array(
92 'transaction_date' => CRM_Utils_Date::isoToMysql($contribution->receive_date),
03e04002 93 'contact_id' => $contribution->contact_id,
6a488035
TO
94 'amount' => $lineItem->line_total,
95 'currency' => $contribution->currency,
96 'entity_table' => 'civicrm_line_item',
97 'entity_id' => $lineItem->id,
98 'description' => ( $lineItem->qty != 1 ? $lineItem->qty . ' of ' : ''). ' ' . $lineItem->label,
99 'status_id' => $itemStatus,
100 );
03e04002 101
0b7bd9dd 102 if ($taxTrxnID) {
5a18a545 103 $invoiceSettings = CRM_Core_BAO_Setting::getItem(CRM_Core_BAO_Setting::CONTRIBUTE_PREFERENCES_NAME, 'contribution_invoice_settings');
104 $taxTerm = CRM_Utils_Array::value('tax_term', $invoiceSettings);
0b7bd9dd 105 $params['amount'] = $lineItem->tax_amount;
5a18a545 106 $params['description'] = $taxTerm;
0b7bd9dd 107 $accountRel = key(CRM_Core_PseudoConstant::accountOptionValues('account_relationship', NULL, " AND v.name LIKE 'Sales Tax Account is' "));
108 }
109 else {
110 $accountRel = key(CRM_Core_PseudoConstant::accountOptionValues('account_relationship', NULL, " AND v.name LIKE 'Income Account is' "));
111 }
6a488035 112 if ($lineItem->financial_type_id) {
03e04002 113 $searchParams = array(
6a488035
TO
114 'entity_table' => 'civicrm_financial_type',
115 'entity_id' => $lineItem->financial_type_id,
0b7bd9dd 116 'account_relationship' => $accountRel,
6a488035
TO
117 );
118
119 $result = array();
120 CRM_Financial_BAO_FinancialTypeAccount::retrieve( $searchParams, $result );
121 $params['financial_account_id'] = CRM_Utils_Array::value( 'financial_account_id', $result );
122 }
c40e1ff4 123 $trxn = CRM_Core_BAO_FinancialTrxn::getFinancialTrxnId($contribution->id, 'ASC', TRUE);
124 $trxnId['id'] = $trxn['financialTrxnId'];
6a488035 125
0aaf8fe9 126 return self::create($params, NULL, $trxnId);
03e04002 127 }
6a488035
TO
128
129 /**
c490a46a 130 * create the financial Items and financial enity trxn
6a488035
TO
131 *
132 * @param array $params associated array to create financial items
133 * @param array $ids financial item ids
134 * @param array $trxnIds financial item ids
03e04002 135 *
6a488035 136 * @access public
03e04002 137 * @static
6a488035
TO
138 * @return object
139 */
140 static function create(&$params, $ids = NULL, $trxnIds = NULL) {
141 $financialItem = new CRM_Financial_DAO_FinancialItem();
142 $financialItem->copyValues($params);
a7488080 143 if (!empty($ids['id'])) {
03e04002 144 $financialItem->id = $ids['id'];
6a488035
TO
145 }
146
147 $financialItem->save();
a7488080 148 if (!empty($trxnIds['id'])) {
6a488035
TO
149 $entity_financial_trxn_params = array(
150 'entity_table' => "civicrm_financial_item",
151 'entity_id' => $financialItem->id,
152 'financial_trxn_id' => $trxnIds['id'],
153 'amount' => $params['amount'],
154 );
03e04002 155
6a488035
TO
156 $entity_trxn = new CRM_Financial_DAO_EntityFinancialTrxn();
157 $entity_trxn->copyValues($entity_financial_trxn_params);
a7488080 158 if (!empty($ids['entityFinancialTrxnId'])) {
6a488035
TO
159 $entity_trxn->id = $ids['entityFinancialTrxnId'];
160 }
161 $entity_trxn->save();
162 }
163 return $financialItem;
03e04002 164 }
6a488035
TO
165
166 /**
167 * takes an associative array and creates a entity financial transaction object
168 *
169 * @param array $params (reference ) an assoc array of name/value pairs
170 *
c490a46a 171 * @return CRM_Core_BAO_FinancialTrxn object
6a488035
TO
172 * @access public
173 * @static
174 */
175 static function createEntityTrxn($params) {
176 $entity_trxn = new CRM_Financial_DAO_EntityFinancialTrxn();
177 $entity_trxn->copyValues($params);
178 $entity_trxn->save();
179 return $entity_trxn;
180 }
181
182 /**
183 * retrive entity financial trxn details
184 *
da6b46f4 185 * @param array $params (reference ) an assoc array of name/value pairs
c490a46a 186 * @param bool $maxId to retrive max id
6a488035
TO
187 *
188 * @return array
189 * @access public
190 * @static
191 */
192 static function retrieveEntityFinancialTrxn($params, $maxId = FALSE) {
193 $financialItem = new CRM_Financial_DAO_EntityFinancialTrxn();
194 $financialItem->copyValues($params);
195 //retrieve last entry from civicrm_entity_financial_trxn
196 if ($maxId) {
197 $financialItem->orderBy('id DESC');
198 $financialItem->limit(1);
199 }
200 $financialItem->find();
201 while ($financialItem->fetch()) {
202 $financialItems[$financialItem->id] = array(
203 'id' => $financialItem->id,
204 'entity_table' => $financialItem->entity_table,
205 'entity_id' => $financialItem->entity_id,
206 'financial_trxn_id' => $financialItem->financial_trxn_id,
207 'amount' => $financialItem->amount,
208 );
03e04002 209 }
6a488035
TO
210 if (!empty($financialItems)) {
211 return $financialItems;
212 }
213 else {
214 return null;
215 }
216 }
2efcf0c2 217
f182074e
PN
218 /**
219 * check if contact is present in financial_item table
220 *
221 * CRM-12929
222 *
223 * @param array $contactIds an array contact id's
224 *
225 * @param array $error error to display
226 *
227 * @return array
228 * @access public
229 * @static
230 */
231 static function checkContactPresent($contactIds, &$error) {
232 if (empty($contactIds)) {
233 return FALSE;
234 }
2efcf0c2 235
f182074e
PN
236 $allowPermDelete = CRM_Core_BAO_Setting::getItem(CRM_Core_BAO_Setting::SYSTEM_PREFERENCES_NAME, 'allowPermDeleteFinancial');
237
238 if (!$allowPermDelete) {
239 $sql = 'SELECT DISTINCT(cc.id), cc.display_name FROM civicrm_contact cc
240INNER JOIN civicrm_contribution con ON con.contact_id = cc.id
241WHERE cc.id IN (' . implode (',', $contactIds) . ') AND con.is_test = 0';
242 $dao = CRM_Core_DAO::executeQuery($sql);
243 if ($dao->N) {
244 while ($dao->fetch()) {
245 $url = CRM_Utils_System::url('civicrm/contact/view', "reset=1&cid=$dao->id");
246 $not_deleted[$dao->id] = "<a href='$url'>$dao->display_name</a>";
247 }
2efcf0c2 248
f182074e
PN
249 $errorStatus = '';
250 if (is_array($error)) {
251 $errorStatus = '<ul><li>' . implode('</li><li>', $not_deleted) . '</li></ul>';
252 }
2efcf0c2 253
f182074e 254 $error['_qf_default'] = $errorStatus . ts('This contact(s) can not be permanently deleted because the contact record is linked to one or more live financial transactions. Deleting this contact would result in the loss of financial data.');
2efcf0c2 255 return $error;
f182074e
PN
256 }
257 }
258 return FALSE;
259 }
6a488035 260}