RT# 74435 - removed excess cust_pay code not needed in V3
[freeside.git] / httemplate / edit / process / cust_refund.cgi
1 %if ( $error ) {
2 %  $cgi->param('error', $error);
3 <% $cgi->redirect(popurl(2). "cust_refund.cgi?". $cgi->query_string ) %>
4 %} else {
5 %
6 %  if ( $link eq 'popup' ) {
7 %
8 <% header('Refund entered') %>
9     <SCRIPT TYPE="text/javascript">
10       window.top.location.reload();
11     </SCRIPT>
12
13     </BODY></HTML>
14 %  } else {
15 <% $cgi->redirect(popurl(3). "view/cust_main.cgi?custnum=$custnum;show=payment_history") %>
16 %  }
17 %}
18 <%init>
19
20 die "access denied"
21   unless $FS::CurrentUser::CurrentUser->access_right('Refund payment')
22       || $FS::CurrentUser::CurrentUser->access_right('Post refund');
23
24 my $conf = new FS::Conf;
25
26 $cgi->param('custnum') =~ /^(\d*)$/ or die "Illegal custnum!";
27 my $custnum = $1;
28 my $cust_main = qsearchs('cust_main', { 'custnum' => $custnum } )
29   or die "unknown custnum $custnum";
30
31 my $link    = $cgi->param('popup') ? 'popup' : '';
32
33 my $payby = $cgi->param('payby');
34
35 die "access denied"
36   unless $FS::CurrentUser::CurrentUser->refund_access_right($payby);
37
38 $cgi->param('reasonnum') =~ /^(-?\d+)$/ or die "Illegal reasonnum";
39 my ($reasonnum, $error) = $m->comp('/misc/process/elements/reason');
40 $cgi->param('reasonnum', $reasonnum) unless $error;
41
42 if ( $error ) {
43   # do nothing
44 } elsif ( $payby =~ /^(CARD|CHEK)$/ ) { 
45   my %options = ();
46   my $bop = $FS::payby::payby2bop{$1};
47
48   my %payby2fields = (
49   'CARD' => [ qw( address1 address2 city county state zip country ) ],
50   'CHEK' => [ qw( ss paytype paystate stateid stateid_state ) ],
51   );
52   my %type = ( 'CARD' => 'credit card',
53              'CHEK' => 'electronic check (ACH)',
54              );
55
56 my( $cust_pay, $cust_payby, $payinfo, $paycvv, $month, $year, $payname );
57 my $paymask = '';
58
59 ## get cust pay info if paynum exists
60 if ( $cgi->param('paynum') > 0) {
61   $cust_pay = qsearchs({
62     'table'     => 'cust_pay',
63     'hashref'   => { 'paynum' => $cgi->param('paynum') },
64     'select'    => 'cust_pay.*, cust_pay_batch.payname ',
65     'addl_from' => "left join cust_pay_batch on cust_pay_batch.batchnum = cust_pay.batchnum and cust_pay_batch.custnum = $custnum ",
66   });
67 }
68
69 ##
70 # now run the refund
71 ##
72
73   $cgi->param('refund') =~ /^(\d*)(\.\d{2})?$/
74     or die "illegal refund amount ". $cgi->param('refund');
75   my $refund = "$1$2";
76   $cgi->param('paynum') =~ /^(\d*)$/ or die "Illegal paynum!";
77   my $paynum = $1;
78   my $paydate = $cgi->param('exp_year'). '-'. $cgi->param('exp_month'). '-01';
79
80   if ( $cgi->param('batch') ) {
81     $paydate = "2037-12-01" unless $paydate;
82     $error ||= $cust_main->batch_card(
83                                      'payby'    => $payby,
84                                      'amount'   => $refund,
85                                      #'payinfo'  => $payinfo,
86                                      #'paydate'  => $paydate,
87                                      #'payname'  => $payname,
88                                      'paycode'  => 'C',
89                                      map { $_ => scalar($cgi->param($_)) }
90                                        @{$payby2fields{$payby}}
91                                    );
92     errorpage($error) if $error;
93
94     my %hash = map {
95       $_, scalar($cgi->param($_))
96     } fields('cust_refund');
97
98     ## unapply payment before creating refund.
99     while ( $cust_pay && $cust_pay->unapplied < $refund ) {
100       my @cust_bill_pay = $cust_pay->cust_bill_pay;
101       last unless @cust_bill_pay;
102       my $cust_bill_pay = pop @cust_bill_pay;
103       my $error = $cust_bill_pay->delete;
104       last if $error;
105     }
106
107     my $new = new FS::cust_refund ( { 'paynum' => $paynum,
108                                       %hash,
109                                   } );
110     $error = $new->insert;
111
112   # if not a batch refund run realtime.
113   } else {
114     $options{'paydate'} = $paydate if $paydate =~ /^\d{2,4}-\d{1,2}-01$/;
115     $error = $cust_main->realtime_refund_bop( $bop, 'amount' => $refund,
116                                                   'paynum' => $paynum,
117                                                   'reasonnum' => $reasonnum,
118                                                   %options );
119   }
120 } else { # run cash refund.
121   my %hash = map {
122     $_, scalar($cgi->param($_))
123   } fields('cust_refund');
124   my $paynum = $cgi->param('paynum');
125   $paynum =~ /^(\d*)$/ or die "Illegal paynum!";
126   if ($paynum) {
127     my $cust_pay = qsearchs('cust_pay',{ 'paynum' => $paynum });
128     die "Could not find paynum $paynum" unless $cust_pay;
129     $error = $cust_pay->refund(\%hash);
130   } else {
131     my $new = new FS::cust_refund ( \%hash );
132     $error = $new->insert;
133   }
134 }
135
136 </%init>