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