This commit was generated by cvs2svn to compensate for changes in r4407,
[freeside.git] / httemplate / edit / process / cust_credit_bill.cgi
1 <%
2
3 $cgi->param('crednum') =~ /^(\d*)$/ or die "Illegal crednum!";
4 my $crednum = $1;
5
6 my $cust_credit = qsearchs('cust_credit', { 'crednum' => $crednum } )
7   or die "No such crednum";
8
9 my $cust_main = qsearchs('cust_main', { 'custnum' => $cust_credit->custnum } )
10   or die "Bogus credit:  not attached to customer";
11
12 my $custnum = $cust_main->custnum;
13
14 my $new;
15 if ($cgi->param('invnum') =~ /^Refund$/) {
16   $new = new FS::cust_refund ( {
17     'reason'  => $cust_credit->reason,
18     'refund'  => $cgi->param('amount'),
19     'payby'   => 'BILL',
20     #'_date'   => $cgi->param('_date'),
21     'payinfo' => 'Cash',
22     'crednum' => $crednum,
23   } );
24 } else {
25   $new = new FS::cust_credit_bill ( {
26     map {
27       $_, scalar($cgi->param($_));
28     #} qw(custnum _date amount invnum)
29     } fields('cust_credit_bill')
30   } );
31 }
32
33 my $error = $new->insert;
34
35 if ( $error ) {
36   $cgi->param('error', $error);
37   print $cgi->redirect(popurl(2). "cust_credit_bill.cgi?". $cgi->query_string );
38 } else {
39   print $cgi->redirect(popurl(3). "view/cust_main.cgi?$custnum");
40 }
41
42
43 %>