Merge pull request #3749 from civicrm/4.4
[civicrm-core.git] / CRM / Financial / Form / BatchTransaction.php
CommitLineData
6a488035 1<?php
6a488035
TO
2/*
3 +--------------------------------------------------------------------+
06b69b18 4 | CiviCRM version 4.5 |
6a488035 5 +--------------------------------------------------------------------+
06b69b18 6 | Copyright CiviCRM LLC (c) 2004-2014 |
6a488035
TO
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
06b69b18 31 * @copyright CiviCRM LLC (c) 2004-2014
6a488035
TO
32 * $Id$
33 *
34 */
35
36/**
37 * This class generates form components for Financial Type
38 *
39 */
40class 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 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 =
61 array(
62 'created_by' => ts('Created By'),
63 'status' => ts('Status'),
64 'description'=> ts('Description'),
65 'payment_instrument' => ts('Payment Instrument'),
66 'item_count' => ts('Entered Transactions'),
67 'assigned_item_count' => ts('Assigned Transactions'),
68 'total' => ts('Entered Total'),
69 'assigned_total' => ts('Assigned Total'),
70 'opened_date' => ts('Opened'),
71 );
72 $this->assign('columnHeaders', $columnHeaders);
73 }
74 }
75 /**
76 * Function to build the form
77 *
355ba699 78 * @return void
6a488035
TO
79 * @access public
80 */
81 public function buildQuickForm() {
82 if ($this->_batchStatusId == 2) {
03e04002 83 $this->add('submit', 'export_batch', ts('Export Batch'));
6a488035 84 }
03e04002 85
6a488035
TO
86 // do not build rest of form unless it is open batch
87 if ($this->_batchStatusId != 1 ) {
88 return;
89 }
90
91 parent::buildQuickForm();
92 $this->add('submit', 'close_batch', ts('Close Batch'));
93 $this->add('submit', 'export_batch', ts('Close & Export Batch'));
94
95 // text for sort_name
96 $this->addElement('text',
97 'sort_name',
98 ts('Contributor Name or Email'),
99 CRM_Core_DAO::getAttribute('CRM_Contact_DAO_Contact',
100 'sort_name'
101 )
102 );
103
104 $this->_group = CRM_Core_PseudoConstant::group();
03e04002 105
6a488035
TO
106 // multiselect for groups
107 if ($this->_group) {
108 $this->add('select', 'group', ts('Groups'), $this->_group, FALSE,
ab345ca5 109 array('id' => 'group', 'multiple' => 'multiple', 'class' => 'crm-select2')
6a488035
TO
110 );
111 }
112 $contactTags = CRM_Core_BAO_Tag::getTags();
03e04002 113
6a488035
TO
114 if ($contactTags) {
115 $this->add('select', 'contact_tags', ts('Tags'), $contactTags, FALSE,
ab345ca5 116 array('id' => 'contact_tags', 'multiple' => 'multiple', 'class' => 'crm-select2')
6a488035
TO
117 );
118 }
119 CRM_Contribute_BAO_Query::buildSearchForm($this);
120 $this->addElement('checkbox', 'toggleSelects', NULL, NULL);
121
122 $this->add( 'select',
123 'trans_remove',
124 ts('Task'),
125 array( '' => ts( '- actions -' )) + array( 'Remove' => ts('Remove from Batch')));
126
127 $this->add('submit','rSubmit', ts('Go'),
128 array(
129 'class' => 'form-submit',
130 'id' => 'GoRemove',
131 ));
132
133 self::$_entityID = CRM_Utils_Request::retrieve('bid' , 'Positive');
134
135 $this->addButtons(
136 array(
137 array('type' => 'submit',
138 'name' => ts('Search'),
139 'isDefault' => TRUE,
140 )
141 )
142 );
03e04002 143
6a488035
TO
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' => '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 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
e0ef6999
EM
175 /**
176 * @return array|null
177 */
6a488035
TO
178 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
199