diff options
author | ivan <ivan> | 2010-02-17 09:00:39 +0000 |
---|---|---|
committer | ivan <ivan> | 2010-02-17 09:00:39 +0000 |
commit | 713d0fa5dff732acf924743b639e1a701cdf032e (patch) | |
tree | b9dd7d97a7a78361324c0f3f58fd368c3db85a5b /httemplate | |
parent | cc647ae934abe5c9d9a5fc12f020adfc566349d9 (diff) |
fix svc_pbx provisioniing
Diffstat (limited to 'httemplate')
-rw-r--r-- | httemplate/edit/svc_Common.html | 29 |
1 files changed, 28 insertions, 1 deletions
diff --git a/httemplate/edit/svc_Common.html b/httemplate/edit/svc_Common.html index 9cf886120..3da72d2e8 100644 --- a/httemplate/edit/svc_Common.html +++ b/httemplate/edit/svc_Common.html @@ -1,6 +1,33 @@ <% include('elements/svc_Common.html', 'table' => $table, 'post_url' => popurl(1). "process/svc_Common.html", + %opt, ) %> -%# i don't think this is actuallly used by anything?? +<%init> + +die "access denied" + unless $FS::CurrentUser::CurrentUser->access_right('Provision customer service'); #something else more specific? + +# false laziness w/view/svc_Common.html + +$cgi->param('svcdb') =~ /^(svc_\w+)$/ or die "unparsable svcdb"; +my $table = $1; +require "FS/$table.pm"; + +my %opt; +if ( UNIVERSAL::can("FS::$table", 'table_info') ) { + $opt{'name'} = "FS::$table"->table_info->{'name'}; + + my $fields = "FS::$table"->table_info->{'fields'}; + my %labels = map { $_ => ( ref($fields->{$_}) + ? $fields->{$_}{'label'} + : $fields->{$_} + ); + } + keys %$fields; + $opt{'labels'} = \%labels; + +} + +</%init> |