summaryrefslogtreecommitdiff
path: root/httemplate/edit/process/REAL_cust_pkg.cgi
blob: fd2893487c0aad509c6c0072cf23f1a4e0f8d51c (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
%if ( $error ) {
%  $cgi->param('error', $error);
<% $cgi->redirect(popurl(2). "REAL_cust_pkg.cgi?". $cgi->query_string ) %>
%} else { 
%  my $custnum = $new->custnum;
%  my $show = $curuser->default_customer_view =~ /^(jumbo|packages)$/
%               ? ''
%               : ';show=packages';
%  my $frag = "cust_pkg$pkgnum"; #hack for IE ignoring real #fragment
<% $cgi->redirect(popurl(3). "view/cust_main.cgi?custnum=$custnum$show;fragment=$frag#$frag" ) %>
%}
<%init>

my $curuser = $FS::CurrentUser::CurrentUser;

die "access denied"
  unless $curuser->access_right('Edit customer package dates');

my $pkgnum = $cgi->param('pkgnum') or die;
my $old = qsearchs('cust_pkg',{'pkgnum'=>$pkgnum});
my %hash = $old->hash;
foreach ( qw( start_date setup bill last_bill contract_end ) ) {
  if ( $cgi->param($_) =~ /^(\d+)$/ ) {
    $hash{$_} = $1;
  } else {
    $hash{$_} = '';
  }
  # adjourn, expire, resume not editable this way
}

my $new;
my $error;
$new = new FS::cust_pkg \%hash;
$error = $new->replace($old);

if (!$error) {
  my @supp_pkgs = $old->supplemental_pkgs;
  foreach $new (@supp_pkgs) {
    foreach ( qw( start_date setup contract_end ) ) {
      # propagate these to supplementals
      $new->set($_, $hash{$_});
    }
    if ( $hash{'bill'} ne $old->get('bill') ) {
      if ( $hash{'bill'} and $old->get('bill') ) {
        # adjust by the same interval
        my $diff = $hash{'bill'} - $old->get('bill');
        $new->set('bill', $new->get('bill') + $diff);
      } else {
        # absolute date
        $new->set('bill', $hash{'bill'});
      }
    }
    $error = $new->replace;
    $error .= ' (supplemental package '.$new->pkgnum.')' if $error; 
    last if $error;
  }
}

</%init>