Merge remote-tracking branch 'upstream/4.4' into 4.4-master-2014-04-04-00-08-28
[civicrm-core.git] / CRM / Financial / BAO / FinancialType.php
1 <?php
2
3 /*
4 +--------------------------------------------------------------------+
5 | CiviCRM version 4.5 |
6 +--------------------------------------------------------------------+
7 | Copyright CiviCRM LLC (c) 2004-2014 |
8 +--------------------------------------------------------------------+
9 | This file is a part of CiviCRM. |
10 | |
11 | CiviCRM is free software; you can copy, modify, and distribute it |
12 | under the terms of the GNU Affero General Public License |
13 | Version 3, 19 November 2007 and the CiviCRM Licensing Exception. |
14 | |
15 | CiviCRM is distributed in the hope that it will be useful, but |
16 | WITHOUT ANY WARRANTY; without even the implied warranty of |
17 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. |
18 | See the GNU Affero General Public License for more details. |
19 | |
20 | You should have received a copy of the GNU Affero General Public |
21 | License and the CiviCRM Licensing Exception along |
22 | with this program; if not, contact CiviCRM LLC |
23 | at info[AT]civicrm[DOT]org. If you have questions about the |
24 | GNU Affero General Public License or the licensing of CiviCRM, |
25 | see the CiviCRM license FAQ at http://civicrm.org/licensing |
26 +--------------------------------------------------------------------+
27 */
28
29 /**
30 *
31 * @package CRM
32 * @copyright CiviCRM LLC (c) 2004-2014
33 * $Id$
34 *
35 */
36
37 class CRM_Financial_BAO_FinancialType extends CRM_Financial_DAO_FinancialType {
38
39 /**
40 * static holder for the default LT
41 */
42 static $_defaultContributionType = null;
43
44 /**
45 * class constructor
46 */
47 function __construct( ) {
48 parent::__construct( );
49 }
50
51 /**
52 * Takes a bunch of params that are needed to match certain criteria and
53 * retrieves the relevant objects. Typically the valid params are only
54 * contact_id. We'll tweak this function to be more full featured over a period
55 * of time. This is the inverse function of create. It also stores all the retrieved
56 * values in the default array
57 *
58 * @param array $params (reference ) an assoc array of name/value pairs
59 * @param array $defaults (reference ) an assoc array to hold the flattened values
60 *
61 * @return object CRM_Contribute_BAO_ContributionType object
62 * @access public
63 * @static
64 */
65 static function retrieve( &$params, &$defaults ) {
66 $financialType = new CRM_Financial_DAO_FinancialType( );
67 $financialType->copyValues( $params );
68 if ($financialType->find(true)) {
69 CRM_Core_DAO::storeValues( $financialType, $defaults );
70 return $financialType;
71 }
72 return null;
73 }
74
75 /**
76 * update the is_active flag in the db
77 *
78 * @param int $id id of the database record
79 * @param boolean $is_active value we want to set the is_active field
80 *
81 * @return Object DAO object on sucess, null otherwise
82 * @static
83 */
84 static function setIsActive( $id, $is_active ) {
85 return CRM_Core_DAO::setFieldValue( 'CRM_Financial_DAO_FinancialType', $id, 'is_active', $is_active );
86 }
87
88 /**
89 * function to add the financial types
90 *
91 * @param array $params reference array contains the values submitted by the form
92 * @param array $ids reference array contains the id
93 *
94 * @access public
95 * @static
96 * @return object
97 */
98 static function add(&$params, &$ids = array()) {
99 if(empty($params['id'])) {
100 $params['is_active'] = CRM_Utils_Array::value('is_active', $params, false);
101 $params['is_deductible'] = CRM_Utils_Array::value('is_deductible', $params, false);
102 $params['is_reserved'] = CRM_Utils_Array::value('is_reserved', $params, false);
103 }
104
105 // action is taken depending upon the mode
106 $financialType = new CRM_Financial_DAO_FinancialType();
107 $financialType->copyValues($params);
108 if (!empty($ids['financialType'])) {
109 $financialType->id = CRM_Utils_Array::value('financialType', $ids);
110 }
111 $financialType->save();
112 // CRM-12470
113 if (empty($ids['financialType']) && empty($params['id'])) {
114 $titles = CRM_Financial_BAO_FinancialTypeAccount::createDefaultFinancialAccounts($financialType);
115 $financialType->titles = $titles;
116 }
117 return $financialType;
118 }
119
120 /**
121 * Function to delete financial Types
122 *
123 * @param int $contributionTypeId
124 * @static
125 */
126 static function del($financialTypeId) {
127 $financialType = new CRM_Financial_DAO_FinancialType( );
128 $financialType->id = $financialTypeId;
129 $financialType->find(true);
130 // tables to ingore checks for financial_type_id
131 $ignoreTables = array('CRM_Financial_DAO_EntityFinancialAccount');
132
133 //TODO: if (!$financialType->find(true)) {
134
135 // ensure that we have no objects that have an FK to this financial type id TODO: that cannot be null
136 $occurrences = $financialType->findReferences();
137 if ($occurrences) {
138 $tables = array();
139 foreach ($occurrences as $occurence) {
140 $className = get_class($occurence);
141 if (!in_array($className, $ignoreTables)) {
142 $tables[] = $className;
143 }
144 }
145 if (!empty($tables)) {
146 $message = ts('The following tables have an entry for this financial type: %1', array('%1' => implode(', ', $tables)));
147
148 $errors = array();
149 $errors['is_error'] = 1;
150 $errors['error_message'] = $message;
151 return $errors;
152 }
153 }
154
155 //delete from financial Type table
156 $financialType->delete();
157
158 $entityFinancialType = new CRM_Financial_DAO_EntityFinancialAccount( );
159 $entityFinancialType->entity_id = $financialTypeId;
160 $entityFinancialType->entity_table = 'civicrm_financial_type';
161 $entityFinancialType->delete();
162 return FALSE;
163 }
164
165 /**
166 * to fetch financial type having relationship as Income Account is
167 *
168 *
169 * @return array all financial type with income account is relationship
170 * @static
171 */
172 static function getIncomeFinancialType() {
173 // Financial Type
174 $financialType = CRM_Contribute_PseudoConstant::financialType();
175 $revenueFinancialType = array();
176 $relationTypeId = key(CRM_Core_PseudoConstant::accountOptionValues('account_relationship', NULL, " AND v.name LIKE 'Income Account is' "));
177 CRM_Core_PseudoConstant::populate(
178 $revenueFinancialType,
179 'CRM_Financial_DAO_EntityFinancialAccount',
180 $all = True,
181 $retrieve = 'entity_id',
182 $filter = null,
183 "account_relationship = $relationTypeId AND entity_table = 'civicrm_financial_type' "
184 );
185
186 foreach ($financialType as $key => $financialTypeName) {
187 if (!in_array($key, $revenueFinancialType)) {
188 unset($financialType[$key]);
189 }
190 }
191 return $financialType;
192 }
193 }
194