X-Git-Url: http://git.freeside.biz/gitweb/?p=freeside.git;a=blobdiff_plain;f=httemplate%2Fedit%2Fagent_type.cgi;h=f16d76ce027791de9f14a34b135e7ab4d7541ae7;hp=4f1ad8b20aa90b3086c654715b1f21d9827ea7f6;hb=ac8410cdb67639afeb84c84e975fffadf3e6cce1;hpb=3d671921441ba8422650b54435a1959ad1d4c71d diff --git a/httemplate/edit/agent_type.cgi b/httemplate/edit/agent_type.cgi index 4f1ad8b20..f16d76ce0 100755 --- a/httemplate/edit/agent_type.cgi +++ b/httemplate/edit/agent_type.cgi @@ -1,22 +1,62 @@ -<% -# +<% include("/elements/header.html","$action Agent Type", menubar( + 'View all agent types' => "${p}browse/agent_type.cgi", +)) +%> + +<% include('/elements/error.html') %> + +
+ + + +Agent Type #<% $agent_type->typenum || "(NEW)" %> + + + -use strict; -use vars qw( $cgi $agent_type $action $hashref $p $part_pkg ); -use CGI; -use CGI::Carp qw(fatalsToBrowser); -use FS::UID qw(cgisuidsetup); -use FS::Record qw(qsearch qsearchs fields); -use FS::agent_type; -use FS::CGI qw(header menubar popurl); -use FS::agent_type; -use FS::part_pkg; -use FS::type_pkgs; + + + + -$cgi = new CGI; + + + + -&cgisuidsetup($cgi); +
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') @@ -28,52 +68,6 @@ if ( $cgi->param('error') ) { } else { #adding $agent_type = new FS::agent_type {}; } -$action = $agent_type->typenum ? 'Edit' : 'Add'; -$hashref = $agent_type->hashref; +my $action = $agent_type->typenum ? 'Edit' : 'Add'; -$p = popurl(2); -print $cgi->header( '-expires' => 'now' ), header("$action Agent Type", menubar( - 'Main Menu' => "$p", - 'View all agent types' => "${p}browse/agent_type.cgi", -)); - -print qq!Error: !, $cgi->param('error'), - "" - if $cgi->param('error'); - -print '
', - qq!!, - "Agent Type #", $hashref->{typenum} ? $hashref->{typenum} : "(NEW)"; - -print <
Agent Type -

Select which packages agents of this type may sell to customers
-END - -foreach $part_pkg ( qsearch('part_pkg',{}) ) { - print qq!
$agent_type->getfield('typenum'), - 'pkgpart' => $part_pkg->getfield('pkgpart'), - }) - ? 'CHECKED ' - : '', - qq!VALUE="ON"> !, - qq!', $part_pkg->getfield('pkg'), '', - ; -} - -print qq!
!; - -print < - - -END - -%> +