X-Git-Url: http://git.freeside.biz/gitweb/?a=blobdiff_plain;f=httemplate%2Fedit%2Fagent_type.cgi;h=f16d76ce027791de9f14a34b135e7ab4d7541ae7;hb=8c8872f684ccfa43dae290877c2cf8aed8828a9f;hp=68421633579749401a2211515baaad7e3098b3e1;hpb=e5787d471e4d94f28cfb68db97b31eefbe35a651;p=freeside.git diff --git a/httemplate/edit/agent_type.cgi b/httemplate/edit/agent_type.cgi index 684216335..f16d76ce0 100755 --- a/httemplate/edit/agent_type.cgi +++ b/httemplate/edit/agent_type.cgi @@ -1,63 +1,73 @@ -<% - -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'; - -%> - -<%= header("$action Agent Type", menubar( - 'Main Menu' => "$p", +<% include("/elements/header.html","$action Agent Type", menubar( 'View all agent types' => "${p}browse/agent_type.cgi", )) %> -<% if ( $cgi->param('error') ) { %> - Error: <%= $cgi->param('error') %> -<% } %> +<% include('/elements/error.html') %> -
- -Agent Type #<%= $agent_type->typenum || "(NEW)" %> -

+ + -Agent Type - -

+ +Agent Type #<% $agent_type->typenum || "(NEW)" %> + -Select which packages agents of this type may sell to customers
+ -<% foreach my $part_pkg ( qsearch('part_pkg',{ 'disabled' => '' }) ) { %> + + + + -
- $agent_type->typenum, - 'pkgpart' => $part_pkg->pkgpart, - }) - ? 'CHECKED ' - : '' - %> VALUE="ON"> + + + + - <%= $part_pkg->pkgpart %>: - <%= $part_pkg->pkg %> (<%= $part_pkg->comment %>) +
Agent Type
Disabledisabled eq 'Y' ? ' CHECKED' : '' %>>
+
-<% } %> + +Package definitions that agents of this type can sell + -

+
+<% include('/elements/checkboxes-table.html', + 'source_obj' => $agent_type, + 'link_table' => 'type_pkgs', + 'target_table' => 'part_pkg', + 'name_callback' => sub { encode_entities( $_[0]->pkg_comment(nopkgpart => 1) ); }, + 'target_link' => $p.'edit/part_pkg.cgi?', + 'disable-able' => 1, + + ) +%> +
+
-"> +">
- - + +<% 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'; + +