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