summaryrefslogtreecommitdiff
path: root/httemplate/edit/process/cust_pkg.cgi
blob: 25b82675883a09aae1e8619c200e52af502ed9ce (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
% if ($error) {
%   $cgi->param('error', $error);
%   $cgi->redirect(popurl(3). $error_redirect. '?'. $cgi->query_string );
% } elsif ( $action eq 'change' ) {

    <% header("Package changed") %>
      <SCRIPT TYPE="text/javascript">
        window.top.location.reload();
      </SCRIPT>
    </BODY>
    </HTML>

% } elsif ( $action eq 'bulk' ) {
%   $cgi->redirect(popurl(3). "view/cust_main.cgi?$custnum");
% } else {
%   die "guru exception #5: action is neither change nor bulk!";
% }
<%init>

my $error = '';

#untaint custnum
$cgi->param('custnum') =~ /^(\d+)$/;
my $custnum = $1;

my @remove_pkgnums = map {
  /^(\d+)$/ or die "Illegal remove_pkg value!";
  $1;
} $cgi->param('remove_pkg');

my( $action, $error_redirect );
my @pkgparts = ();
if ( $cgi->param('new_pkgpart') =~ /^(\d+)$/ ) { #came from misc/change_pkg.cgi
  $action = 'change';
  $error_redirect = "misc/change_pkg.cgi";
  @pkgparts = ($1);
} else { #came from edit/cust_pkg.cgi
  $action = 'bulk';
  $error_redirect = "edit/cust_pkg.cgi";
  foreach my $pkgpart ( map /^pkg(\d+)$/ ? $1 : (), $cgi->param ) {
    if ( $cgi->param("pkg$pkgpart") =~ /^(\d+)$/ ) {
      my $num_pkgs = $1;
      while ( $num_pkgs-- ) {
        push @pkgparts,$pkgpart;
      }
    } else {
      $error = "Illegal quantity";
      last;
    }
  }
}

$error ||= FS::cust_pkg::order($custnum,\@pkgparts,\@remove_pkgnums);

</%init>