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
141
142
143
144
145
146
147
148
149
150
151
152
153
154
|
<%
my $title = 'Payment Search Results';
my( $count_query, $sql_query );
if ( $cgi->param('magic') ) {
my @search = ();
my $orderby;
if ( $cgi->param('magic') eq '_date' ) {
if ( $cgi->param('agentnum') && $cgi->param('agentnum') =~ /^(\d+)$/ ) {
push @search, "agentnum = $1"; # $search{'agentnum'} = $1;
my $agent = qsearchs('agent', { 'agentnum' => $1 } );
die "unknown agentnum $1" unless $agent;
$title = $agent->agent. " $title";
}
if ( $cgi->param('payby') ) {
$cgi->param('payby') =~ /^(CARD|CHEK|BILL)(-(VisaMC|Amex|Discover))?$/
or die "illegal payby ". $cgi->param('payby');
push @search, "cust_pay.payby = '$1'";
if ( $3 ) {
if ( $3 eq 'VisaMC' ) {
#avoid posix regexes for portability
push @search,
" ( substring(cust_pay.payinfo from 1 for 1) = '4' ".
" OR substring(cust_pay.payinfo from 1 for 2) = '51' ".
" OR substring(cust_pay.payinfo from 1 for 2) = '52' ".
" OR substring(cust_pay.payinfo from 1 for 2) = '53' ".
" OR substring(cust_pay.payinfo from 1 for 2) = '54' ".
" OR substring(cust_pay.payinfo from 1 for 2) = '54' ".
" OR substring(cust_pay.payinfo from 1 for 2) = '55' ".
" ) ";
} elsif ( $3 eq 'Amex' ) {
push @search,
" ( substring(cust_pay.payinfo from 1 for 2 ) = '34' ".
" OR substring(cust_pay.payinfo from 1 for 2 ) = '37' ".
" ) ";
} elsif ( $3 eq 'Discover' ) {
push @search,
" substring(cust_pay.payinfo from 1 for 4 ) = '6011' ";
} else {
die "unknown card type $3";
}
}
}
my($beginning, $ending) = FS::UI::Web::parse_beginning_ending($cgi);
push @search, "_date >= $beginning ",
"_date <= $ending";
$orderby = '_date';
} elsif ( $cgi->param('magic') eq 'paybatch' ) {
$cgi->param('paybatch') =~ /^([\w\/\:\-\.]+)$/
or die "illegal paybatch: ". $cgi->param('paybatch');
push @search, "paybatch = '$1'";
$orderby = "LOWER(company || ' ' || last || ' ' || first )";
} else {
die "unknown search magic: ". $cgi->param('magic');
}
my $search = '';
if ( @search ) {
$search = ' WHERE '. join(' AND ', @search);
}
$count_query = "SELECT COUNT(*), SUM(paid) ".
"FROM cust_pay LEFT JOIN cust_main USING ( custnum )".
$search;
$sql_query = {
'table' => 'cust_pay',
'select' => join(', ',
'cust_pay.*',
'cust_main.custnum as cust_main_custnum',
FS::UI::Web::cust_sql_fields(),
),
'hashref' => {},
'extra_sql' => "$search ORDER BY $orderby",
'addl_from' => 'LEFT JOIN cust_main USING ( custnum )',
};
} else {
$cgi->param('payinfo') =~ /^\s*(\d+)\s*$/ or die "illegal payinfo";
my $payinfo = $1;
$cgi->param('payby') =~ /^(\w+)$/ or die "illegal payby";
my $payby = $1;
$count_query = "SELECT COUNT(*), SUM(paid) FROM cust_pay ".
"WHERE payinfo = '$payinfo' AND payby = '$payby'";
$sql_query = {
'table' => 'cust_pay',
'hashref' => { 'payinfo' => $payinfo,
'payby' => $payby },
'extra_sql' => "ORDER BY _date",
};
}
my $link = sub {
my $cust_pay = shift;
$cust_pay->cust_main_custnum
? [ "${p}view/cust_main.cgi?", 'custnum' ]
: '';
};
%><%= include( 'elements/search.html',
'title' => $title,
'name' => 'payments',
'query' => $sql_query,
'count_query' => $count_query,
'count_addl' => [ '$%.2f total paid', ],
'header' => [ 'Payment',
'Amount',
'Date',
FS::UI::Web::cust_header(),
],
'fields' => [
sub {
my $cust_pay = shift;
if ( $cust_pay->payby eq 'CARD' ) {
'Card #'. $cust_pay->payinfo_masked;
} elsif ( $cust_pay->payby eq 'CHEK' ) {
'E-check acct#'. $cust_pay->payinfo;
} elsif ( $cust_pay->payby eq 'BILL' ) {
'Check #'. $cust_pay->payinfo;
} elsif ( $cust_pay->payby eq 'PREP' ) {
'Prepaid card #'. $cust_pay->payinfo;
} else {
$cust_pay->payby. ' '. $cust_pay->payinfo;
}
},
sub { sprintf('$%.2f', shift->paid ) },
sub { time2str('%b %d %Y', shift->_date ) },
\&FS::UI::Web::cust_fields,
],
#'align' => 'lrrrll',
'align' => 'rrr',
'links' => [
'',
'',
'',
( map { $link } FS::UI::Web::cust_header() ),
],
)
%>
|