Merge pull request #1493 from davecivicrm/CRM-13257
[civicrm-core.git] / CRM / Batch / Form / Batch.php
CommitLineData
6a488035
TO
1<?php
2/*
3 +--------------------------------------------------------------------+
4 | CiviCRM version 4.3 |
5 +--------------------------------------------------------------------+
6 | Copyright CiviCRM LLC (c) 2004-2013 |
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-2013
32 * $Id$
33 *
34 */
35
36/**
37 * This class generates form components for batch entry
38 *
39 */
40class 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 * Function to build the form
51 *
52 * @return None
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_Core_PseudoConstant::getBatchType();
67 // unset non-related types
68 unset($batchTypes[3]);
69 unset($batchTypes[4]);
70 $type = $this->add('select', 'type_id', ts('Type'), $batchTypes);
71
72 if ($this->_action & CRM_Core_Action::UPDATE) {
73 $type->freeze();
74 }
75
76 $this->add('textarea', 'description', ts('Description'), $attributes['description']);
77 $this->add('text', 'item_count', ts('Number of items'), $attributes['item_count'], TRUE);
78 $this->add('text', 'total', ts('Total Amount'), $attributes['total'], TRUE);
79 }
80
81 /**
82 * This function sets the default values for the form.
83 *
84 * @access public
85 *
86 * @return None
87 */
88 function setDefaultValues() {
89 $defaults = array();
90
91 if ($this->_action & CRM_Core_Action::ADD) {
92 // set batch name default
93 $defaults['title'] = CRM_Batch_BAO_Batch::generateBatchName();
94 }
95 else {
96 $defaults = $this->_values;
97 }
98
99
100 return $defaults;
101 }
102
103 /**
104 * Function to process the form
105 *
106 * @access public
107 *
108 * @return None
109 */
110 public function postProcess() {
111 $params = $this->controller->exportValues($this->_name);
112 if ($this->_action & CRM_Core_Action::DELETE) {
113 CRM_Core_Session::setStatus("", ts("Batch Deleted"), "success");
114 CRM_Batch_BAO_Batch::deleteBatch($this->_id);
115 return;
116 }
117
118 if ($this->_id) {
119 $params['id'] = $this->_id;
120 }
121 else {
122 $session = CRM_Core_Session::singleton();
123 $params['created_id'] = $session->get('userID');
124 $params['created_date'] = CRM_Utils_Date::processDate( date( "Y-m-d" ), date( "H:i:s" ) );
125 }
126
127 // always create with data entry status
128 $params['status_id'] = 3;
129 $batch = CRM_Batch_BAO_Batch::create($params);
130
131 // redirect to batch entry page.
132 $session = CRM_Core_Session::singleton();
133 if ( $this->_action & CRM_Core_Action::ADD ) {
134 $session->replaceUserContext(CRM_Utils_System::url('civicrm/batch/entry', "id={$batch->id}&reset=1&action=add"));
135 }
136 else {
137 $session->replaceUserContext(CRM_Utils_System::url('civicrm/batch/entry', "id={$batch->id}&reset=1"));
138 }
139 }
140 //end of function
141}
142