Merge pull request #2758 from pratik-joshi/CRM-14278
[civicrm-core.git] / CRM / Financial / Form / FinancialTypeAccount.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
36/**
37 * This class generates form components for Financial Type Account
03e04002 38 *
6a488035
TO
39 */
40class CRM_Financial_Form_FinancialTypeAccount extends CRM_Contribute_Form {
03e04002 41
6a488035
TO
42 /**
43 * the financial type id saved to the session for an update
44 *
45 * @var int
46 * @access protected
47 */
48 protected $_aid;
03e04002 49
6a488035
TO
50 /**
51 * The financial type accounts id, used when editing the field
52 *
53 * @var int
54 * @access protected
55 */
56 protected $_id;
03e04002 57
6a488035
TO
58 /**
59 * The name of the BAO object for this form
60 *
61 * @var string
62 */
63 protected $_BAOName;
03e04002 64
7d289724
PN
65 /**
66 * Flag if its a AR account type
67 *
68 * @var boolean
69 */
70 protected $_isARFlag = FALSE;
8ef12e64 71
6a488035
TO
72 /**
73 * Function to set variables up before form is built
74 *
75 * @return void
76 * @access public
77 */
78 public function preProcess() {
79 $this->_aid = CRM_Utils_Request::retrieve('aid', 'Positive', $this);
d0f466d1
KJ
80 $this->_id = CRM_Utils_Request::retrieve('id', 'Positive', $this);
81
6a488035 82 if (!$this->_id && ($this->_action & CRM_Core_Action::UPDATE)) {
7d289724 83 $this->_id = CRM_Utils_Type::escape($this->_id, 'Positive');
6a488035 84 }
8ef12e64 85 $url = CRM_Utils_System::url('civicrm/admin/financial/financialType/accounts',
86 "reset=1&action=browse&aid={$this->_aid}");
87
6a488035
TO
88 $this->_BAOName = 'CRM_Financial_BAO_FinancialTypeAccount';
89 if ($this->_aid && ($this->_action & CRM_Core_Action::ADD)) {
90 $this->_title = CRM_Core_DAO::getFieldValue('CRM_Financial_DAO_FinancialType', $this->_aid, 'name');
91 CRM_Utils_System::setTitle($this->_title . ' - ' . ts('Financial Accounts'));
03e04002 92
8ef12e64 93 $session = CRM_Core_Session::singleton();
6a488035 94 $session->pushUserContext($url);
8ef12e64 95 }
7d289724 96 // CRM-12492
8ef12e64 97 if (!($this->_action & CRM_Core_Action::ADD)) {
7d289724
PN
98 $relationTypeId = key(CRM_Core_PseudoConstant::accountOptionValues('account_relationship', NULL, " AND v.name LIKE 'Accounts Receivable Account is' "));
99 $accountRelationship = CRM_Core_DAO::getFieldValue('CRM_Financial_DAO_EntityFinancialAccount', $this->_id, 'account_relationship');
100 if ($accountRelationship == $relationTypeId) {
101 $this->_isARFlag = TRUE;
102 if ($this->_action & CRM_Core_Action::DELETE) {
8ef12e64 103 CRM_Core_Session::setStatus(ts("Selected financial type account with 'Accounts Receivable Account is' account relationship cannot be deleted."),
7d289724
PN
104 '', 'error');
105 CRM_Utils_System::redirect($url);
106 }
107 }
03e04002 108 }
6a488035
TO
109 if ($this->_id) {
110 $financialAccount = CRM_Core_DAO::getFieldValue('CRM_Financial_DAO_EntityFinancialAccount', $this->_id, 'financial_account_id');
111 $fieldTitle = CRM_Core_DAO::getFieldValue('CRM_Financial_DAO_FinancialAccount', $financialAccount, 'name');
7d289724 112 CRM_Utils_System::setTitle($fieldTitle . ' - '. ts('Financial Type Accounts'));
6a488035 113 }
03e04002 114
6a488035
TO
115 $breadCrumb = array(
116 array('title' => ts('Financial Type Accounts'),
117 'url' => $url,
118 )
119 );
120 CRM_Utils_System::appendBreadCrumb($breadCrumb);
121 }
03e04002 122
6a488035
TO
123 /**
124 * Function to build the form
125 *
355ba699 126 * @return void
6a488035
TO
127 * @access public
128 */
129 public function buildQuickForm() {
130 if ($this->_action & CRM_Core_Action::DELETE) {
131 $this->addButtons(array(
132 array(
133 'type' => 'next',
134 'name' => ts('Delete Financial Account Type'),
135 'spacing' => '&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;',
03e04002 136 'isDefault' => TRUE
6a488035
TO
137 ),
138 array(
139 'type' => 'cancel',
140 'name' => ts('Cancel'))
141 )
142 );
143 return;
144 }
03e04002 145
6a488035 146 parent::buildQuickForm();
03e04002 147
6a488035
TO
148 if (isset($this->_id)) {
149 $params = array('id' => $this->_id);
150 CRM_Financial_BAO_FinancialTypeAccount::retrieve($params, $defaults);
151 $this->setDefaults($defaults);
152 $financialAccountTitle = CRM_Core_DAO::getFieldValue('CRM_Financial_DAO_FinancialAccount', $defaults['financial_account_id'], 'name');
153 }
03e04002 154
6a488035 155 $this->applyFilter('__ALL__', 'trim');
03e04002 156
6a488035
TO
157 if ($this->_action == CRM_Core_Action::UPDATE) {
158 $this->assign('aid', $this->_id);
159 //hidden field to catch the group id in profile
160 $this->add('hidden', 'financial_type_id', $this->_aid);
03e04002 161
6a488035
TO
162 //hidden field to catch the field id in profile
163 $this->add('hidden', 'account_type_id', $this->_id);
164 }
7611ae71 165 $AccountTypeRelationship = CRM_Core_PseudoConstant::get('CRM_Financial_DAO_EntityFinancialAccount', 'account_relationship');
6a488035 166 if (!empty($AccountTypeRelationship)) {
d0f466d1 167 $element = $this->add('select',
03e04002 168 'account_relationship',
6a488035
TO
169 ts('Financial Account Relationship'),
170 array('select' => '- select -') + $AccountTypeRelationship,
03e04002 171 TRUE
6a488035
TO
172 );
173 }
03e04002 174
7d289724
PN
175 if ($this->_isARFlag) {
176 $element->freeze();
177 }
d0f466d1 178
6a488035 179 if ($this->_action == CRM_Core_Action::ADD) {
8cc574cf 180 if (!empty($this->_submitValues['account_relationship']) || !empty($this->_submitValues['financial_account_id'])) {
03e04002 181 $financialAccountType = array(
6a488035
TO
182 '5' => 5, //expense
183 '3' => 1, //AR relation
184 '1' => 3, //revenue
185 '6' => 1, //Asset
186 '7' => 4, //cost of sales
187 '8' => 1, //premium inventory
188 '9' => 3 //discount account is
189 );
03e04002 190
b800df93 191 $financialAccountType = CRM_Utils_Array::value($this->_submitValues['account_relationship'], $financialAccountType);
6a488035 192 $result = CRM_Contribute_PseudoConstant::financialAccount(NULL, $financialAccountType);
03e04002 193
6a488035
TO
194 $financialAccountSelect = array('' => ts('- select -')) + $result;
195 }
196 else {
197 $financialAccountSelect = array(
198 'select' => ts('- select -')
199 ) + CRM_Contribute_PseudoConstant::financialAccount();
200 }
201 }
202 if ($this->_action == CRM_Core_Action::UPDATE) {
03e04002 203 $financialAccountType = array(
6a488035
TO
204 '5' => 5, //expense
205 '3' => 1, //AR relation
206 '1' => 3, //revenue
207 '6' => 1, //Asset
208 '7' => 4, //cost of sales
209 '8' => 1, //premium inventory
210 '9' => 3 //discount account is
211 );
03e04002 212
6a488035
TO
213 $financialAccountType = $financialAccountType[$this->_defaultValues['account_relationship']];
214 $result = CRM_Contribute_PseudoConstant::financialAccount(NULL, $financialAccountType);
03e04002 215
6a488035 216 $financialAccountSelect = array('' => ts('- select -')) + $result;
6a488035 217 }
dae00956 218
03e04002 219 $this->add('select',
220 'financial_account_id',
221 ts('Financial Account'),
6a488035
TO
222 $financialAccountSelect,
223 TRUE
224 );
225
226 $this->addButtons(array(
227 array(
228 'type' => 'next',
229 'name' => ts('Save'),
230 'isDefault' => TRUE
231 ),
232 array(
233 'type' => 'next',
234 'name' => ts('Save and New'),
235 'subName' => 'new'
236 ),
237 array (
238 'type' => 'cancel',
239 'name' => ts('Cancel')
240 ))
241 );
242 $this->addFormRule(array('CRM_Financial_Form_FinancialTypeAccount', 'formRule'), $this);
243 }
03e04002 244
6a488035
TO
245 /**
246 * global validation rules for the form
247 *
248 * @param array $fields posted values of the form
249 *
250 * @return array list of errors to be posted back to the form
251 * @static
252 * @access public
253 */
03e04002 254 static function formRule($values, $files, $self) {
6a488035
TO
255 $errorMsg = array();
256 $errorFlag = FALSE;
257 if ($self->_action == CRM_Core_Action::DELETE) {
7611ae71 258 $relationValues = CRM_Core_PseudoConstant::get('CRM_Financial_DAO_EntityFinancialAccount', 'account_relationship');
6a488035
TO
259 if (CRM_Utils_Array::value('financial_account_id', $values) != 'select') {
260 if ($relationValues[$values['account_relationship']] == 'Premiums Inventory Account is' || $relationValues[$values['account_relationship']] == 'Cost of Sales Account is') {
261 $premiumsProduct = CRM_Core_DAO::getFieldValue('CRM_Contribute_DAO_PremiumsProduct', $values['financial_type_id'], 'product_id', 'financial_type_id');
262 $product = CRM_Core_DAO::getFieldValue('CRM_Contribute_DAO_Product', $values['financial_type_id'], 'name', 'financial_type_id');
263 if (!empty($premiumsProduct) || !empty($product)) {
264 $errorMsg['account_relationship'] = 'You cannot remove ' . $relationValues[$values['account_relationship']] . ' relationship while the Financial Type is used for a Premium.';
265 }
266 }
267 }
268 }
269 if (CRM_Utils_Array::value('account_relationship', $values) == 'select') {
270 $errorMsg['account_relationship'] = 'Financial Account relationship is a required field.';
271 }
272 if (CRM_Utils_Array::value('financial_account_id', $values) == 'select') {
273 $errorMsg['financial_account_id'] = 'Financial Account is a required field.';
274 }
8cc574cf 275 if (!empty($values['account_relationship']) && !empty($values['financial_account_id'])) {
03e04002 276 $params = array(
6a488035
TO
277 'account_relationship' => $values['account_relationship'],
278 'entity_id' => $self->_aid
279 );
280 $defaults = array();
281 if ($self->_action == CRM_Core_Action::ADD) {
282 $result = CRM_Financial_BAO_FinancialTypeAccount::retrieve($params, $defaults);
283 if ($result) {
284 $errorFlag = TRUE;
285 }
286 }
287 if ($self->_action == CRM_Core_Action::UPDATE) {
288 if ($values['account_relationship'] == $self->_defaultValues['account_relationship'] && $values['financial_account_id'] == $self->_defaultValues['financial_account_id']) {
289 $errorFlag = FALSE;
290 }
291 else {
292 $params['financial_account_id'] = $values['financial_account_id'];
293 $result = CRM_Financial_BAO_FinancialTypeAccount::retrieve($params, $defaults);
294 if ($result) {
295 $errorFlag = TRUE;
296 }
297 }
03e04002 298 }
299
6a488035
TO
300 if ($errorFlag) {
301 $errorMsg['account_relationship'] = ts('This account relationship already exits');
302 }
303 }
304 return CRM_Utils_Array::crmIsEmptyArray($errorMsg) ? TRUE : $errorMsg;
305 }
03e04002 306
6a488035
TO
307 /**
308 * Function to process the form
309 *
310 * @access public
355ba699 311 * @return void
6a488035
TO
312 */
313 public function postProcess() {
314 if ($this->_action & CRM_Core_Action::DELETE) {
315 CRM_Financial_BAO_FinancialTypeAccount::del($this->_id, $this->_aid);
316 CRM_Core_Session::setStatus(ts('Selected financial type account has been deleted.'));
03e04002 317 }
318 else {
6a488035
TO
319 $params = $ids = array();
320 // store the submitted values in an array
321 $params = $this->exportValues();
03e04002 322
6a488035
TO
323 if ($this->_action & CRM_Core_Action::UPDATE) {
324 $ids['entityFinancialAccount'] = $this->_id;
325 }
326 if ($this->_action & CRM_Core_Action::ADD || $this->_action & CRM_Core_Action::UPDATE) {
03e04002 327 $params['financial_account_id'] = $this->_submitValues['financial_account_id'];
6a488035
TO
328 }
329 $params['entity_table'] = 'civicrm_financial_type';
330 if ($this->_action & CRM_Core_Action::ADD) {
331 $params['entity_id'] = $this->_aid;
332 }
333 $financialTypeAccount = CRM_Financial_BAO_FinancialTypeAccount::add($params, $ids);
334 CRM_Core_Session::setStatus(ts('The financial type Account has been saved.'));
335 }
336
337 $buttonName = $this->controller->getButtonName();
338 $session = CRM_Core_Session::singleton();
339
340 if ($buttonName == $this->getButtonName('next', 'new')) {
341 CRM_Core_Session::setStatus(ts(' You can add another Financial Account Type.'));
03e04002 342 $session->replaceUserContext(CRM_Utils_System::url('civicrm/admin/financial/financialType/accounts',
6a488035 343 "reset=1&action=add&aid={$this->_aid}"));
03e04002 344 }
6a488035 345 else {
03e04002 346 $session->replaceUserContext(CRM_Utils_System::url('civicrm/admin/financial/financialType/accounts',
6a488035 347 "reset=1&action=browse&aid={$this->_aid}"));
03e04002 348 }
6a488035
TO
349 }
350}
351
03e04002 352