RT#37064: Add action link to manually refund a payment [fixed redir link]
[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 $cgi->param('custnum') =~ /^(\d*)$/ or die "Illegal custnum!";
25 my $custnum = $1;
26 my $cust_main = qsearchs('cust_main', { 'custnum' => $custnum } )
27   or die "unknown custnum $custnum";
28
29 my $link    = $cgi->param('popup') ? 'popup' : '';
30
31 my $payby = $cgi->param('payby');
32
33 die "access denied"
34   unless $FS::CurrentUser::CurrentUser->refund_access_right($payby);
35
36 $cgi->param('reasonnum') =~ /^(-?\d+)$/ or die "Illegal reasonnum";
37 my ($reasonnum, $error) = $m->comp('/misc/process/elements/reason');
38 $cgi->param('reasonnum', $reasonnum) unless $error;
39
40 if ( $error ) {
41   # do nothing
42 } elsif ( $payby =~ /^(CARD|CHEK)$/ ) { 
43   my %options = ();
44   my $bop = $FS::payby::payby2bop{$1};
45   $cgi->param('refund') =~ /^(\d*)(\.\d{2})?$/
46     or die "illegal refund amount ". $cgi->param('refund');
47   my $refund = "$1$2";
48   $cgi->param('paynum') =~ /^(\d*)$/ or die "Illegal paynum!";
49   my $paynum = $1;
50   my $reason = $cgi->param('reason');
51   my $paydate = $cgi->param('exp_year'). '-'. $cgi->param('exp_month'). '-01';
52   $options{'paydate'} = $paydate if $paydate =~ /^\d{2,4}-\d{1,2}-01$/;
53   $error = $cust_main->realtime_refund_bop( $bop, 'amount' => $refund,
54                                                   'paynum' => $paynum,
55                                                   'reason' => $reason,
56                                                   %options );
57 } else {
58   my %hash = map {
59     $_, scalar($cgi->param($_))
60   } fields('cust_refund');
61   my $paynum = $cgi->param('paynum');
62   $paynum =~ /^(\d*)$/ or die "Illegal paynum!";
63   if ($paynum) {
64     my $cust_pay = qsearchs('cust_pay',{ 'paynum' => $paynum });
65     die "Could not find paynum $paynum" unless $cust_pay;
66     $error = $cust_pay->refund(\%hash);
67   } else {
68     my $new = new FS::cust_refund ( \%hash );
69     $error = $new->insert;
70   }
71 }
72
73 </%init>