combine ticket notification scrips, #15353
[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 my($beginning, $ending) = FS::UI::Web::parse_beginning_ending($cgi);
96 push @search, "cust_bill._date >= $beginning ",
97               "cust_bill._date <= $ending";
98
99 #here is the agent virtualization
100 push @search, $FS::CurrentUser::CurrentUser->agentnums_sql;
101
102 my $where = 'WHERE '. join(' AND ', @search);
103 #
104 my $count_query = 'SELECT COUNT(*), SUM(amount)
105                    FROM cust_bill_pay
106                      LEFT JOIN cust_bill USING ( invnum  )
107                      LEFT JOIN cust_main USING ( custnum ) '.
108                   $where;
109
110 my $sql_query   = {
111   'table'     => 'cust_bill_pay',
112   'select'    => join(', ',
113                    'cust_bill_pay.*',
114                    'cust_bill._date     AS cust_bill_date',
115                    'cust_bill.charged   AS cust_bill_charged',
116                    'cust_pay.paid       AS cust_pay_paid',
117                    'cust_pay._date      AS cust_pay_date',
118                    'cust_pay.otaker     AS cust_pay_otaker',
119                    'cust_pay.custnum    AS custnum',
120                    'cust_main.custnum   AS cust_main_custnum',
121                    FS::UI::Web::cust_sql_fields(),
122                  ),
123   'hashref'   => {},
124   'extra_sql' => $where,
125   'addl_from' => 'LEFT JOIN cust_bill   USING ( invnum  )
126                   LEFT JOIN cust_pay    USING ( paynum )
127                   LEFT JOIN cust_main ON ( cust_bill.custnum = cust_main.custnum )',
128 };
129
130 my $cust_bill_link = sub {
131   my $cust_bill_pay = shift;
132   $cust_bill_pay->invnum
133     ? [ "${p}view/cust_bill.cgi?", 'invnum' ]
134     : '';
135 };
136
137 my $cust_pay_link = sub {
138   my $cust_bill_pay = shift;
139   $cust_bill_pay->paynum
140     ? [ "${p}view/cust_pay.html?paynum=", 'paynum' ]
141     : '';
142 };
143
144 my $cust_link = sub {
145   my $cust_credit_bill = shift;
146   $cust_credit_bill->cust_main_custnum
147     ? [ "${p}view/cust_main.cgi?", 'cust_main_custnum' ]
148     : '';
149 };
150
151 </%init>