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
155
156
157
158
|
<% include( 'elements/search.html',
'title' => $title,
'name' => 'net payments',
'query' => $sql_query,
'count_query' => $count_query,
'count_addl' => [ '$%.2f total paid (net)', ],
'header' => [ 'Net applied',
'Invoice',
'Invoice amount',
'Invoice date',
'Payment',
'Payment amount',
'Payment date',
'By',
FS::UI::Web::cust_header(),
],
'fields' => [
sub { $money_char.sprintf('%.2f', shift->amount ) },
'invnum',
sub { $money_char.sprintf('%.2f', shift->cust_bill_charged)},
sub { time2str('%b %d %Y', shift->cust_bill_date ) },
sub { shift->cust_pay->payby_payinfo_pretty },
sub { $money_char.sprintf('%.2f', shift->cust_pay_paid)},
sub { time2str('%b %d %Y', shift->cust_pay_date ) },
sub { shift->cust_pay_otaker },
\&FS::UI::Web::cust_fields,
],
'sort_fields' => [
'amount',
'invnum',
'cust_bill_charged',
'cust_bill_date',
'',
'cust_pay_paid',
'cust_pay_date',
'',
],
'align' => 'rrrrlrrl'.FS::UI::Web::cust_aligns(),
'links' => [
'',
$cust_bill_link,
$cust_bill_link,
$cust_bill_link,
$cust_pay_link,
$cust_pay_link,
$cust_pay_link,
'',
( map { $_ ne 'Cust. Status' ? $cust_link : '' }
FS::UI::Web::cust_header()
),
],
'color' => [
'',
'',
'',
'',
'',
'',
'',
'',
FS::UI::Web::cust_colors(),
],
'style' => [
'',
'',
'',
'',
'',
'',
'',
'',
FS::UI::Web::cust_styles(),
],
)
%>
<%init>
die "access denied"
unless $FS::CurrentUser::CurrentUser->access_right('Financial reports');
my $conf = new FS::Conf;
my $money_char = $conf->config('money_char') || '$';
my $title = 'Net Payment Search Results';
my @search = ();
if ( $cgi->param('agentnum') && $cgi->param('agentnum') =~ /^(\d+)$/ ) {
push @search, "agentnum = $1";
my $agent = qsearchs('agent', { 'agentnum' => $1 } );
die "unknown agentnum $1" unless $agent;
$title = $agent->agent. " $title";
}
if ( $cgi->param('refnum') && $cgi->param('refnum') =~ /^(\d+)$/ ) {
push @search, "refnum = $1";
my $part_referral = qsearchs('part_referral', { 'refnum' => $1 } );
die "unknown refnum $1" unless $part_referral;
$title = $part_referral->referral. " $title";
}
my($beginning, $ending) = FS::UI::Web::parse_beginning_ending($cgi);
push @search, "cust_bill._date >= $beginning ",
"cust_bill._date <= $ending";
#here is the agent virtualization
push @search, $FS::CurrentUser::CurrentUser->agentnums_sql;
my $where = 'WHERE '. join(' AND ', @search);
#
my $count_query = 'SELECT COUNT(*), SUM(amount)
FROM cust_bill_pay
LEFT JOIN cust_bill USING ( invnum )
LEFT JOIN cust_main USING ( custnum ) '.
$where;
my $sql_query = {
'table' => 'cust_bill_pay',
'select' => join(', ',
'cust_bill_pay.*',
'cust_bill._date AS cust_bill_date',
'cust_bill.charged AS cust_bill_charged',
'cust_pay.paid AS cust_pay_paid',
'cust_pay._date AS cust_pay_date',
'cust_pay.otaker AS cust_pay_otaker',
'cust_pay.custnum AS custnum',
'cust_main.custnum AS cust_main_custnum',
FS::UI::Web::cust_sql_fields(),
),
'hashref' => {},
'extra_sql' => $where,
'addl_from' => 'LEFT JOIN cust_bill USING ( invnum )
LEFT JOIN cust_pay USING ( paynum )
LEFT JOIN cust_main ON ( cust_bill.custnum = cust_main.custnum )',
};
my $cust_bill_link = sub {
my $cust_bill_pay = shift;
$cust_bill_pay->invnum
? [ "${p}view/cust_bill.cgi?", 'invnum' ]
: '';
};
my $cust_pay_link = sub {
my $cust_bill_pay = shift;
$cust_bill_pay->paynum
? [ "${p}view/cust_pay.html?paynum=", 'paynum' ]
: '';
};
my $cust_link = sub {
my $cust_credit_bill = shift;
$cust_credit_bill->cust_main_custnum
? [ "${p}view/cust_main.cgi?", 'cust_main_custnum' ]
: '';
};
</%init>
|