Will things ever be the same again?
[freeside.git] / httemplate / search / cust_pay.cgi
1 %
2 %   my $title = 'Payment Search Results';
3 %   my( $count_query, $sql_query );
4 %   if ( $cgi->param('magic') ) {
5 %
6 %     my @search = ();
7 %     my $orderby;
8 %     if ( $cgi->param('magic') eq '_date' ) {
9 %   
10 %  
11 %       if ( $cgi->param('agentnum') && $cgi->param('agentnum') =~ /^(\d+)$/ ) {
12 %         push @search, "agentnum = $1"; # $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 %       if ( $cgi->param('payby') ) {
19 %         $cgi->param('payby') =~
20 %           /^(CARD|CHEK|BILL|PREP|CASH|WEST|MCRD)(-(VisaMC|Amex|Discover|Maestro))?$/
21 %             or die "illegal payby ". $cgi->param('payby');
22 %         push @search, "cust_pay.payby = '$1'";
23 %         if ( $3 ) {
24 %           if ( $3 eq 'VisaMC' ) {
25 %             #avoid posix regexes for portability
26 %             push @search,
27 %               " ( (     substring(cust_pay.payinfo from 1 for 1) = '4'     ".
28 %               "     AND substring(cust_pay.payinfo from 1 for 4) != '4936' ".
29 %               "     AND substring(cust_pay.payinfo from 1 for 6)           ".
30 %               "         NOT SIMILAR TO '49030[2-9]'                        ".
31 %               "     AND substring(cust_pay.payinfo from 1 for 6)           ".
32 %               "         NOT SIMILAR TO '49033[5-9]'                        ".
33 %               "     AND substring(cust_pay.payinfo from 1 for 6)           ".
34 %               "         NOT SIMILAR TO '49110[1-2]'                        ".
35 %               "     AND substring(cust_pay.payinfo from 1 for 6)           ".
36 %               "         NOT SIMILAR TO '49117[4-9]'                        ".
37 %               "     AND substring(cust_pay.payinfo from 1 for 6)           ".
38 %               "         NOT SIMILAR TO '49118[1-2]'                        ".
39 %               "   )".
40 %               "   OR substring(cust_pay.payinfo from 1 for 2) = '51' ".
41 %               "   OR substring(cust_pay.payinfo from 1 for 2) = '52' ".
42 %               "   OR substring(cust_pay.payinfo from 1 for 2) = '53' ".
43 %               "   OR substring(cust_pay.payinfo from 1 for 2) = '54' ".
44 %               "   OR substring(cust_pay.payinfo from 1 for 2) = '54' ".
45 %               "   OR substring(cust_pay.payinfo from 1 for 2) = '55' ".
46 %               " ) ";
47 %           } elsif ( $3 eq 'Amex' ) {
48 %             push @search,
49 %               " (    substring(cust_pay.payinfo from 1 for 2 ) = '34' ".
50 %               "   OR substring(cust_pay.payinfo from 1 for 2 ) = '37' ".
51 %               " ) ";
52 %           } elsif ( $3 eq 'Discover' ) {
53 %             push @search,
54 %               " (    substring(cust_pay.payinfo from 1 for 4 ) = '6011'  ".
55 %               "   OR substring(cust_pay.payinfo from 1 for 3 ) = '650'   ".
56 %               " ) ";
57 %           } elsif ( $3 eq 'Maestro' ) { 
58 %             push @search,
59 %               " (    substring(cust_pay.payinfo from 1 for 2 ) = '63'     ".
60 %               "   OR substring(cust_pay.payinfo from 1 for 2 ) = '67'     ".
61 %               "   OR substring(cust_pay.payinfo from 1 for 6 ) = '564182' ".
62 %               "   OR substring(cust_pay.payinfo from 1 for 4 ) = '4936'   ".
63 %               "   OR substring(cust_pay.payinfo from 1 for 6 )            ".
64 %               "      SIMILAR TO '49030[2-9]'                             ".
65 %               "   OR substring(cust_pay.payinfo from 1 for 6 )            ".
66 %               "      SIMILAR TO '49033[5-9]'                             ".
67 %               "   OR substring(cust_pay.payinfo from 1 for 6 )            ".
68 %               "      SIMILAR TO '49110[1-2]'                             ".
69 %               "   OR substring(cust_pay.payinfo from 1 for 6 )            ".
70 %               "      SIMILAR TO '49117[4-9]'                             ".
71 %               "   OR substring(cust_pay.payinfo from 1 for 6 )            ".
72 %               "      SIMILAR TO '49118[1-2]'                             ".
73 %               " ) ";
74 %           } else {
75 %             die "unknown card type $3";
76 %           }
77 %         }
78 %       }
79 %  
80 %       my($beginning, $ending) = FS::UI::Web::parse_beginning_ending($cgi);
81 %       push @search, "_date >= $beginning ",
82 %                     "_date <= $ending";
83 %  
84 %       $orderby = '_date';
85 %   
86 %     } elsif ( $cgi->param('magic') eq 'paybatch' ) {
87 %
88 %       $cgi->param('paybatch') =~ /^([\w\/\:\-\.]+)$/
89 %         or die "illegal paybatch: ". $cgi->param('paybatch');
90 %
91 %       push @search, "paybatch = '$1'";
92 %
93 %       $orderby = "LOWER(company || ' ' || last || ' ' || first )";
94 %
95 %     } else {
96 %       die "unknown search magic: ". $cgi->param('magic');
97 %     }
98 %
99 %     #here is the agent virtualization
100 %     push @search, $FS::CurrentUser::CurrentUser->agentnums_sql;
101 %
102 %     my $search = ' WHERE '. join(' AND ', @search);
103 %  
104 %     $count_query = "SELECT COUNT(*), SUM(paid) ".
105 %                    "FROM cust_pay LEFT JOIN cust_main USING ( custnum )".
106 %                    $search;
107 %
108 %     $sql_query = {
109 %       'table'     => 'cust_pay',
110 %       'select'    => join(', ',
111 %                        'cust_pay.*',
112 %                        'cust_main.custnum as cust_main_custnum',
113 %                        FS::UI::Web::cust_sql_fields(),
114 %                      ),
115 %       'hashref'   => {},
116 %       'extra_sql' => "$search ORDER BY $orderby",
117 %       'addl_from' => 'LEFT JOIN cust_main USING ( custnum )',
118 %     };
119 %
120 %   } else {
121 %   
122 %     $cgi->param('payinfo') =~ /^\s*(\d+)\s*$/ or die "illegal payinfo";
123 %     my $payinfo = $1;
124 %   
125 %     $cgi->param('payby') =~ /^(\w+)$/ or die "illegal payby";
126 %     my $payby = $1;
127 %   
128 %     $count_query = "SELECT COUNT(*), SUM(paid) FROM cust_pay".
129 %                    "  WHERE payinfo = '$payinfo' AND payby = '$payby'".
130 %                    "  AND ". $FS::CurrentUser::CurrentUser->agentnums_sql;
131 %   
132 %     $sql_query = {
133 %       'table'     => 'cust_pay',
134 %       'hashref'   => { 'payinfo' => $payinfo,
135 %                        'payby'   => $payby    },
136 %       'extra_sql' => $FS::CurrentUser::CurrentUser->agentnums_sql.
137 %                      " ORDER BY _date",
138 %     };
139 %   
140 %   }
141 %
142 %   my $link = sub {
143 %     my $cust_pay = shift;
144 %     $cust_pay->cust_main_custnum
145 %       ? [ "${p}view/cust_main.cgi?", 'custnum' ] 
146 %       : '';
147 %   };
148 %
149 %
150 <% include( 'elements/search.html',
151                  'title'       => $title,
152                  'name'        => 'payments',
153                  'query'       => $sql_query,
154                  'count_query' => $count_query,
155                  'count_addl'  => [ '$%.2f total paid', ],
156                  'header'      => [ 'Payment',
157                                     'Amount',
158                                     'Date',
159                                     FS::UI::Web::cust_header(),
160                                   ],
161                  'fields'      => [
162                    sub {
163                      my $cust_pay = shift;
164                      if ( $cust_pay->payby eq 'CARD' ) {
165                        'Card #'. $cust_pay->payinfo_masked;
166                      } elsif ( $cust_pay->payby eq 'CHEK' ) {
167                        'E-check acct#'. $cust_pay->payinfo;
168                      } elsif ( $cust_pay->payby eq 'BILL' ) {
169                        'Check #'. $cust_pay->payinfo;
170                      } elsif ( $cust_pay->payby eq 'PREP' ) {
171                        'Prepaid card #'. $cust_pay->payinfo;
172                      } elsif ( $cust_pay->payby eq 'CASH' ) {
173                        'Cash '. $cust_pay->payinfo;
174                      } elsif ( $cust_pay->payby eq 'WEST' ) {
175                        'Western Union'; #. $cust_pay->payinfo;
176                      } elsif ( $cust_pay->payby eq 'MCRD' ) {
177                        'Manual credit card'; #. $cust_pay->payinfo;
178                      } else {
179                        $cust_pay->payby. ' '. $cust_pay->payinfo;
180                      }
181                    },
182                    sub { sprintf('$%.2f', shift->paid ) },
183                    sub { time2str('%b %d %Y', shift->_date ) },
184                    \&FS::UI::Web::cust_fields,
185                  ],
186                  #'align' => 'lrrrll',
187                  'align' => 'rrr',
188                  'links' => [
189                    '',
190                    '',
191                    '',
192                    ( map { $link } FS::UI::Web::cust_header() ),
193                  ],
194       )
195 %>