excel download fixes, #21937, #20337, etc.
[freeside.git] / httemplate / search / cust_pay_pending.html
1 <& elements/cust_pay_or_refund.html,
2                 'thing'         => 'pay_pending',
3                 'amount_field'  => 'paid',
4                 'name_singular' => 'pending payment',
5                 'name_verb'     => 'pending',
6                 'disable_link'  => 1,
7                 'disable_by'    => 1, #add otaker to cust_pay_pending?
8                 'addl_header'   => [ 'Time', 'Payment Status', ],
9                 'addl_fields'   => [ sub { time2str('%r', shift->_date ) },
10                                      $status_sub,
11                                    ],
12                 'redirect_empty' => $redirect_empty,
13 &>
14 <%init>
15
16 my %statusaction = (
17   'new'        => 'delete',
18   'pending'    => 'complete',
19   #'authorized' => '',
20   'captured'   => 'capture',
21   #'declined'   => '',
22   #wouldn't need to take action on a done state#'done'
23 );
24
25 my $edit_pending =
26   $FS::CurrentUser::CurrentUser->access_right('Edit customer pending payments');
27
28 my $status_sub = sub {
29   my $pending = shift;
30   my $return = $pending->status;
31   my $action = $statusaction{$pending->status};
32   return $return unless $action && $edit_pending;
33   my $link = include('/elements/popup_link.html',
34                        'action' => $p. 'edit/cust_pay_pending.html'.
35                                      '?paypendingnum='. $pending->paypendingnum.
36                                      ";action=$action",
37                        'label'  => $action,
38                        'color'  => '#ff0000',
39                        'width'  => 655,
40                        'height' => ( $action eq 'delete' ? 480 : 575 ),
41                        'actionlabel' => ucfirst($action). ' pending payment',
42                     );
43   $return. qq! <FONT SIZE="-1">($link)</FONT>!;
44 };
45
46 my $redirect_empty = sub {
47   my $cgi = shift;
48   if ( $cgi->param('custnum') =~ /^(\d+)$/ ) {
49     $p. "view/cust_main.cgi?$1";
50   } else {
51     '';
52   }
53 };
54
55 </%init>