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