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