X-Git-Url: http://git.freeside.biz/gitweb/?p=freeside.git;a=blobdiff_plain;f=httemplate%2Fedit%2Fagent_type.cgi;h=637c710ab5096b2390d6842e80bb38052c16bafa;hp=4f1ad8b20aa90b3086c654715b1f21d9827ea7f6;hb=6b9a0a746535a142c95a5841f5cb5d9dc44d2f21;hpb=3d671921441ba8422650b54435a1959ad1d4c71d diff --git a/httemplate/edit/agent_type.cgi b/httemplate/edit/agent_type.cgi index 4f1ad8b20..637c710ab 100755 --- a/httemplate/edit/agent_type.cgi +++ b/httemplate/edit/agent_type.cgi @@ -1,22 +1,7 @@ + <% -# - -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,11 +13,10 @@ 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'; +my $hashref = $agent_type->hashref; -$p = popurl(2); -print $cgi->header( '-expires' => 'now' ), header("$action Agent Type", menubar( +print header("$action Agent Type", menubar( 'Main Menu' => "$p", 'View all agent types' => "${p}browse/agent_type.cgi", )); @@ -50,7 +34,7 @@ print <
Select which packages agents of this type may sell to customers
END -foreach $part_pkg ( qsearch('part_pkg',{}) ) { +foreach my $part_pkg ( qsearch('part_pkg',{ 'disabled' => '' }) ) { print qq!
!, qq!', $part_pkg->getfield('pkg'), '', + '">', $part_pkg->pkgpart. ": ". $part_pkg->getfield('pkg'), '', ; } -print qq!
!;