summaryrefslogtreecommitdiff
path: root/httemplate/browse/part_svc.cgi
diff options
context:
space:
mode:
authorivan <ivan>2007-01-30 20:59:14 +0000
committerivan <ivan>2007-01-30 20:59:14 +0000
commit15777da47bab33e8f0021e6dd9aa6b434fa9be30 (patch)
tree83359450ba8dcac02c86bdbd0c85db45a699fc06 /httemplate/browse/part_svc.cgi
parent655b4043942c7d361224d283accb4c2a02ef7359 (diff)
its all about control
Diffstat (limited to 'httemplate/browse/part_svc.cgi')
-rwxr-xr-xhttemplate/browse/part_svc.cgi82
1 files changed, 42 insertions, 40 deletions
diff --git a/httemplate/browse/part_svc.cgi b/httemplate/browse/part_svc.cgi
index 6198a1a..3694955 100755
--- a/httemplate/browse/part_svc.cgi
+++ b/httemplate/browse/part_svc.cgi
@@ -1,43 +1,3 @@
-%
-%
-%#code duplication w/ edit/part_svc.cgi, should move this hash to part_svc.pm
-%my %flag = (
-% '' => '',
-% 'D' => 'Default',
-% 'F' => 'Fixed (unchangeable)',
-% 'S' => 'Selectable choice',
-% #'M' => 'Manual selection from inventory',
-% 'M' => 'Manual selected from inventory',
-% #'A' => 'Automatically fill in from inventory',
-% 'A' => 'Automatically filled in from inventory',
-% 'X' => 'Excluded',
-%);
-%
-%my %search;
-%if ( $cgi->param('showdisabled') ) {
-% %search = ();
-%} else {
-% %search = ( 'disabled' => '' );
-%}
-%
-%my @part_svc =
-% sort { $a->getfield('svcpart') <=> $b->getfield('svcpart') }
-% qsearch('part_svc', \%search );
-%my $total = scalar(@part_svc);
-%
-%my %num_active_cust_svc = map { $_->svcpart => $_->num_cust_svc } @part_svc;
-%
-%if ( $cgi->param('orderby') eq 'active' ) {
-% @part_svc = sort { $num_active_cust_svc{$b->svcpart} <=>
-% $num_active_cust_svc{$a->svcpart} } @part_svc;
-%} elsif ( $cgi->param('orderby') eq 'svc' ) {
-% @part_svc = sort { lc($a->svc) cmp lc($b->svc) } @part_svc;
-%}
-%
-%my %inventory_class = ();
-%
-%
-
<% include("/elements/header.html",'Service Definition Listing', menubar( 'Main Menu' => $p) ) %>
<SCRIPT>
@@ -208,3 +168,45 @@ function part_export_areyousure(href) {
</TABLE>
</BODY>
</HTML>
+<%init>
+
+die "access denied"
+ unless $FS::CurrentUser::CurrentUser->access_right('Configuration');
+
+#code duplication w/ edit/part_svc.cgi, should move this hash to part_svc.pm
+my %flag = (
+ '' => '',
+ 'D' => 'Default',
+ 'F' => 'Fixed (unchangeable)',
+ 'S' => 'Selectable choice',
+ #'M' => 'Manual selection from inventory',
+ 'M' => 'Manual selected from inventory',
+ #'A' => 'Automatically fill in from inventory',
+ 'A' => 'Automatically filled in from inventory',
+ 'X' => 'Excluded',
+);
+
+my %search;
+if ( $cgi->param('showdisabled') ) {
+ %search = ();
+} else {
+ %search = ( 'disabled' => '' );
+}
+
+my @part_svc =
+ sort { $a->getfield('svcpart') <=> $b->getfield('svcpart') }
+ qsearch('part_svc', \%search );
+my $total = scalar(@part_svc);
+
+my %num_active_cust_svc = map { $_->svcpart => $_->num_cust_svc } @part_svc;
+
+if ( $cgi->param('orderby') eq 'active' ) {
+ @part_svc = sort { $num_active_cust_svc{$b->svcpart} <=>
+ $num_active_cust_svc{$a->svcpart} } @part_svc;
+} elsif ( $cgi->param('orderby') eq 'svc' ) {
+ @part_svc = sort { lc($a->svc) cmp lc($b->svc) } @part_svc;
+}
+
+my %inventory_class = ();
+
+</%init>