Merge pull request #4820 from kurund/CRM-15705
[civicrm-core.git] / CRM / Batch / Form / Batch.php
1 <?php
2 /*
3 +--------------------------------------------------------------------+
4 | CiviCRM version 4.6 |
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 batch entry
38 *
39 */
40 class CRM_Batch_Form_Batch extends CRM_Admin_Form {
41
42 public function preProcess() {
43 parent::preProcess();
44 // set the usercontext
45 $session = CRM_Core_Session::singleton();
46 $session->replaceUserContext(CRM_Utils_System::url('civicrm/batch', "reset=1"));
47 }
48
49 /**
50 * Build the form object
51 *
52 * @return void
53 */
54 public function buildQuickForm() {
55 parent::buildQuickForm();
56
57 if ($this->_action & CRM_Core_Action::DELETE) {
58 return;
59 }
60
61 $this->applyFilter('__ALL__', 'trim');
62 $attributes = CRM_Core_DAO::getAttribute('CRM_Batch_DAO_Batch');
63 $this->add('text', 'title', ts('Batch Name'), $attributes['name'], TRUE);
64
65 $batchTypes = CRM_Batch_BAO_Batch::buildOptions('type_id');
66
67 $type = $this->add('select', 'type_id', ts('Type'), $batchTypes);
68
69 if ($this->_action & CRM_Core_Action::UPDATE) {
70 $type->freeze();
71 }
72
73 $this->add('textarea', 'description', ts('Description'), $attributes['description']);
74 $this->add('text', 'item_count', ts('Number of Items'), $attributes['item_count'], TRUE);
75 $this->add('text', 'total', ts('Total Amount'), $attributes['total'], TRUE);
76 }
77
78 /**
79 * Set default values for the form.
80 *
81 *
82 * @return void
83 */
84 public function setDefaultValues() {
85 $defaults = array();
86
87 if ($this->_action & CRM_Core_Action::ADD) {
88 // set batch name default
89 $defaults['title'] = CRM_Batch_BAO_Batch::generateBatchName();
90 }
91 else {
92 $defaults = $this->_values;
93 }
94 return $defaults;
95 }
96
97 /**
98 * Process the form submission
99 *
100 *
101 * @return void
102 */
103 public function postProcess() {
104 $params = $this->controller->exportValues($this->_name);
105 if ($this->_action & CRM_Core_Action::DELETE) {
106 CRM_Core_Session::setStatus("", ts("Batch Deleted"), "success");
107 CRM_Batch_BAO_Batch::deleteBatch($this->_id);
108 return;
109 }
110
111 if ($this->_id) {
112 $params['id'] = $this->_id;
113 }
114 else {
115 $session = CRM_Core_Session::singleton();
116 $params['created_id'] = $session->get('userID');
117 $params['created_date'] = CRM_Utils_Date::processDate( date( "Y-m-d" ), date( "H:i:s" ) );
118 }
119
120 // always create with data entry status
121 $params['status_id'] = CRM_Core_OptionGroup::getValue('batch_status','Data Entry', 'name');
122 $batch = CRM_Batch_BAO_Batch::create($params);
123
124 // redirect to batch entry page.
125 $session = CRM_Core_Session::singleton();
126 if ( $this->_action & CRM_Core_Action::ADD ) {
127 $session->replaceUserContext(CRM_Utils_System::url('civicrm/batch/entry', "id={$batch->id}&reset=1&action=add"));
128 }
129 else {
130 $session->replaceUserContext(CRM_Utils_System::url('civicrm/batch/entry', "id={$batch->id}&reset=1"));
131 }
132 }
133 }