Merge branch '4.4' of https://github.com/civicrm/civicrm-core into 4.5
[civicrm-core.git] / CRM / Financial / Form / FinancialBatch.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 /**
37 * This class generates form components for Accounting Batch
38 *
39 */
40 class CRM_Financial_Form_FinancialBatch extends CRM_Contribute_Form {
41
42 /**
43 * The financial batch id, used when editing the field
44 *
45 * @var int
46 * @access protected
47 */
48 protected $_id;
49
50 /**
51 * Function to set variables up before form is built
52 *
53 * @return void
54 * @access public
55 */
56 public function preProcess() {
57 $context = CRM_Utils_Request::retrieve('context', 'String', $this);
58 $this->set("context", $context);
59 $this->_id = CRM_Utils_Request::retrieve('id', 'Positive', $this);
60 parent::preProcess();
61 $session = CRM_Core_Session::singleton();
62 if ($this->_id) {
63 $permissions = array(
64 CRM_Core_Action::UPDATE => array(
65 'permission' => array(
66 'edit own manual batches',
67 'edit all manual batches',
68 ),
69 'actionName' => 'edit'),
70 CRM_Core_Action::DELETE => array(
71 'permission' => array(
72 'delete own manual batches',
73 'delete all manual batches',
74 ),
75 'actionName' => 'delete'),
76 );
77
78 $createdID = CRM_Core_DAO::getFieldValue('CRM_Batch_DAO_Batch', $this->_id, 'created_id');
79 if (!empty($permissions[$this->_action])) {
80 $this->checkPermissions($this->_action, $permissions[$this->_action]['permission'], $createdID, $session->get('userID'), $permissions[$this->_action]['actionName'] );
81 }
82 }
83 }
84
85 /**
86 * Function to build the form
87 *
88 * @return void
89 * @access public
90 */
91 public function buildQuickForm() {
92 parent::buildQuickForm();
93 $this->setPageTitle(ts('Financial Batch'));
94
95 if (isset( $this->_id)) {
96 $this->_title = CRM_Core_DAO::getFieldValue('CRM_Batch_DAO_Batch', $this->_id, 'title');
97 CRM_Utils_System::setTitle($this->_title .' - '.ts( 'Accounting Batch'));
98 $this->assign('batchTitle', $this->_title);
99 $contactID = CRM_Core_DAO::getFieldValue('CRM_Batch_DAO_Batch', $this->_id, 'created_id');
100 $contactName = CRM_Contact_BAO_Contact::displayName($contactID);
101 $this->assign('contactName', $contactName);
102 }
103
104 $this->applyFilter('__ALL__', 'trim');
105
106 $this->addButtons(
107 array(
108 array(
109 'type' => 'next',
110 'name' => ts('Save'),
111 'isDefault' => true,
112 ),
113 array(
114 'type' => 'next',
115 'name' => ts('Save and New'),
116 'subName' => 'new',
117 ),
118 array(
119 'type' => 'cancel',
120 'name' => ts('Cancel'),
121 ),
122 )
123 );
124
125 if ($this->_action & CRM_Core_Action::UPDATE && $this->_id) {
126 $batchStatus = CRM_Core_PseudoConstant::get('CRM_Batch_DAO_Batch', 'status_id');
127
128 //unset exported status
129 $exportedStatusId = CRM_Utils_Array::key('Exported', $batchStatus );
130 unset($batchStatus[$exportedStatusId]);
131 $this->add('select', 'status_id', ts('Batch Status'), array('' => ts('- select -')) + $batchStatus, true);
132 $this->freeze(array('status_id'));
133 }
134
135 $attributes = CRM_Core_DAO::getAttribute('CRM_Batch_DAO_Batch');
136
137 $this->add('text', 'title', ts('Batch Name'), $attributes['name'], true);
138
139 $this->add('textarea', 'description', ts('Description'), $attributes['description']);
140
141 $this->add('select', 'payment_instrument_id', ts('Payment Instrument'),
142 array('' => ts('- select -')) + CRM_Contribute_PseudoConstant::paymentInstrument(),
143 false
144 );
145
146 $this->add('text', 'total', ts('Total Amount'), $attributes['total']);
147
148 $this->add('text', 'item_count', ts('Number of Transactions'), $attributes['item_count']);
149 $this->addFormRule(array('CRM_Financial_Form_FinancialBatch', 'formRule'), $this);
150 }
151
152 /**
153 * This function sets the default values for the form. Note that in edit/view mode
154 * the default values are retrieved from the database
155 *
156 * @access public
157 *
158 * @return void
159 */
160 function setDefaultValues() {
161 $defaults = parent::setDefaultValues();
162
163 if ($this->_id) {
164 $this->assign('modified_date', $defaults['modified_date']);
165 $this->assign('created_date', $defaults['created_date']);
166 }
167 else {
168 // set batch name default
169 $defaults['title'] = CRM_Batch_BAO_Batch::generateBatchName();
170 }
171
172 return $defaults;
173 }
174
175 /**
176 * global validation rules for the form
177 *
178 * @param $values
179 * @param $files
180 * @param $self
181 *
182 * @internal param array $fields posted values of the form
183 *
184 * @return array list of errors to be posted back to the form
185 * @static
186 * @access public
187 */
188 static function formRule($values, $files, $self) {
189 $errors = array();
190 if (!empty($values['contact_name']) && !is_numeric($values['created_id'])) {
191 $errors['contact_name'] = ts('Please select a valid contact.');
192 }
193 if ($values['item_count'] && (!is_numeric($values['item_count']) || $values['item_count'] < 1)) {
194 $errors['item_count'] = ts('Number of Transactions should a positive number');
195 }
196 if ($values['total'] && (!is_numeric($values['total']) || $values['total'] <= 0)) {
197 $errors['total'] = ts('Total Amount should be a positive number');
198 }
199 if (!empty($values['created_date']) && date('Y-m-d') < date('Y-m-d', strtotime($values['created_date']))) {
200 $errors['created_date'] = ts('Created date cannot be greater than current date');
201 }
202 $batchName = $values['title'];
203 if (!CRM_Core_DAO::objectExists($batchName, 'CRM_Batch_DAO_Batch', $self->_id)) {
204 $errors['title'] = ts('This name already exists in database. Batch names must be unique.');
205 }
206 return CRM_Utils_Array::crmIsEmptyArray($errors) ? true : $errors;
207 }
208
209 /**
210 * Function to process the form
211 *
212 * @access public
213 * @return void
214 */
215 public function postProcess() {
216 $session = CRM_Core_Session::singleton();
217 $ids = array();
218 $params = $this->exportValues();
219 $batchStatus = CRM_Core_PseudoConstant::get('CRM_Batch_DAO_Batch', 'status_id');
220 if ($this->_id) {
221 $ids['batchID'] = $this->_id;
222 $params['id'] = $this->_id;
223 }
224
225 // store the submitted values in an array
226 $params['modified_date'] = date('YmdHis');
227 $params['modified_id'] = $session->get('userID');
228 if (!empty($params['created_date'])) {
229 $params['created_date'] = CRM_Utils_Date::processDate($params['created_date']);
230 }
231
232 if ($this->_action & CRM_Core_Action::ADD) {
233 $batchMode = CRM_Core_PseudoConstant::get('CRM_Batch_DAO_Batch', 'mode_id', array('labelColumn' => 'name'));
234 $params['mode_id'] = CRM_Utils_Array::key('Manual Batch', $batchMode);
235 $params['status_id'] = CRM_Utils_Array::key('Open', $batchStatus);
236 $params['created_date'] = date('YmdHis');
237 $params['created_id'] = $session->get('userID');
238 $details = "{$params['title']} batch has been created by this contact.";
239 $activityTypeName = 'Create Batch';
240 }
241 elseif ($this->_action & CRM_Core_Action::UPDATE && $this->_id) {
242 $details = "{$params['title']} batch has been edited by this contact.";
243 if (CRM_Utils_Array::value($params['status_id'], $batchStatus) == 'Closed') {
244 $details = "{$params['title']} batch has been closed by this contact.";
245 }
246 $activityTypeName = 'Edit Batch';
247 }
248
249 $batch = CRM_Batch_BAO_Batch::create($params, $ids, 'financialBatch');
250
251 $activityTypes = CRM_Core_PseudoConstant::activityType(TRUE, FALSE, FALSE, 'name');
252
253 //create activity.
254 $activityParams = array(
255 'activity_type_id' => array_search($activityTypeName, $activityTypes),
256 'subject' => $batch->title ."- Batch",
257 'status_id' => 2,
258 'priority_id' => 2,
259 'activity_date_time' => date('YmdHis'),
260 'source_contact_id' => $session->get('userID'),
261 'source_contact_qid' => $session->get('userID'),
262 'details' => $details,
263 );
264
265 CRM_Activity_BAO_Activity::create($activityParams);
266
267 $buttonName = $this->controller->getButtonName();
268
269 $context = $this->get("context");
270 if ($batch->title) {
271 CRM_Core_Session::setStatus(ts("'%1' batch has been saved.", array(1 => $batch->title)), ts('Saved'), 'success');
272 }
273 if ($buttonName == $this->getButtonName('next', 'new') & $this->_action == CRM_Core_Action::UPDATE) {
274 $session->replaceUserContext(CRM_Utils_System::url('civicrm/financial/batch',
275 "reset=1&action=add&context=1"));
276 }
277 elseif ($buttonName == $this->getButtonName('next', 'new')) {
278 $session->replaceUserContext(CRM_Utils_System::url('civicrm/financial/batch',
279 "reset=1&action=add"));
280 }
281 elseif (CRM_Utils_Array::value($batch->status_id, $batchStatus) == 'Closed') {
282 $session->replaceUserContext(CRM_Utils_System::url('civicrm', 'reset=1'));
283 }
284 elseif (($buttonName == $this->getButtonName('next') & $this->_action == CRM_Core_Action::UPDATE) ||
285 ($buttonName == $this->getButtonName('next') & $this->_action == CRM_Core_Action::ADD & $context == 1 )) {
286 $session->replaceUserContext(CRM_Utils_System::url('civicrm/financial/financialbatches',
287 "reset=1&batchStatus=1"));
288 }
289 else {
290 $session->replaceUserContext(CRM_Utils_System::url('civicrm/batchtransaction',
291 "reset=1&bid={$batch->id}"));
292 }
293 }
294
295 /**
296 * global validation rules for the form
297 *
298 * @param $action
299 * @param $permissions
300 * @param $createdID
301 * @param $userContactID
302 * @param $actionName
303 *
304 * @internal param array $fields posted values of the form
305 *
306 * @return array list of errors to be posted back to the form
307 * @static
308 * @access public
309 */
310 function checkPermissions($action, $permissions, $createdID, $userContactID, $actionName) {
311 if ((CRM_Core_Permission::check($permissions[0]) || CRM_Core_Permission::check($permissions[1]))) {
312 if (CRM_Core_Permission::check($permissions[0]) && $userContactID != $createdID && !CRM_Core_Permission::check($permissions[1])) {
313 CRM_Core_Error::statusBounce(ts('You dont have permission to %1 this batch'), array(1 => $actionName));
314 }
315 }
316 else {
317 CRM_Core_Error::statusBounce(ts('You dont have permission to %1 this batch'), array(1 => $actionName));
318 }
319 }
320
321 }
322
323