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