This commit was generated by cvs2svn to compensate for changes in r4407,
[freeside.git] / httemplate / search / cust_credit.html
1 <%
2    my $title = 'Credit Search Results';
3    #my( $count_query, $sql_query );
4
5    my @search = ();
6
7    if ( $cgi->param('otaker') && $cgi->param('otaker') =~ /^([\w\.\-]+)$/ ) {
8      push @search, "cust_credit.otaker = '$1'";
9    }
10
11    if ( $cgi->param('agentnum') && $cgi->param('agentnum') =~ /^(\d+)$/ ) {
12      push @search, "agentnum = $1";
13      my $agent = qsearchs('agent', { 'agentnum' => $1 } );
14      die "unknown agentnum $1" unless $agent;
15      $title = $agent->agent. " $title";
16    }
17
18    #false laziness with cust_pkg.cgi and cust_pay.cgi
19    if ( $cgi->param('beginning')
20         && $cgi->param('beginning') =~ /^([ 0-9\-\/]{1,10})$/ ) {
21      my $beginning = str2time($1);
22      push @search, "_date >= $beginning ";
23    }
24    if ( $cgi->param('ending')
25              && $cgi->param('ending') =~ /^([ 0-9\-\/]{1,10})$/ ) {
26      my $ending = str2time($1) + 86399;
27      push @search, " _date <= $ending ";
28    }
29
30    if ( $cgi->param('begin')
31         && $cgi->param('begin') =~ /^(\d+)$/ ) {
32      push @search, "_date >= $1 ";
33    }
34    if ( $cgi->param('end')
35              && $cgi->param('end') =~ /^(\d+)$/ ) {
36      push @search, " _date < $1 ";
37    }
38
39    my $where = scalar(@search)
40                  ? 'WHERE '. join(' AND ', @search)
41                  : '';
42
43    my $count_query = 'SELECT COUNT(*), SUM(amount) '.
44                      'FROM cust_credit LEFT JOIN cust_main USING ( custnum ) '.
45                      $where;
46
47    my $sql_query   = {
48      'table'     => 'cust_credit',
49      'select'    => join(', ',
50                       'cust_credit.*',
51                       'cust_main.custnum as cust_main_custnum',
52                       FS::UI::Web::cust_sql_fields(),
53                     ),
54      'hashref'   => {},
55      'extra_sql' => $where,
56      'addl_from' => 'LEFT JOIN cust_main USING ( custnum )',
57    };
58
59      my $clink = sub {
60        my $cust_bill = shift;
61        $cust_bill->cust_main_custnum
62          ? [ "${p}view/cust_main.cgi?", 'custnum' ]
63          : '';
64      };
65
66 %><%= include( 'elements/search.html',
67                  'title'       => $title,
68                  'name'        => 'credits',
69                  'query'       => $sql_query,
70                  'count_query' => $count_query,
71                  'count_addl'  => [ '$%.2f total credited', ],
72                  #'redirect'    => $link,
73                  'header'      => [ 'Amount',
74                                     'Date',
75                                     FS::UI::Web::cust_header(),
76                                     'By',
77                                     'Reason'
78                                   ],
79                  'fields'      => [
80                    #'crednum',
81                    sub { sprintf('$%.2f', shift->amount ) },
82                    sub { time2str('%b %d %Y', shift->_date ) },
83                    \&FS::UI::Web::cust_fields,
84                    'otaker',
85                    'reason',
86                  ],
87                  #'align' => 'rrrllll',
88                  'align' => 'rr',
89                  'links' => [
90                    '',
91                    '',
92                    ( map { $clink } FS::UI::Web::cust_header() ),
93                    '',
94                    '',
95                  ],
96       )
97 %>