mask echeck acct# on invoices, RT#26859
[freeside.git] / httemplate / view / cust_main / payment_history.html
1 <TABLE>
2   <TR>
3     <TD ALIGN="left">
4
5 %# payment links
6
7 % my $s = 0;
8 % if ( $payby{'BILL'} && $curuser->access_right(['Post payment', 'Post check payment' ]) ) { 
9   <% $s++ ? ' | ' : '' %>
10   <& /elements/popup_link-cust_main.html,
11                'label'       => emt('Enter check payment'),
12                'action'      => "${p}edit/cust_pay.cgi?popup=1;payby=BILL",
13                'cust_main'   => $cust_main,
14                'actionlabel' => emt('Enter check payment'),
15                'width'       => 392,
16                'height'      => 392,
17   &>
18 % } 
19
20 % if ( $payby{'CASH'} && $curuser->access_right(['Post payment', 'Post cash payment']) ) { 
21   <% $s++ ? ' | ' : '' %>
22   <& /elements/popup_link-cust_main.html,
23                'label'       => emt('Enter cash payment'),
24                'action'      => "${p}edit/cust_pay.cgi?popup=1;payby=CASH",
25                'cust_main'   => $cust_main,
26                'actionlabel' => emt('Enter cash payment'),
27                'width'       => 392,
28                'height'      => 392,
29   &>
30 % } 
31
32 % if ( $payby{'WEST'} && $curuser->access_right('Post payment') ) { 
33   <% $s++ ? ' | ' : '' %>
34   <A HREF="<% $p %>edit/cust_pay.cgi?payby=WEST;custnum=<% $custnum %>"><% mt('Enter Western Union payment') |h %></A>
35 % } 
36
37 <% $s ? '<BR>' : '' %>
38 % $s=0;
39
40 % if ( ( $payby{'CARD'} || $payby{'DCRD'} )
41 %        && $curuser->access_right(['Process payment', 'Process credit card payment'])
42 %        && ! $cust_main->is_encrypted($cust_main->payinfo)
43 %      ) {
44   <% $s++ ? ' | ' : '' %>
45   <A HREF="<% $p %>misc/payment.cgi?payby=CARD;custnum=<% $custnum %>"><% mt('Process credit card payment') |h %></A>
46 % } 
47
48 % if ( ( $payby{'CHEK'} || $payby{'DCHK'} )
49 %        && $curuser->access_right(['Process payment', 'Process Echeck payment'])
50 %        && ! $cust_main->is_encrypted($cust_main->payinfo)
51 %      ) {
52   <% $s++ ? ' | ' : '' %>
53   <A HREF="<% $p %>misc/payment.cgi?payby=CHEK;custnum=<% $custnum %>"><% mt('Process electronic check (ACH) payment') |h %></A>
54 % } 
55
56 % if ( $payby{'MCRD'} && $curuser->access_right('Post payment') ) { 
57   <% $s++ ? ' | ' : '' %>
58   <A HREF="<% $p %>edit/cust_pay.cgi?payby=MCRD;custnum=<% $custnum %>"><% mt('Post manual (offline/POS) credit card payment') |h %></A>
59 % } 
60
61 <% $s ? '<BR>' : '' %>
62
63 %# credit links
64
65 % $s=0;
66 % if ( $curuser->access_right('Post credit') ) { 
67   <% $s++ ? ' | ' : '' %>
68   <& /elements/popup_link-cust_main.html,
69                'label'       => emt('Enter credit'),
70                'action'      => "${p}edit/cust_credit.cgi",
71                'cust_main'   => $cust_main,
72                'actionlabel' => emt('Enter credit'),
73                'width'       => 616, #make room for reasons #540 default
74   &>
75 % }
76 % if ( $curuser->access_right('Credit line items') ) { 
77   <% $s++ ? ' | ' : '' %>
78   <& /elements/popup_link-cust_main.html,
79                'label'       => emt('Credit line items'),
80                #'action'      => "${p}search/cust_bill_pkg.cgi?nottax=1;type=select",
81                'action'      => "${p}edit/credit-cust_bill_pkg.html",
82                'cust_main'   => $cust_main,
83                'actionlabel' => emt('Credit line items'),
84                'width'       => 968, #763,
85                'height'      => 575,
86   &>
87 % } 
88 <% $s ? '<BR>' : '' %>
89
90 %# refund links
91
92 % $s = 0;
93 % if ( $payby{'BILL'} && $curuser->access_right(['Post refund', 'Post check refund']) ) { 
94   <% $s++ ? ' | ' : '' %>
95   <& /elements/popup_link-cust_main.html,
96                'label'       => emt('Enter check refund'),
97                'action'      => "${p}edit/cust_refund.cgi?popup=1;payby=BILL",
98                'cust_main'   => $cust_main,
99                'actionlabel' => emt('Enter check refund'),
100                'width'       => 392,
101   &>
102 % } 
103
104 % if ( $payby{'CASH'} && $curuser->access_right(['Post refund', 'Post cash refund']) ) { 
105   <% $s++ ? ' | ' : '' %>
106   <& /elements/popup_link-cust_main.html,
107                'label'       => emt('Enter cash refund'),
108                'action'      => "${p}edit/cust_refund.cgi?popup=1;payby=CASH",
109                'cust_main'   => $cust_main,
110                'actionlabel' => emt('Enter cash refund'),
111                'width'       => 392,
112   &>
113 % } 
114
115 %# someday, perhaps.  very few gateways let you do unlinked refunds at all.
116 %# Authorize.net makes you sign a special form
117 %#
118 %#    % if ( ( $payby{'CARD'} || $payby{'DCRD'} )
119 %#    %        && $curuser->access_right('Process refund')
120 %#    %        && ! $cust_main->is_encrypted($cust_main->payinfo)
121 %#    %      ) {
122 %#      <% $s++ ? ' | ' : '' %>
123 %#      <A HREF="<% $p %>misc/refund.cgi?payby=CARD;custnum=<% $custnum %>">Process credit card refund</A>
124 %#    % } 
125 %#    
126 %#    % if ( ( $payby{'CHEK'} || $payby{'DCHK'} )
127 %#    %        && $curuser->access_right('Process refund')
128 %#    %        && ! $cust_main->is_encrypted($cust_main->payinfo)
129 %#    %      ) {
130 %#      <% $s++ ? ' | ' : '' %>
131 %#      <A HREF="<% $p %>misc/refund.cgi?payby=CHEK;custnum=<% $custnum %>">Process electronic check (ACH) refund</A>
132 %#    % } 
133
134 % if ( $payby{'MCRD'} && $curuser->access_right('Post refund') ) { 
135   <% $s++ ? ' | ' : '' %>
136   <A HREF="<% $p %>edit/cust_refund.cgi?payby=MCRD;custnum=<% $custnum %>"><% mt('Post manual (offline/POS) credit card refund') |h %></A>
137 % } 
138
139     </TD>
140     <TD ALIGN="right" VALIGN="top">
141
142 %# invoice reports, combined statement
143 % if ( $curuser->access_right('List invoices') ) { 
144 %   if ( $conf->exists('cust_main-print_statement_link')
145 %        and $num_cust_bill > 0 ) {
146   <A HREF="<% $p %>view/cust_main_statement-pdf.cgi?<% $custnum %>"><%
147   mt('Print a current statement') |h %></A>
148   <BR>
149 %   }
150   <A HREF="<% $p %>search/report_cust_bill.html?custnum=<% $custnum %>"><% mt('Invoice reports') |h %></A>
151 % } 
152 <BR>
153
154 %# XXX payments, credits, refund reports
155
156 %# tax exemption link
157
158 % my $view_exemptions = $curuser->access_right('View customer tax exemptions');
159 % my $add_adjustment = ( $conf->exists('enable_tax_adjustments')
160 %                       && $curuser->access_right('Add customer tax adjustment')
161 %                      );
162 % if ( $view_exemptions || $add_adjustment ) {
163
164 %   if ( $view_exemptions ) {
165       <A HREF="<% $p %>search/cust_tax_exempt_pkg.cgi?custnum=<% $custnum %>"><% mt('View tax exemptions') |h %></A>
166       <% $add_adjustment ? '|' : '' %>
167 %   } 
168
169 %   if ( $add_adjustment ) {
170       <& /elements/popup_link.html, {
171            'action' => $p.'edit/cust_tax_adjustment.html?custnum='. $cust_main->custnum,
172            'label'  => emt('Add tax adjustment'),
173            'actionlabel' => emt('Add tax adjustment'),
174            'height' => 200,
175          }
176       &>
177       |
178       <A HREF="<% $p %>search/cust_tax_adjustment.html?custnum=<% $custnum %>"><% mt('View tax adjustments') |h %></A>
179 %   } 
180
181   <BR>
182 % }
183
184 %# batched payment links
185
186 % if ( ( $conf->exists('batch-enable') || $conf->config('batch-enable_payby') )
187 %      && $curuser->access_right('View customer batched payments')
188 %    )
189 % { 
190     <% mt('View batched payments:') |h %> 
191 %   foreach my $status (qw( Queued In-transit Complete All )) {
192       <A HREF="<% $p %>search/cust_pay_batch.cgi?status=<% $status{$status} %>;custnum=<% $custnum %>"><% mt($status) |h %></A> 
193       <% $status ne 'All' ? '|' : '' %>
194 %   }
195     <BR>
196 % } 
197
198 %# pending payment links
199
200 % if ( $curuser->access_right('View customer pending payments')
201 %      && scalar($cust_main->cust_pay_pending)
202 %    )
203 % {
204     <A HREF="<% $p %>search/cust_pay_pending.html?magic=_date;statusNOT=done;custnum=<% $custnum %>"><% mt('View pending payments') |h %></A><BR>
205 % }
206
207     </TD>
208   </TR>
209   <TR>
210     <TD COLSPAN=2>
211
212 %# and now the table
213
214 <& /elements/table-grid.html &>
215 % my $bgcolor1 = '#eeeeee';
216 %   my $bgcolor2 = '#ffffff';
217 %   my $bgcolor = '';
218
219 <TR>
220   <TH CLASS="grid" BGCOLOR="#cccccc"><% mt('Date') |h %></TH>
221   <TH CLASS="grid" BGCOLOR="#cccccc"><% mt('Description') |h %></TH>
222   <TH CLASS="grid" BGCOLOR="#cccccc"><FONT SIZE=-1><% mt('Invoice') |h %></FONT></TH>
223   <TH CLASS="grid" BGCOLOR="#cccccc"><FONT SIZE=-1><% mt('Payment') |h %></FONT></TH>
224   <TH CLASS="grid" BGCOLOR="#cccccc"><FONT SIZE=-1><% mt('In-house Credit') |h %></FONT></TH>
225   <TH CLASS="grid" BGCOLOR="#cccccc"><FONT SIZE=-1><% mt('Refund') |h %></FONT></TH>
226   <TH CLASS="grid" BGCOLOR="#cccccc"><FONT SIZE=-1><% mt('Balance') |h %></FONT></TH>
227 </TR>
228
229 %#display payment history
230
231 %my $money_char = $conf->config('money_char') || '$';
232 %
233 %sub balance_forward_row {
234 %  my( $b, $date, $money_char ) = @_;
235 %  ( my $balance_forward = $money_char. $b ) =~ s/^\$\-/-&nbsp;\$/;
236
237    <TR ID="balance_forward_row">
238      <TD CLASS="grid" BGCOLOR="#dddddd">
239        <% time2str($date_format, $date) %>
240      </TD>
241
242      <TD CLASS="grid" BGCOLOR="#dddddd">
243        <I><% mt("Starting balance on [_1]", time2str($date_format, $date) ) |h %></I>
244        (<A HREF="javascript:void(0);" onClick="show_history();"><% mt('show prior history') |h %></A>)
245      </TD>
246
247      <TD CLASS="grid" BGCOLOR="#dddddd"></TD>
248      <TD CLASS="grid" BGCOLOR="#dddddd"></TD>
249      <TD CLASS="grid" BGCOLOR="#dddddd"></TD>
250      <TD CLASS="grid" BGCOLOR="#dddddd"></TD>
251      <TD CLASS="grid" BGCOLOR="#dddddd" ALIGN="right"><I><% $balance_forward %></I></TD>
252
253    </TR>
254 %}
255 %
256 %my $balance = 0;
257 %my %target = ();
258 %
259 %my $years =  $conf->config('payment_history-years') || 2;
260 %my $older_than = time - $years * 31556926; #60*60*24*365.2422
261 %my $hidden = 0;
262 %my $seen = 0;
263 %my $old_history = 0;
264 %my $lastdate = 0;
265 %
266 %foreach my $item ( sort { $a->{'date'} <=> $b->{'date'} } @history ) {
267 %
268 %  $lastdate = $item->{'date'};
269 %
270 %  my $display;
271 %  if ( $item->{'date'} < $older_than ) {
272 %    $display = ' STYLE="display:none" ';
273 %    $hidden = 1;
274 %  } else {
275 %
276 %    $display = '';
277 %
278 %    if ( $hidden && ! $seen++ ) {
279 %      balance_forward_row($balance, $item->{'date'}, $money_char);
280 %    }
281 %
282 %  }
283 %
284 %  if ( $bgcolor eq $bgcolor1 ) {
285 %    $bgcolor = $bgcolor2;
286 %  } else {
287 %    $bgcolor = $bgcolor1;
288 %  }
289 %
290 %  my $charge  = exists($item->{'charge'})
291 %                  ? sprintf("$money_char\%.2f", $item->{'charge'})
292 %                  : exists($item->{'charge_nobal'})
293 %                    ? sprintf("$money_char\%.2f", $item->{'charge_nobal'})
294 %                    : '';
295 %
296 %  my $payment = exists($item->{'payment'})
297 %                  ? sprintf("-&nbsp;$money_char\%.2f", $item->{'payment'})
298 %                  : '';
299 %
300 %  $payment ||= sprintf( "<DEL>-&nbsp;$money_char\%.2f</DEL>",
301 %                        $item->{'void_payment'}
302 %                      )
303 %    if exists($item->{'void_payment'});
304 %
305 %  my $credit  = exists($item->{'credit'})
306 %                  ? sprintf("-&nbsp;$money_char\%.2f", $item->{'credit'})
307 %                  : '';
308 %
309 %  my $refund  = exists($item->{'refund'})
310 %                  ? sprintf("$money_char\%.2f", $item->{'refund'})
311 %                  : '';
312 %
313 %  my $target = exists($item->{'target'}) ? $item->{'target'} : '';
314 %
315 %  $balance += $item->{'charge'}  if exists $item->{'charge'};
316 %  $balance -= $item->{'payment'} if exists $item->{'payment'};
317 %  $balance -= $item->{'credit'}  if exists $item->{'credit'};
318 %  $balance += $item->{'refund'}  if exists $item->{'refund'};
319 %  $balance = sprintf("%.2f", $balance);
320 %  $balance =~ s/^\-0\.00$/0.00/; #yay ieee fp
321 %  ( my $showbalance = $money_char. $balance ) =~ s/^\$\-/-&nbsp;\$/;
322 %
323 %
324
325
326   <TR <% $display ? $display.' ID="old_history'.$old_history++.'"'  : ''%>>
327     <TD VALIGN="top" CLASS="grid" BGCOLOR="<% $bgcolor %>">
328 % unless ( !$target || $target{$target}++ ) { 
329
330         <A NAME="<% $target %>">
331 % } 
332
333       <% time2str($date_format, $item->{'date'}) %>
334 % if ( $target && $target{$target} == 1 ) { 
335
336         </A>
337 % } 
338
339       </FONT>
340     </TD>
341     <TD CLASS="grid" BGCOLOR="<% $bgcolor %>">
342       <% $item->{'desc'} %>
343     </TD>
344     <TD VALIGN="top" ALIGN="right" CLASS="grid" BGCOLOR="<% $bgcolor %>">
345       <% $charge  %>
346     </TD>
347     <TD VALIGN="top" ALIGN="right" CLASS="grid" BGCOLOR="<% $bgcolor %>">
348       <% $payment %>
349     </TD>
350     <TD VALIGN="top" ALIGN="right" CLASS="grid" BGCOLOR="<% $bgcolor %>">
351       <% $credit  %>
352     </TD>
353     <TD VALIGN="top" ALIGN="right" CLASS="grid" BGCOLOR="<% $bgcolor %>">
354       <% $refund  %>
355     </TD>
356     <TD VALIGN="top" ALIGN="right" CLASS="grid" BGCOLOR="<% $bgcolor %>">
357       <% $showbalance %>
358     </TD>
359   </TR>
360 % } 
361
362 %if ( scalar(@history) && $hidden && ! $seen++ ) {
363 %  balance_forward_row($balance, $lastdate, $money_char);
364 %}
365
366 </TABLE>
367     </TD>
368   </TR>
369 </TABLE>
370
371 <SCRIPT TYPE="text/javascript">
372
373 function show_history () {
374   //alert('showing history!');
375
376   var balance_forward_row = document.getElementById('balance_forward_row');
377
378   balance_forward_row.style.display = 'none';
379   for ( var i = 0; i < <% $old_history %>; i++ ) {
380     var oldRow = document.getElementById('old_history'+i);
381     oldRow.style.display = '';
382   }
383
384 }
385
386 </SCRIPT>
387
388 <%init>
389
390 my( $cust_main ) = @_;
391 my $custnum = $cust_main->custnum;
392
393 my $conf = new FS::Conf;
394 my $date_format = $conf->config('date_format') || '%m/%d/%Y';
395
396 my $curuser = $FS::CurrentUser::CurrentUser;
397
398 my @payby = grep /\w/, $conf->config('payby');
399 #@payby = (qw( CARD DCRD CHEK DCHK LECB BILL CASH WEST COMP ))
400 @payby = (qw( CARD DCRD CHEK DCHK LECB BILL CASH COMP ))
401   unless @payby;
402 my %payby = map { $_=>1 } @payby;
403
404 my %status = (
405   'Queued'     => 'O', #Open
406   'In-transit' => 'I',
407   'Complete'   => 'R', #Resolved
408   'All'        => '',
409 );
410
411 #get payment history
412 my @history = ();
413
414 my %opt = (
415   ( map { $_ => scalar($conf->config($_)) }
416         qw( card_refund-days date_format )
417   ),
418   ( map { $_ => $conf->exists($_) } 
419         qw( deleteinvoices deletepayments deleterefunds pkg-balances )
420   )
421 );
422
423 $opt{'date_format'} ||= '%m/%d/%Y';
424
425 #legacy invoices
426 foreach my $legacy_cust_bill ($cust_main->legacy_cust_bill) {
427   push @history, {
428     'date'   => $legacy_cust_bill->_date,
429     'desc'   => include('payment_history/legacy_invoice.html', $legacy_cust_bill, %opt ),
430     'charge_nobal' => $legacy_cust_bill->charged,
431   };
432 }
433
434 #invoices
435 my $num_cust_bill = 0;
436 foreach my $cust_bill ($cust_main->cust_bill) {
437   push @history, {
438     'date'   => $cust_bill->_date,
439     'desc'   => include('payment_history/invoice.html', $cust_bill, %opt ),
440     'charge' => $cust_bill->charged,
441   };
442   $num_cust_bill++;
443 }
444
445 #statements
446 foreach my $cust_statement ($cust_main->cust_statement) {
447   push @history, {
448     'date'   => $cust_statement->_date,
449     'desc'   => include('payment_history/statement.html', $cust_statement, %opt ),
450     #'charge' => $cust_bill->charged,
451   };
452 }
453
454 #payments (some false laziness w/credits)
455 foreach my $cust_pay ($cust_main->cust_pay) {
456   push @history, {
457     'date'    => $cust_pay->_date,
458     'desc'    => include('payment_history/payment.html', $cust_pay, %opt ),
459     'payment' => $cust_pay->paid,
460     #'target'  => $target, #XXX
461   };
462 }
463
464 #pending payments 
465 foreach my $cust_pay_pending ($cust_main->cust_pay_pending) {
466   push @history, {
467     'date'    => $cust_pay_pending->_date,
468     'desc'    => include('payment_history/pending_payment.html', $cust_pay_pending, %opt ),
469     'void_payment' => $cust_pay_pending->paid, 
470   };
471 }
472
473
474 #voided payments
475 foreach my $cust_pay_void ($cust_main->cust_pay_void) {
476   push @history, {
477     'date'   => $cust_pay_void->_date,
478     'desc'   => include('payment_history/voided_payment.html', $cust_pay_void, %opt ),
479     'void_payment' => $cust_pay_void->paid,
480   };
481
482 }
483
484 #declined payments
485 foreach my $cust_pay_pending ($cust_main->cust_pay_pending_attempt) {
486   push @history, {
487     'date'    => $cust_pay_pending->_date,
488     'desc'    => include('payment_history/attempted_payment.html', $cust_pay_pending, %opt ),
489     'void_payment' => $cust_pay_pending->paid, #??
490     #'target'  => $target, #XXX
491   };
492 }
493 #declined batch payments
494 foreach my $cust_pay_batch (
495   $cust_main->cust_pay_batch(hashref => {status => 'Declined'})
496 ) {
497   my $pay_batch = $cust_pay_batch->pay_batch;
498   push @history, {
499     'date'    => $pay_batch->upload,
500     'desc'    => include('payment_history/attempted_batch_payment.html', $cust_pay_batch, %opt),
501     'void_payment' => $cust_pay_batch->amount,
502   };
503 }
504
505 #credits (some false laziness w/payments)
506 foreach my $cust_credit ($cust_main->cust_credit) {
507   push @history, {
508     'date'   => $cust_credit->_date,
509     'desc'   => include('payment_history/credit.html', $cust_credit, %opt ),
510     'credit' => $cust_credit->amount,
511   };
512
513 }
514
515 #refunds
516 foreach my $cust_refund ($cust_main->cust_refund) {
517   push @history, {
518     'date'   => $cust_refund->_date,
519     'desc'   => include('payment_history/refund.html', $cust_refund, %opt),
520     'refund' => $cust_refund->refund,
521   };
522
523 }
524
525 sub translate_payby {
526     my ($payby,$payinfo) = (shift,shift);
527     my %payby = (
528         BILL    => $payinfo ? emt('Check #') : '',
529         CHEK    => emt('Electronic check '),
530         PREP    => emt('Prepaid card '),
531         CARD    => emt('Credit card #'),
532         COMP    => emt('Complimentary by '),
533         CASH    => emt('Cash'),
534         WEST    => emt('Western Union'),
535         MCRD    => emt('Manual credit card'),
536     );
537     $payby = (exists $payby{$payby}) ? $payby{$payby} : $payby; 
538     $payby;
539 };
540
541 sub translate_payby_refund {
542     my ($payby,$payinfo) = (shift,shift);
543     my %payby = (
544         BILL    => $payinfo ? emt('Check #') : emt('Check'),
545         CHEK    => emt('Electronic check '),
546         CARD    => emt('Credit card #'),
547         COMP    => emt('Complimentary by '),
548     );
549     $payby = (exists $payby{$payby}) ? $payby{$payby} : $payby; 
550     $payby;
551 };
552
553 sub translate_payinfo {
554     my $object = shift;
555     my $payby = $object->payby;
556     my $payinfo = $object->payinfo;
557
558     if ( $payby eq 'CARD' ) {
559         $payinfo = $object->paymask;
560     } elsif ( $payby eq 'CHEK' ) {
561         #false laziness w/payinfo_Mixin::payby_payinfo_pretty, should use that
562         my( $account, $aba ) = split('@', $object->paymask );
563         if ( $aba =~ /^(\d{5})\.(\d{3})$/ ) { #blame canada
564           my($branch, $routing) = ($1, $2);
565           $payinfo = emt("Routing [_1], Branch [_2], Acct [_3]",
566                          $routing, $branch, $account);
567         } else {
568           $payinfo = emt("Routing [_1], Acct [_2]", $aba, $account);
569         }
570     }
571
572     ($payby,$payinfo);
573 }
574
575 sub areyousure_link {
576     my ($url,$msg,$title,$label) = (shift,shift,shift,shift);
577     ' (<A HREF="javascript:areyousure(\''.$url.'\',\''.$msg.'\')" TITLE="'.$title.'">'.$label.'</A>)';
578 }
579
580 </%init>