X-Git-Url: http://git.freeside.biz/gitweb/?a=blobdiff_plain;f=httemplate%2Fedit%2Fagent_type.cgi;h=68421633579749401a2211515baaad7e3098b3e1;hb=afab30d6058351d2ca875b089424b7a1323992a4;hp=849da81139fe96d072b45dd957029968d1c044aa;hpb=c14a267229fc0d6f2d2afdebab3bd34d825df2ef;p=freeside.git diff --git a/httemplate/edit/agent_type.cgi b/httemplate/edit/agent_type.cgi index 849da8113..684216335 100755 --- a/httemplate/edit/agent_type.cgi +++ b/httemplate/edit/agent_type.cgi @@ -1,22 +1,6 @@ <% -# - -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); +my($agent_type); if ( $cgi->param('error') ) { $agent_type = new FS::agent_type ( { map { $_, scalar($cgi->param($_)) } fields('agent') @@ -28,52 +12,52 @@ 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 header("$action Agent Type", menubar( +%> + +<%= header("$action Agent Type", menubar( 'Main Menu' => "$p", 'View all agent types' => "${p}browse/agent_type.cgi", -)); +)) +%> + +<% if ( $cgi->param('error') ) { %> + Error: <%= $cgi->param('error') %> +<% } %> -print qq!Error: !, $cgi->param('error'), - "" - if $cgi->param('error'); +
+ +Agent Type #<%= $agent_type->typenum || "(NEW)" %> +

-print '', - qq!!, - "Agent Type #", $hashref->{typenum} ? $hashref->{typenum} : "(NEW)"; +Agent Type + +

-print <
Agent Type -

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

!; +

+ +"> -print < -END - -%>