Merge pull request #11495 from yashodha/CRM-21637
[civicrm-core.git] / CRM / Financial / Form / Search.php
1 <?php
2 /*
3 +--------------------------------------------------------------------+
4 | CiviCRM version 5 |
5 +--------------------------------------------------------------------+
6 | Copyright CiviCRM LLC (c) 2004-2018 |
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-2018
32 */
33
34 /**
35 * @todo Add comments if possible.
36 */
37 class CRM_Financial_Form_Search extends CRM_Core_Form {
38
39 public $_batchStatus;
40
41 public function preProcess() {
42 $this->_batchStatus = CRM_Utils_Request::retrieve('batchStatus', 'Positive', CRM_Core_DAO::$_nullObject, FALSE, NULL);
43 $this->assign('batchStatus', $this->_batchStatus);
44 }
45
46 /**
47 * @return array
48 */
49 public function setDefaultValues() {
50 $defaults = array();
51 $status = CRM_Utils_Request::retrieve('status', 'Positive', CRM_Core_DAO::$_nullObject, FALSE, 1);
52 $defaults['batch_update'] = $status;
53 if ($this->_batchStatus) {
54 $defaults['status_id'] = $this->_batchStatus;
55 }
56 return $defaults;
57 }
58
59 public function buildQuickForm() {
60 CRM_Core_Resources::singleton()
61 ->addScriptFile('civicrm', 'packages/jquery/plugins/jquery.redirect.min.js', 0, 'html-header');
62 $attributes = CRM_Core_DAO::getAttribute('CRM_Batch_DAO_Batch');
63 $attributes['total']['class'] = $attributes['item_count']['class'] = 'number';
64 $this->add('text', 'title', ts('Batch Name'), $attributes['title']);
65
66 $batchStatus = CRM_Core_PseudoConstant::get('CRM_Batch_DAO_Batch', 'status_id', array('labelColumn' => 'name'));
67 $this->add(
68 'select',
69 'status_id',
70 ts('Batch Status'),
71 array(
72 '' => ts('- any -'),
73 array_search('Open', $batchStatus) => ts('Open'),
74 array_search('Closed', $batchStatus) => ts('Closed'),
75 array_search('Exported', $batchStatus) => ts('Exported'),
76 ),
77 FALSE
78 );
79
80 $this->add(
81 'select',
82 'payment_instrument_id',
83 ts('Payment Method'),
84 array('' => ts('- any -')) + CRM_Contribute_PseudoConstant::paymentInstrument(),
85 FALSE
86 );
87
88 $this->add('text', 'total', ts('Total Amount'), $attributes['total']);
89
90 $this->add('text', 'item_count', ts('Number of Items'), $attributes['item_count']);
91 $this->add('text', 'sort_name', ts('Created By'), CRM_Core_DAO::getAttribute('CRM_Contact_DAO_Contact', 'sort_name'));
92
93 $this->assign('elements', array('status_id', 'title', 'sort_name', 'payment_instrument_id', 'item_count', 'total'));
94 $this->addElement('checkbox', 'toggleSelect', NULL, NULL, array('class' => 'select-rows'));
95 $batchAction = array(
96 'reopen' => ts('Re-open'),
97 'close' => ts('Close'),
98 'export' => ts('Export'),
99 'delete' => ts('Delete'),
100 );
101
102 foreach ($batchAction as $action => $ignore) {
103 if (!CRM_Batch_BAO_Batch::checkBatchPermission($action)) {
104 unset($batchAction[$action]);
105 }
106 }
107 $this->add('select',
108 'batch_update',
109 ts('Task'),
110 array('' => ts('- actions -')) + $batchAction);
111
112 $this->add('submit', 'submit', ts('Go'),
113 array(
114 'class' => 'crm-form-submit',
115 'id' => 'Go',
116 ));
117
118 $this->addButtons(
119 array(
120 array(
121 'type' => 'refresh',
122 'name' => ts('Search'),
123 'isDefault' => TRUE,
124 ),
125 )
126 );
127 parent::buildQuickForm();
128 }
129
130 public function postProcess() {
131 $batchIds = array();
132 foreach ($_POST as $key => $value) {
133 if (substr($key, 0, 6) == "check_") {
134 $batch = explode("_", $key);
135 $batchIds[] = $batch[1];
136 }
137 }
138 if (!empty($_POST['batch_update'])) {
139 CRM_Batch_BAO_Batch::closeReOpen($batchIds, $_POST['batch_update']);
140 }
141 }
142
143 }