filter by customer class on all financial reports, #20573
[freeside.git] / httemplate / search / cust_bill_pay.html
1 <% include( 'elements/search.html',
2                 'title'       => $title,
3                 'name'        => 'net payments',
4                 'query'       => $sql_query,
5                 'count_query' => $count_query,
6                 'count_addl'  => [ '$%.2f total paid (net)', ],
7                 'header'      => [ 'Net applied',
8                                    'Invoice',
9                                    'Invoice amount',
10                                    'Invoice date',
11                                    'Payment',
12                                    'Payment amount',
13                                    'Payment date',
14                                    'By',
15                                    FS::UI::Web::cust_header(),
16                                  ],
17                 'fields'      => [
18                    sub { $money_char.sprintf('%.2f', shift->amount ) },
19                    'invnum',
20                    sub { $money_char.sprintf('%.2f', shift->cust_bill_charged)},
21                    sub { time2str('%b %d %Y', shift->cust_bill_date ) },
22                    sub { shift->cust_pay->payby_payinfo_pretty },
23                    sub { $money_char.sprintf('%.2f', shift->cust_pay_paid)},
24                    sub { time2str('%b %d %Y', shift->cust_pay_date ) },
25                    sub { shift->cust_pay_otaker },
26                    \&FS::UI::Web::cust_fields,
27                 ],
28                 'sort_fields' => [
29                   'amount',
30                   'invnum',
31                   'cust_bill_charged',
32                   'cust_bill_date',
33                   '',
34                   'cust_pay_paid',
35                   'cust_pay_date',
36                   '', 
37                 ],
38                 'align' => 'rrrrlrrl'.FS::UI::Web::cust_aligns(),
39                 'links' => [
40                              '',
41                              $cust_bill_link,
42                              $cust_bill_link,
43                              $cust_bill_link,
44                              $cust_pay_link,
45                              $cust_pay_link,
46                              $cust_pay_link,
47                              '',
48                              ( map { $_ ne 'Cust. Status' ? $cust_link : '' }
49                                    FS::UI::Web::cust_header()
50                              ),
51                            ],
52                 'color' => [ 
53                              '',
54                              '',
55                              '',
56                              '',
57                              '',
58                              '',
59                              '',
60                              '',
61                              FS::UI::Web::cust_colors(),
62                            ],
63                 'style' => [ 
64                              '',
65                              '',
66                              '',
67                              '',
68                              '',
69                              '',
70                              '',
71                              '',
72                              FS::UI::Web::cust_styles(),
73                            ],
74           )
75 %>
76 <%init>
77
78 die "access denied"
79   unless $FS::CurrentUser::CurrentUser->access_right('Financial reports');
80
81 my $conf = new FS::Conf;
82 my $money_char = $conf->config('money_char') || '$';
83
84 my $title = 'Net Payment Search Results';
85
86 my @search = ();
87
88 if ( $cgi->param('agentnum') && $cgi->param('agentnum') =~ /^(\d+)$/ ) {
89   push @search, "agentnum = $1";
90   my $agent = qsearchs('agent', { 'agentnum' => $1 } );
91   die "unknown agentnum $1" unless $agent;
92   $title = $agent->agent. " $title";
93 }
94
95 if ( $cgi->param('refnum') && $cgi->param('refnum') =~ /^(\d+)$/ ) {
96   push @search, "refnum = $1";
97   my $part_referral = qsearchs('part_referral', { 'refnum' => $1 } );
98   die "unknown refnum $1" unless $part_referral;
99   $title = $part_referral->referral. " $title";
100 }
101
102 if ( $cgi->param('cust_classnum') ) {
103   my @classnums = grep /^\d+$/, $cgi->param('cust_classnum');
104   push @search, 'cust_main.classnum IN('.join(',',@classnums).')'
105     if @classnums;
106 }
107
108
109 my($beginning, $ending) = FS::UI::Web::parse_beginning_ending($cgi);
110 push @search, "cust_bill._date >= $beginning ",
111               "cust_bill._date <= $ending";
112
113 #here is the agent virtualization
114 push @search, $FS::CurrentUser::CurrentUser->agentnums_sql;
115
116 my $where = 'WHERE '. join(' AND ', @search);
117 #
118 my $count_query = 'SELECT COUNT(*), SUM(amount)
119                    FROM cust_bill_pay
120                      LEFT JOIN cust_bill USING ( invnum  )
121                      LEFT JOIN cust_main USING ( custnum ) '.
122                   $where;
123
124 my $sql_query   = {
125   'table'     => 'cust_bill_pay',
126   'select'    => join(', ',
127                    'cust_bill_pay.*',
128                    'cust_bill._date     AS cust_bill_date',
129                    'cust_bill.charged   AS cust_bill_charged',
130                    'cust_pay.paid       AS cust_pay_paid',
131                    'cust_pay._date      AS cust_pay_date',
132                    'cust_pay.otaker     AS cust_pay_otaker',
133                    'cust_pay.custnum    AS custnum',
134                    'cust_main.custnum   AS cust_main_custnum',
135                    FS::UI::Web::cust_sql_fields(),
136                  ),
137   'hashref'   => {},
138   'extra_sql' => $where,
139   'addl_from' => 'LEFT JOIN cust_bill   USING ( invnum  )
140                   LEFT JOIN cust_pay    USING ( paynum )
141                   LEFT JOIN cust_main ON ( cust_bill.custnum = cust_main.custnum )',
142 };
143
144 my $cust_bill_link = sub {
145   my $cust_bill_pay = shift;
146   $cust_bill_pay->invnum
147     ? [ "${p}view/cust_bill.cgi?", 'invnum' ]
148     : '';
149 };
150
151 my $cust_pay_link = sub {
152   my $cust_bill_pay = shift;
153   $cust_bill_pay->paynum
154     ? [ "${p}view/cust_pay.html?paynum=", 'paynum' ]
155     : '';
156 };
157
158 my $cust_link = sub {
159   my $cust_credit_bill = shift;
160   $cust_credit_bill->cust_main_custnum
161     ? [ "${p}view/cust_main.cgi?", 'cust_main_custnum' ]
162     : '';
163 };
164
165 </%init>