summaryrefslogtreecommitdiff
path: root/httemplate/view/cust_main/payment_history/payment.html
blob: 2e24b17858e102f05b92784cfe301d740ea9e1e0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
<% $pre %>Payment<% $post %> by <% $otaker %>
<% "$info$desc$view$apply$refund$void$delete$unapply" %>
<%init>

my( $cust_pay, %opt ) = @_;

my $curuser = $FS::CurrentUser::CurrentUser;

my $payby = $cust_pay->payby;

my $payinfo;
if ( $payby eq 'CARD' ) {
  $payinfo = $cust_pay->paymask;
} elsif ( $payby eq 'CHEK' ) {
  my( $account, $aba ) = split('@', $cust_pay->paymask );
  $payinfo = "ABA $aba, Acct #$account";
} else {
  $payinfo = $cust_pay->payinfo;
}
my @cust_bill_pay = $cust_pay->cust_bill_pay;
my @cust_pay_refund = $cust_pay->cust_pay_refund;

my $target = "$payby$payinfo";
$payby =~ s/^BILL$/Check #/ if $payinfo;
$payby =~ s/^CHEK$/Electronic check /;
$payby =~ s/^PREP$/Prepaid card /;
$payby =~ s/^CARD$/Credit card #/; 
$payby =~ s/^COMP$/Complimentary by /; 
$payby =~ s/^CASH$/Cash/;
$payby =~ s/^WEST$/Western Union/;
$payby =~ s/^MCRD$/Manual credit card/;
$payby =~ s/^BILL$//;
my $info = $payby ? "($payby$payinfo)" : '';

my( $pre, $post, $desc, $apply, $ext ) = ( '', '', '', '', '' );
if (    scalar(@cust_bill_pay)   == 0
     && scalar(@cust_pay_refund) == 0 ) {
  #completely unapplied
  $pre = '<B><FONT COLOR="#FF0000">Unapplied ';
  $post = '</FONT></B>';
  if ( $curuser->access_right('Apply payment') ) {
    if ( $cust_pay->cust_main->total_owed > 0 ) {
      $apply = ' ('.
               include( '/elements/popup_link.html',
                          'label'       => 'apply',
                          'action'      => "${p}edit/cust_bill_pay.cgi?".
                                           $cust_pay->paynum,
                          'actionlabel' => 'Apply payment',
                          'width'       => 392,
                          #default# 'height' => 336,
                      ).
                ')';
    }
    if ( $cust_pay->cust_main->total_unapplied_refunds > 0 ) {
      $apply.= ' ('.
               include( '/elements/popup_link.html',
                          'label'       => 'apply to refund',
                          'action'      => "${p}edit/cust_pay_refund.cgi?".
                                           $cust_pay->paynum,
                          'actionlabel' => 'Apply payment to refund',
                          'width'       => 392,
                          #default# 'height' => 336,
                      ).
               ')';
    }
  }
} elsif (    scalar(@cust_bill_pay)   == 1
          && scalar(@cust_pay_refund) == 0
          && $cust_pay->unapplied == 0     ) {
  #applied to one invoice, the usual situation
  $desc = ' '. $cust_bill_pay[0]->applied_to_invoice;
} elsif (    scalar(@cust_bill_pay)   == 0
          && scalar(@cust_pay_refund) == 1
          && $cust_pay->unapplied == 0     ) {
  #applied to one refund
  $desc = ' refunded on '. time2str("%D", $cust_pay_refund[0]->_date);
} else {
  #complicated
  $desc = '<BR>';
  foreach my $app ( sort { $a->_date <=> $b->_date }
                         ( @cust_bill_pay, @cust_pay_refund ) ) {
    if ( $app->isa('FS::cust_bill_pay') ) {
      $desc .= '&nbsp;&nbsp;'.
               '$'. $app->amount.
               ' '. $app->applied_to_invoice.
               '<BR>';
               #' on '. time2str("%D", $cust_bill_pay->_date).
    } elsif ( $app->isa('FS::cust_pay_refund') ) {
      $desc .= '&nbsp;&nbsp;'.
               '$'. $app->amount.
               ' refunded on '. time2str("%D", $app->_date).
               '<BR>';
    } else {
      die "$app is not a FS::cust_bill_pay or FS::cust_pay_refund";
    }
  }
  if ( $cust_pay->unapplied > 0 ) {
    $desc .= '&nbsp;&nbsp;'.
             '<B><FONT COLOR="#FF0000">$'.
             $cust_pay->unapplied. ' unapplied</FONT></B>';
    if ( $curuser->access_right('Apply payment') ) {
      if ( $cust_pay->cust_main->total_owed > 0 ) {
        $apply = ' ('.
                 include( '/elements/popup_link.html',
                            'label'      => 'apply',
                            'action'     => "${p}edit/cust_bill_pay.cgi?".
                                            $cust_pay->paynum,
                            'actionlabel' => 'Apply payment',
                            'width'      => 392,
                            #default# 'height' => 336,
                        ).
                 ')';
      }
      if ( $cust_pay->cust_main->total_unapplied_refunds > 0 ) {
        $apply.= ' ('.
                 include( '/elements/popup_link.html',
                            'label'      => 'apply to refund',
                            'action'     => "${p}edit/cust_pay_refund.cgi?".
                                            $cust_pay->paynum,
                            'actionlabel' => 'Apply payment to refund',
                            'width'      => 392,
                            #default# 'height' => 336,
                        ).
                 ')';
      }
    }
    $desc .= '<BR>';
  }
}

