0247b0b0d4903df1bb139cd42fb1c67d0f83b769
[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 %><%= include( 'elements/search.html',
150                  'title'       => $title,
151                  'name'        => 'payments',
152                  'query'       => $sql_query,
153                  'count_query' => $count_query,
154                  'count_addl'  => [ '$%.2f total paid', ],
155                  'header'      => [ 'Payment',
156                                     'Amount',
157                                     'Date',
158                                     FS::UI::Web::cust_header(),
159                                   ],
160                  'fields'      => [
161                    sub {
162                      my $cust_pay = shift;
163                      if ( $cust_pay->payby eq 'CARD' ) {
164                        'Card #'. $cust_pay->payinfo_masked;
165                      } elsif ( $cust_pay->payby eq 'CHEK' ) {
166                        'E-check acct#'. $cust_pay->payinfo;
167                      } elsif ( $cust_pay->payby eq 'BILL' ) {
168                        'Check #'. $cust_pay->payinfo;
169                      } elsif ( $cust_pay->payby eq 'PREP' ) {
170                        'Prepaid card #'. $cust_pay->payinfo;
171                      } elsif ( $cust_pay->payby eq 'CASH' ) {
172                        'Cash '. $cust_pay->payinfo;
173                      } elsif ( $cust_pay->payby eq 'WEST' ) {
174                        'Western Union'; #. $cust_pay->payinfo;
175                      } elsif ( $cust_pay->payby eq 'MCRD' ) {
176                        'Manual credit card'; #. $cust_pay->payinfo;
177                      } else {
178                        $cust_pay->payby. ' '. $cust_pay->payinfo;
179                      }
180                    },
181                    sub { sprintf('$%.2f', shift->paid ) },
182                    sub { time2str('%b %d %Y', shift->_date ) },
183                    \&FS::UI::Web::cust_fields,
184                  ],
185                  #'align' => 'lrrrll',
186                  'align' => 'rrr',
187                  'links' => [
188                    '',
189                    '',
190                    '',
191                    ( map { $link } FS::UI::Web::cust_header() ),
192                  ],
193       )
194 %>