diff options
author | cvs2git <cvs2git> | 2010-12-27 00:04:45 +0000 |
---|---|---|
committer | cvs2git <cvs2git> | 2010-12-27 00:04:45 +0000 |
commit | c82d349f864e6bd9f96fd1156903bc1f7193a203 (patch) | |
tree | e117a87533656110b6acd56fc0ca64289892a9f5 /httemplate/view/cust_svc.cgi | |
parent | 74e058c8a010ef6feb539248a550d0bb169c1e94 (diff) |
This commit was manufactured by cvs2svn to create tag 'TORRUS_1_0_9'.TORRUS_1_0_9
Diffstat (limited to 'httemplate/view/cust_svc.cgi')
-rw-r--r-- | httemplate/view/cust_svc.cgi | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/httemplate/view/cust_svc.cgi b/httemplate/view/cust_svc.cgi deleted file mode 100644 index 8ccfce3ff..000000000 --- a/httemplate/view/cust_svc.cgi +++ /dev/null @@ -1,23 +0,0 @@ -<% $cgi->redirect(popurl(1)."$svcdb.cgi?". $svcnum ) %> -<%init> - -#needed here? we're just redirecting. i guess it could reveal the svcdb of a -#svcnum... oooooo scary. not. -die "access denied" - unless $FS::CurrentUser::CurrentUser->access_right('View customer services'); - -#some false laziness w/svc_*.cgi - -my($query) = $cgi->keywords; -$query =~ /^(\d+)$/; -my $svcnum = $1; -my $cust_svc = qsearchs( 'cust_svc', { 'svcnum' => $svcnum } ); -die "Unknown svcnum" unless $cust_svc; - -my $part_svc = qsearchs('part_svc',{'svcpart'=> $cust_svc->svcpart } ); -die "Unknown svcpart" unless $part_svc; - -my $svcdb = $part_svc->svcdb; - -</%init> - |