Optimize "Customer has a referring customer" condition, RT#74452
[freeside.git] / httemplate / search / cust_credit_refund.html
1 <& elements/search.html,
2                 'title'       => $title,
3                 'name'        => 'net refunds',
4                 'query'       => $sql_query,
5                 'count_query' => $count_query,
6                 'count_addl'  => [ '$%.2f total refunded (net)', ],
7                 'header'      => [ 'Net applied',
8                                    'to Credit',
9                                    'Refund',
10                                    'By',
11                                    FS::UI::Web::cust_header(),
12                                  ],
13                'fields'      => [
14                    sub { $money_char. sprintf('%.2f', shift->amount ) },
15                    sub { my $ccr = shift;
16                          '#'.$ccr->crednum. ' '.
17                          time2str('%b %d %Y', $ccr->cust_credit_date ).
18                          " ($money_char".
19                            sprintf('%.2f', $ccr->cust_credit_amount).
20                          ")" 
21                        },
22                    sub { my $ccr = shift;
23                          time2str('%b %d %Y', $ccr->_date ).
24                          " ($money_char".
25                          sprintf('%.2f', $ccr->cust_refund_refund ).
26                          ")"
27                        },
28                    sub { shift->cust_refund->otaker },
29                    \&FS::UI::Web::cust_fields,
30                 ],
31                 'sort_fields' => [
32                   'amount',
33                   '', #cust_credit_amount?  cust_credit_date? prolly split field
34                   '', #_date?  cust_refund_refund?  also split
35                 ],
36                 'align' => 'rrrl'.FS::UI::Web::cust_aligns(),
37                 'links' => [
38                              '',
39                              '',
40                              '',
41                              '',
42                              ( map { $_ ne 'Cust. Status' ? $cust_link : '' }
43                                    FS::UI::Web::cust_header()
44                              ),
45                            ],
46                 'color' => [ 
47                              '',
48                              '',
49                              '',
50                              '',
51                              FS::UI::Web::cust_colors(),
52                            ],
53                 'style' => [ 
54                              '',
55                              '',
56                              '',
57                              '',
58                              FS::UI::Web::cust_styles(),
59                            ],
60           
61 &>
62 <%init>
63
64 die "access denied"
65   unless $FS::CurrentUser::CurrentUser->access_right('Financial reports');
66
67 my $conf = new FS::Conf;
68 my $money_char = $conf->config('money_char') || '$';
69
70 my $title = 'Net Refund Search Results';
71
72 my @search = ();
73
74 if ( $cgi->param('agentnum') && $cgi->param('agentnum') =~ /^(\d+)$/ ) {
75   push @search, "agentnum = $1";
76   my $agent = qsearchs('agent', { 'agentnum' => $1 } );
77   die "unknown agentnum $1" unless $agent;
78   $title = $agent->agent. " $title";
79 }
80
81 if ( $cgi->param('refnum') && $cgi->param('refnum') =~ /^(\d+)$/ ) {
82   push @search, "refnum = $1";
83   my $part_referral = qsearchs('part_referral', { 'refnum' => $1 } );
84   die "unknown refnum $1" unless $part_referral;
85   $title = $part_referral->referral. " $title";
86 }
87
88 # cust_classnum (false laziness w/ elements/cust_main_dayranges.html, elements/cust_pay_or_refund.html, prepaid_income.html, cust_bill_pay.html, cust_bill_pkg.html, cust_bill_pkg_referral.html, unearned_detail.html, cust_credit.html, cust_main::Search::search_sql)
89 if ( grep { $_ eq 'cust_classnum' } $cgi->param ) {
90   my @classnums = grep /^\d*$/, $cgi->param('cust_classnum');
91   push @search, 'COALESCE( cust_main.classnum, 0) IN ( '.
92                     join(',', map { $_ || '0' } @classnums ).
93                 ' )'
94     if @classnums;
95 }
96
97
98 my($beginning, $ending) = FS::UI::Web::parse_beginning_ending($cgi);
99 push @search, "cust_credit._date >= $beginning ",
100               "cust_credit._date <= $ending";
101
102 #here is the agent virtualization
103 push @search, $FS::CurrentUser::CurrentUser->agentnums_sql;
104
105 my $where = 'WHERE '. join(' AND ', @search);
106 #
107 my $count_query = 'SELECT COUNT(*), SUM(cust_credit_refund.amount)
108                    FROM cust_credit_refund
109                      LEFT JOIN cust_credit USING ( crednum ) '.
110                   FS::UI::Web::join_cust_main('cust_credit') .
111                   $where;
112
113 my $sql_query   = {
114   'table'     => 'cust_credit_refund',
115   'select'    => join(', ',
116                    'cust_credit_refund.*',
117                    'cust_refund.refund  AS cust_refund_refund',
118                    'cust_credit._date   AS cust_credit_date',
119                    'cust_credit.amount  AS cust_credit_amnount',
120                    'cust_refund.custnum AS custnum',
121                    'cust_main.custnum   AS cust_main_custnum',
122                    FS::UI::Web::cust_sql_fields(),
123                  ),
124   'hashref'   => {},
125   'extra_sql' => $where,
126   'addl_from' => 'LEFT JOIN cust_credit USING ( crednum   )
127                   LEFT JOIN cust_refund USING ( refundnum )'.
128                   FS::UI::Web::join_cust_main('cust_credit')
129 };
130
131 #my $cust_credit_link = sub {
132 #  my $cust_credit_refund = shift;
133 #  $cust_credit_refund->crednum
134 #    ? [ "${p}view/cust_credit.cgi?", 'credum' ]
135 #    : '';
136 #};
137
138 #my $cust_refund_link = sub {
139 #  my $cust_credit_refund = shift;
140 #  $cust_credit_refund->refundnum
141 #    ? [ "${p}view/cust_refund.cgi?", 'refundnum' ]
142 #    : '';
143 #};
144
145 my $cust_link = sub {
146   my $cust_credit_refund = shift;
147   $cust_credit_refund->cust_main_custnum
148     ? [ "${p}view/cust_main.cgi?", 'cust_main_custnum' ]
149     : '';
150 };
151
152 </%init>