1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
|
<% include('elements/search.html',
'title' => 'Batch payment details',
'name' => 'batch details',
'query' => $sql_query,
'count_query' => $count_query,
'html_init' => $pay_batch ? $html_init : '',
'disable_download' => 1,
'header' => [ '#',
'Inv #',
'Customer',
'Customer',
'Card Name',
'Card',
'Exp',
'Amount',
'Status',
],
'fields' => [ sub {
shift->[0];
},
sub {
shift->[1];
},
sub {
shift->[2];
},
sub {
my $cpb = shift;
$cpb->[3] . ', ' . $cpb->[4];
},
sub {
shift->[5];
},
sub {
my $cardnum = shift->[6];
'x'x(length($cardnum)-4). substr($cardnum,(length($cardnum)-4));
},
sub {
shift->[7] =~ /^\d{2}(\d{2})[\/\-](\d+)[\/\-]\d+$/;
my( $mon, $year ) = ( $2, $1 );
$mon = "0$mon" if length($mon) == 1;
"$mon/$year";
},
sub {
shift->[8];
},
sub {
shift->[9];
},
],
'align' => 'lllllllrl',
'links' => [ ['', sub{'#';}],
["${p}view/cust_bill.cgi?", sub{shift->[1];},],
["${p}view/cust_main.cgi?", sub{shift->[2];},],
["${p}view/cust_main.cgi?", sub{shift->[2];},],
],
)
%>
<%init>
my $conf = new FS::Conf;
my $curuser = $FS::CurrentUser::CurrentUser;
die "access denied"
unless $curuser->access_right('Financial reports')
|| $curuser->access_right('Process batches')
|| $curuser->access_right('Process global batches')
|| ( $cgi->param('custnum')
&& ( $conf->exists('batch-enable')
|| $conf->config('batch-enable_payby')
)
);
my( $count_query, $sql_query );
my $hashref = {};
my @search = ();
my $orderby = 'paybatchnum';
my( $pay_batch, $batchnum ) = ( '', '');
if ( $cgi->param('batchnum') && $cgi->param('batchnum') =~ /^(\d+)$/ ) {
push @search, "batchnum = $1";
$pay_batch = qsearchs('pay_batch', { 'batchnum' => $1 } );
die "Batch $1 not found!" unless $pay_batch;
$batchnum = $pay_batch->batchnum;
}
if ( $cgi->param('custnum') && $cgi->param('custnum') =~ /^(\d+)$/ ) {
push @search, "custnum = $1";
}
if ( $cgi->param('status') && $cgi->param('status') =~ /^(\w)$/ ) {
push @search, "pay_batch.status = '$1'";
}
if ( $cgi->param('payby') ) {
$cgi->param('payby') =~ /^(CARD|CHEK)$/
or die "illegal payby " . $cgi->param('payby');
push @search, "cust_pay_batch.payby = '$1'";
}
if ( not $cgi->param('dcln') ) {
push @search, "cpb.status IS DISTINCT FROM 'Approved'";
}
my ($beginning, $ending) = FS::UI::Web::parse_beginning_ending($cgi);
unless ($pay_batch){
push @search, "pay_batch.upload >= $beginning" if ($beginning);
push @search, "pay_batch.upload <= $ending" if ($ending < 4294967295);#2^32-1
$orderby = "pay_batch.download,paybatchnum";
}
push @search, $curuser->agentnums_sql({ table => 'cust_main' });
push @search, $curuser->agentnums_sql({ table => 'pay_batch',
null_right => 'Process global batches',
});
my $search = ' WHERE ' . join(' AND ', @search);
$count_query = 'SELECT COUNT(*) FROM cust_pay_batch AS cpb ' .
'LEFT JOIN cust_main USING ( custnum ) ' .
'LEFT JOIN pay_batch USING ( batchnum )' .
$search;
#grr
$sql_query = "SELECT paybatchnum,invnum,custnum,cpb.last,cpb.first," .
"cpb.payname,cpb.payinfo,cpb.exp,amount,cpb.status " .
"FROM cust_pay_batch AS cpb " .
'LEFT JOIN cust_main USING ( custnum ) ' .
'LEFT JOIN pay_batch USING ( batchnum ) ' .
"$search ORDER BY $orderby";
my $html_init = '';
if ( $pay_batch ) {
$html_init = include('elements/cust_pay_batch_top.html',
'pay_batch' => $pay_batch);
}
</%init>
|