summaryrefslogtreecommitdiff
path: root/httemplate/edit/process/cust_credit.cgi
blob: 9dcad7f682898b10baac0e3041f8129c706b58fd (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
%
%
%$cgi->param('custnum') =~ /^(\d*)$/ or die "Illegal custnum!";
%my $custnum = $1;
%
%$cgi->param('reasonnum') =~ /^(-?\d+)$/ or die "Illegal reasonnum";
%my $reasonnum = $1;
%
%my $oldAutoCommit = $FS::UID::AutoCommit;
%local $FS::UID::AutoCommit = 0;
%my $dbh = dbh;
%
%my $error = '';
%if ($reasonnum == -1) {
%
%  $error = 'Enter a new reason (or select an existing one)'
%    unless $cgi->param('newreasonnum') !~ /^\s*$/;
%  my $reason = new FS::reason({ 'reason_type' => $cgi->param('newreasonnumT'),
%                                'reason'      => $cgi->param('newreasonnum'),
%                              });
%  $error ||= $reason->insert;
%  $cgi->param('reasonnum', $reason->reasonnum)
%    unless $error;
%}
%
%unless ($error) {
%  my $new = new FS::cust_credit ( {
%    map {
%      $_, scalar($cgi->param($_));
%    } fields('cust_credit')
%  } );
%  $error = $new->insert;
%}
%
%if ( $error ) {
%  $cgi->param('reasonnum', $reasonnum);
%  $cgi->param('error', $error);
%  $dbh->rollback if $oldAutoCommit;
%
%  
<% $cgi->redirect(popurl(2). "cust_credit.cgi?". $cgi->query_string ) %>
%
%
%} else {
%
%  if ( $cgi->param('apply') eq 'yes' ) {
%    my $cust_main = qsearchs('cust_main', { 'custnum' => $custnum })
%      or die "unknown custnum $custnum";
%    $cust_main->apply_credits;
%  }
%  #print $cgi->redirect(popurl(3). "view/cust_main.cgi?$custnum");
%
%  $dbh->commit or die $dbh->errstr if $oldAutoCommit;
%  
<% header('Credit sucessful') %>
  <SCRIPT TYPE="text/javascript">
    window.top.location.reload();
  </SCRIPT>

  </BODY></HTML>
% }