INFRA-132 - Drupal.WhiteSpace.ScopeIndent.Incorrect
[civicrm-core.git] / CRM / Financial / Form / BatchTransaction.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 Financial Type
38 *
39 */
40 class CRM_Financial_Form_BatchTransaction extends CRM_Contribute_Form {
41 static $_links = NULL;
42 static $_entityID;
43
44 /**
45 * Batch status
46 * @var
47 */
48 protected $_batchStatusId;
49
50 public function preProcess() {
51 self::$_entityID = CRM_Utils_Request::retrieve('bid', 'Positive') ? CRM_Utils_Request::retrieve('bid', 'Positive') : $_POST['batch_id'];
52 $this->assign('entityID', self::$_entityID);
53 if (isset(self::$_entityID)) {
54 $this->_batchStatusId = CRM_Core_DAO::getFieldValue('CRM_Batch_BAO_Batch', self::$_entityID, 'status_id');
55 $this->assign('statusID', $this->_batchStatusId);
56
57 $batchTitle = CRM_Core_DAO::getFieldValue('CRM_Batch_BAO_Batch', self::$_entityID, 'title');
58 CRM_Utils_System::setTitle(ts('Accounting Batch - %1', array(1 => $batchTitle)));
59
60 $columnHeaders = array(
61 'created_by' => ts('Created By'),
62 'status' => ts('Status'),
63 'description' => ts('Description'),
64 'payment_instrument' => ts('Payment Instrument'),
65 'item_count' => ts('Entered Transactions'),
66 'assigned_item_count' => ts('Assigned Transactions'),
67 'total' => ts('Entered Total'),
68 'assigned_total' => ts('Assigned Total'),
69 'opened_date' => ts('Opened'),
70 );
71 $this->assign('columnHeaders', $columnHeaders);
72 }
73 }
74
75 /**
76 * Build the form object
77 *
78 * @return void
79 */
80 public function buildQuickForm() {
81 if ($this->_batchStatusId == 2) {
82 $this->add('submit', 'export_batch', ts('Export Batch'));
83 }
84
85 // do not build rest of form unless it is open batch
86 if ($this->_batchStatusId != 1) {
87 return;
88 }
89
90 parent::buildQuickForm();
91 $this->add('submit', 'close_batch', ts('Close Batch'));
92 $this->add('submit', 'export_batch', ts('Close & Export Batch'));
93
94 // text for sort_name
95 $this->addElement('text',
96 'sort_name',
97 ts('Contributor Name or Email'),
98 CRM_Core_DAO::getAttribute('CRM_Contact_DAO_Contact',
99 'sort_name'
100 )
101 );
102
103 $this->_group = CRM_Core_PseudoConstant::nestedGroup();
104
105 // multiselect for groups
106 if ($this->_group) {
107 $this->add('select', 'group', ts('Groups'), $this->_group, FALSE,
108 array('id' => 'group', 'multiple' => 'multiple', 'class' => 'crm-select2')
109 );
110 }
111 $contactTags = CRM_Core_BAO_Tag::getTags();
112
113 if ($contactTags) {
114 $this->add('select', 'contact_tags', ts('Tags'), $contactTags, FALSE,
115 array('id' => 'contact_tags', 'multiple' => 'multiple', 'class' => 'crm-select2')
116 );
117 }
118 CRM_Contribute_BAO_Query::buildSearchForm($this);
119 $this->addElement('checkbox', 'toggleSelects', NULL, NULL);
120
121 $this->add('select',
122 'trans_remove',
123 ts('Task'),
124 array('' => ts('- actions -')) + array('Remove' => ts('Remove from Batch')));
125
126 $this->add('submit', 'rSubmit', ts('Go'),
127 array(
128 'class' => 'crm-form-submit',
129 'id' => 'GoRemove',
130 ));
131
132 self::$_entityID = CRM_Utils_Request::retrieve('bid', 'Positive');
133
134 $this->addButtons(
135 array(
136 array(
137 'type' => 'submit',
138 'name' => ts('Search'),
139 'isDefault' => TRUE,
140 ),
141 )
142 );
143
144 $this->addElement('checkbox', 'toggleSelect', NULL, NULL);
145 $this->add('select',
146 'trans_assign',
147 ts('Task'),
148 array('' => ts('- actions -')) + array('Assign' => ts('Assign to Batch')));
149
150 $this->add('submit', 'submit', ts('Go'),
151 array(
152 'class' => 'crm-form-submit',
153 'id' => 'Go',
154 ));
155 $this->applyFilter('__ALL__', 'trim');
156
157 $this->addElement('hidden', 'batch_id', self::$_entityID);
158
159 $this->add('text', 'name', ts('Batch Name'));
160 }
161
162 public function setDefaultValues() {
163 // do not setdefault unless it is open batch
164 if ($this->_batchStatusId != 1) {
165 return;
166 }
167 if (isset(self::$_entityID)) {
168 $paymentInstrumentID = CRM_Core_DAO::getFieldValue('CRM_Batch_BAO_Batch', self::$_entityID, 'payment_instrument_id');
169 $defaults['contribution_payment_instrument_id'] = $paymentInstrumentID;
170 $this->assign('paymentInstrumentID', $paymentInstrumentID);
171 }
172 return $defaults;
173 }
174
175 /**
176 * @return array|null
177 */
178 public function &links() {
179 if (!(self::$_links)) {
180 self::$_links = array(
181 'view' => array(
182 'name' => ts('View'),
183 'url' => 'civicrm/contact/view/contribution',
184 'qs' => 'reset=1&id=%%contid%%&cid=%%cid%%&action=view&context=contribution&selectedChild=contribute',
185 'title' => ts('View Contribution'),
186 ),
187 'assign' => array(
188 'name' => ts('Assign'),
189 'ref' => 'disable-action',
190 'title' => ts('Assign Transaction'),
191 'extra' => 'onclick = "assignRemove( %%id%%,\'' . 'assign' . '\' );"',
192 ),
193 );
194 }
195 return self::$_links;
196 }
197
198 }