my $view =
  ' ('. include('/elements/popup_link.html',
                  'label'     => 'view receipt',
                  'action'    => "${p}view/cust_pay.html?link=popup;paynum=".
                                  $cust_pay->paynum,
                  'actionlabel' => 'Payment Receipt',
               ).
   ')';

my $refund = '';
my $refund_days = $opt{'card_refund-days'} || 120;
if (    $cust_pay->closed !~ /^Y/i
     && $cust_pay->payby =~ /^(CARD|CHEK)$/
     && time-$cust_pay->_date < $refund_days*86400
     && $cust_pay->unrefunded > 0
     && $curuser->access_right('Refund payment')
) {
  $refund = qq! (<A HREF="${p}edit/cust_refund.cgi?payby=$1;!.
            qq!paynum=!. $cust_pay->paynum. '"'.
            qq! TITLE="Send a refund for this payment to the payment gateway"!.
            qq!>refund</A>)!;
}

my $void = '';
if (    $cust_pay->closed !~ /^Y/i
     && (    ( $cust_pay->payby eq 'CARD'
               && $curuser->access_right('Credit card void')
             )
          || ( $cust_pay->payby eq 'CHEK'
               && $curuser->access_right('Echeck void')
             )
          || ( $cust_pay->payby !~ /^(CARD|CHEK)$/
               && $curuser->access_right('Regular void')
             )
        )
   )
{
  $void = qq! (<A HREF="javascript:areyousure('!.
          qq!${p}misc/void-cust_pay.cgi?!. $cust_pay->paynum.
          qq!', 'Are you sure you want to void this payment?')"!.
          qq! TITLE="Void this payment from the database!.
            ( $cust_pay->payby =~ /^(CARD|CHEK)$/
              ? ' (do not send anything to the payment gateway)'
              : '' 
            ). '"'.
          qq!>void</A>)!;
}

my $delete = '';
if ( $cust_pay->closed !~ /^Y/i
     && $opt{'deletepayments'}
     && $curuser->access_right('Delete payment')
   )
{
  $delete = qq! (<A HREF="javascript:areyousure('!.
            qq!${p}misc/delete-cust_pay.cgi?!. $cust_pay->paynum.
            qq!', 'Are you sure you want to delete this payment?')"!.
            qq! TITLE="Delete this payment from the database completely - not recommended"!.
            qq!>delete</A>)!;
}

my $unapply = '';
if (    $cust_pay->closed !~ /^Y/i
     && scalar(@cust_bill_pay)           
     && $curuser->access_right('Unapply payment')
   )
{
  $unapply = qq! (<A HREF="javascript:areyousure('!.
             qq!${p}misc/unapply-cust_pay.cgi?!. $cust_pay->paynum.
             qq!', 'Are you sure you want to unapply this payment?')"!.
             qq! TITLE="Keep this payment, but dissociate it from the invoices it is currently applied against"!.
             qq!>unapply</A>)!;
}

my $otaker = $cust_pay->otaker;
$otaker = '<i>auto billing</i>'          if $otaker eq 'fs_daily';
$otaker = '<i>customer self-service</i>' if $otaker eq 'fs_selfservice';

</%init>