merging RT 4.0.6
[freeside.git] / httemplate / misc / cancel_pkg.html
1 <& /elements/header-popup.html, mt($title) &>
2
3 <& /elements/error.html &>
4
5 <FORM NAME="sc_popup" ACTION="<% popurl(1) %>process/cancel_pkg.html" METHOD=POST>
6 <INPUT TYPE="hidden" NAME="pkgnum" VALUE="<% $pkgnum %>">
7 <INPUT TYPE="hidden" NAME="method" VALUE="<% $method %>">
8
9 <BR><BR>
10 <% emt(ucfirst($method)." [_1]", $part_pkg->pkg_comment) %>
11 <% ntable("#cccccc", 2) %>
12
13 % my $date_init = 0;
14 % if ($method eq 'expire' || $method eq 'adjourn' || $method eq 'resume') {
15 %   $submit =~ /^(\w*)\s/;
16   <& /elements/tr-input-date-field.html, {
17       'name'    => 'date',
18       'value'   => $date,
19       'label'   => mt("$1 package on"),
20       'format'  => $date_format,
21   } &>
22 %   $date_init = 1;
23 % }
24
25 % if ($method eq 'uncancel' ) {
26 %
27 % #XXX customer also requested setup
28 % # setup: what usefulness is changing or blanking this?  re-charge setup fee?
29 % #        an option that says that would be better if that's what we want to do
30
31 % # last_bill: isn't this informational?  what good would editing it do?
32 % #            something about invoice display?
33   <& /elements/tr-input-date-field.html, {
34       'name'    => 'last_bill',
35       'value'   => ( $cgi->param('last_bill') || $cust_pkg->get('last_bill') ),
36       'label'   => mt("Last bill date"),
37       'format'  => $date_format,
38   } &>
39
40   <& /elements/tr-input-date-field.html, {
41       'name'    => 'bill',
42       'value'   => ( $cgi->param('bill') || $cust_pkg->get('bill') ),
43       'label'   => mt("Next bill date"),
44       'format'  => $date_format,
45   } &>
46
47   <& /elements/tr-checkbox.html,
48        'label'  => mt("Uncancel even if a service can't be re-provisioned"),
49        'field'  => 'svc_not_fatal',
50        'value'  => 'Y',
51   &>
52
53 %   $date_init = 1;
54 % }
55
56 % unless ( $method eq 'resume' || $method eq 'uncancel' ) {
57   <& /elements/tr-select-reason.html,
58        field          => 'reasonnum',
59        reason_class   => $class,
60        curr_value     => $reasonnum,
61        control_button => "document.getElementById('confirm_cancel_pkg_button')",
62   &>
63 % }
64
65 % if ( ( $method eq 'adjourn' or $method eq 'suspend' ) and 
66 %      $curuser->access_right('Unsuspend customer package') )  { #later?
67 %   my $resume_date = $cgi->param('error') 
68 %                     ? str2time($cgi->param('resume_date'))
69 %                     : $cust_pkg->get('resume');
70
71   <& /elements/tr-input-date-field.html, {
72       'name'    => 'resume_date',
73       'value'   => $resume_date,
74       'label'   => mt('Unsuspend on'),
75       'format'  => $date_format,
76       'noinit'  => $date_init,
77   } &>
78 % }
79 </TABLE>
80
81 <BR>
82 <INPUT TYPE="submit" NAME="submit" ID="confirm_cancel_pkg_button" 
83   VALUE="<% mt($submit) |h %>"
84   <% $method !~ /^(resume|uncancel)$/ ? 'DISABLED' : '' %>>
85
86 </FORM>
87 </BODY>
88 </HTML>
89
90 <%init>
91 use Date::Parse qw(str2time);
92
93 my $conf = new FS::Conf;
94 my $date_format = $conf->config('date_format') || '%m/%d/%Y';
95
96 my $date;
97
98 my($pkgnum, $reasonnum);
99 if ( $cgi->param('error') ) {
100   $pkgnum    = $cgi->param('pkgnum');
101   $reasonnum = $cgi->param('reasonnum');
102   $date      = str2time($cgi->param('date'));
103 } elsif ( $cgi->param('pkgnum') =~ /^(\d+)$/ ) {
104   $pkgnum    = $1;
105   $reasonnum = '';
106 } else {
107   die "illegal query ". $cgi->keywords;
108 }
109
110 $cgi->param('method') =~ /^(\w+)$/ or die 'illegal method';
111 my $method = $1;
112
113 my($class, $submit, $right);
114 if ($method eq 'cancel') {
115   $class  = 'C';
116   $submit = 'Cancel Now';
117   $right  = 'Cancel customer package immediately';
118 } elsif ($method eq 'expire') {
119   $class  = 'C';
120   $submit = 'Cancel Later';
121   $right  = 'Cancel customer package later';
122 } elsif ($method eq 'suspend') {
123   $class  = 'S';
124   $submit = 'Suspend Now';
125   $right  = 'Suspend customer package';
126 } elsif ($method eq 'adjourn') {
127   $class  = 'S';
128   $submit = "Suspend Later";
129   $right  = 'Suspend customer package later';
130 } elsif ( $method eq 'resume') {
131   $class  = '';
132   $submit = 'Unsuspend Later';
133   $right  = 'Unsuspend customer package'; #later?
134 } elsif ( $method eq 'uncancel') {
135   $class  = '';
136   $submit = 'Un-Cancel';
137   $right  = 'Un-cancel customer package'; #later?
138 } else {
139   die 'illegal query (unknown method param)';
140 }
141
142 my $curuser = $FS::CurrentUser::CurrentUser;
143 die "access denied" unless $curuser->access_right($right);
144
145 my $title = ucfirst($method) . ' Package';
146 $title =~ s/Uncancel/Un-cancel/;
147
148 my $cust_pkg = qsearchs('cust_pkg', {'pkgnum' => $pkgnum})
149   or die "Unknown pkgnum: $pkgnum";
150
151 my $part_pkg = $cust_pkg->part_pkg;
152
153 $date ||= $cust_pkg->get($method);
154 $date ||= time;
155
156 </%init>