X-Git-Url: http://git.freeside.biz/gitweb/?p=freeside.git;a=blobdiff_plain;f=httemplate%2Fedit%2Fagent_type.cgi;h=8a6fbc25502bb194cb1132141eeadf7231733058;hp=bfef42fead3e92031d165800f963363f3994c11d;hb=75e11f1d1a5ced24496b5732e290f7762403feb8;hpb=2a6aa24137ddd389c1e644f5ece325c5b5dbaf3a diff --git a/httemplate/edit/agent_type.cgi b/httemplate/edit/agent_type.cgi index bfef42fea..8a6fbc255 100755 --- a/httemplate/edit/agent_type.cgi +++ b/httemplate/edit/agent_type.cgi @@ -1,22 +1,4 @@ -% -% -%my($agent_type); -%if ( $cgi->param('error') ) { -% $agent_type = new FS::agent_type ( { -% map { $_, scalar($cgi->param($_)) } fields('agent') -% } ); -%} elsif ( $cgi->keywords ) { #editing -% my( $query ) = $cgi->keywords; -% $query =~ /^(\d+)$/; -% $agent_type=qsearchs('agent_type',{'typenum'=>$1}); -%} else { #adding -% $agent_type = new FS::agent_type {}; -%} -%my $action = $agent_type->typenum ? 'Edit' : 'Add'; -% -% <% include("/elements/header.html","$action Agent Type", menubar( - 'Main Menu' => "$p", 'View all agent types' => "${p}browse/agent_type.cgi", )) %> @@ -38,7 +20,7 @@ Select which packages agents of this type may sell to customers
'source_obj' => $agent_type, 'link_table' => 'type_pkgs', 'target_table' => 'part_pkg', - 'name_callback' => sub { $_[0]->pkg. ' - '. $_[0]->comment; }, + 'name_callback' => sub { $_[0]->pkg_comment(nopkgpart => 1); }, 'target_link' => $p.'edit/part_pkg.cgi?', 'disable-able' => 1, @@ -52,3 +34,24 @@ Select which packages agents of this type may sell to customers
<% include('/elements/footer.html') %> + +<%init> + +die "access denied" + unless $FS::CurrentUser::CurrentUser->access_right('Configuration'); + +my($agent_type); +if ( $cgi->param('error') ) { + $agent_type = new FS::agent_type ( { + map { $_, scalar($cgi->param($_)) } fields('agent') + } ); +} elsif ( $cgi->keywords ) { #editing + my( $query ) = $cgi->keywords; + $query =~ /^(\d+)$/; + $agent_type=qsearchs('agent_type',{'typenum'=>$1}); +} else { #adding + $agent_type = new FS::agent_type {}; +} +my $action = $agent_type->typenum ? 'Edit' : 'Add'; + +