diff options
author | ivan <ivan> | 2009-06-30 01:42:56 +0000 |
---|---|---|
committer | ivan <ivan> | 2009-06-30 01:42:56 +0000 |
commit | 665067cef48a5516e0bfb2dd79d99b8495e25ee5 (patch) | |
tree | 40b11281ad950b57c1dc940e35a691ae62811a17 /httemplate/misc/delete-phone_device.html | |
parent | f544c8f095cfb2e844810d31b6230b96033cb1e8 (diff) |
phone devices (for netsapiens integration), RT#5226
Diffstat (limited to 'httemplate/misc/delete-phone_device.html')
-rwxr-xr-x | httemplate/misc/delete-phone_device.html | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/httemplate/misc/delete-phone_device.html b/httemplate/misc/delete-phone_device.html new file mode 100755 index 000000000..7220c41e3 --- /dev/null +++ b/httemplate/misc/delete-phone_device.html @@ -0,0 +1,23 @@ +% if ( $error ) { +% errorpage($error); +% } else { +<% $cgi->redirect($p. "view/svc_phone.cgi?". $svcnum) %> +% } +<%init> + +# :/ needs agent-virt so you can't futz with arbitrary devices + +die "access denied" + unless $FS::CurrentUser::CurrentUser->access_right('Provision customer service'); #something else more specific? + +#untaint devicenum +my($query) = $cgi->keywords; +$query =~ /^(\d+)$/ || die "Illegal devicenum"; +my $devicenum = $1; + +my $phone_device = qsearchs('phone_device', { 'devicenum' => $devicenum } ); +my $svcnum = $phone_device->svcnum; + +my $error = $phone_device->delete; + +</%init> |