summaryrefslogtreecommitdiff
path: root/httemplate/misc/do_not_change_pkg.cgi
diff options
context:
space:
mode:
authorMark Wells <mark@freeside.biz>2013-07-15 18:25:13 -0700
committerMark Wells <mark@freeside.biz>2013-07-15 18:25:13 -0700
commitebcfdd04f1fe69028836d231238845801aa69505 (patch)
tree8c2bbc29c554709d3e0576d3626630f58ca89d82 /httemplate/misc/do_not_change_pkg.cgi
parent8e84773c2e9107185f0a0cf629cf357d7b8979f5 (diff)
future package change, #20687
Diffstat (limited to 'httemplate/misc/do_not_change_pkg.cgi')
-rwxr-xr-xhttemplate/misc/do_not_change_pkg.cgi20
1 files changed, 20 insertions, 0 deletions
diff --git a/httemplate/misc/do_not_change_pkg.cgi b/httemplate/misc/do_not_change_pkg.cgi
new file mode 100755
index 000000000..c164c5c15
--- /dev/null
+++ b/httemplate/misc/do_not_change_pkg.cgi
@@ -0,0 +1,20 @@
+%if ( $error ) {
+% errorpage($error);
+%} else {
+<% $cgi->redirect(popurl(2). "view/cust_main.cgi?".$cust_pkg->getfield('custnum')) %>
+%}
+<%init>
+
+die "access denied"
+ unless $FS::CurrentUser::CurrentUser->access_right('Change customer package');
+
+#untaint pkgnum
+my ($query) = $cgi->keywords;
+$query =~ /^(\d+)$/ || die "Illegal pkgnum";
+my $pkgnum = $1;
+
+my $cust_pkg = qsearchs('cust_pkg',{'pkgnum'=>$pkgnum});
+
+my $error = $cust_pkg->abort_change;
+
+</%init>