#!/usr/bin/perl -Tw # # agent.cgi: Add/Edit agent (output form) # # ivan@sisd.com 97-dec-12 # # Changes to allow page to work at a relative position in server # Changed 'type' to 'atype' because Pg6.3 reserves the type word # bmccane@maxbaud.net 98-apr-3 # # use FS::CGI, added inline documentation ivan@sisd.com 98-jul-12 use strict; use CGI::Base; use CGI::Carp qw(fatalsToBrowser); use FS::UID qw(cgisuidsetup); use FS::Record qw(qsearch qsearchs); use FS::agent; use FS::CGI qw(header menubar); my($cgi) = new CGI::Base; $cgi->get; &cgisuidsetup($cgi); SendHeaders(); # one guess. my($agent,$action); if ( $cgi->var('QUERY_STRING') =~ /^(\d+)$/ ) { #editing $agent=qsearchs('agent',{'agentnum'=>$1}); $action='Edit'; } else { #adding $agent=create FS::agent {}; $action='Add'; } my($hashref)=$agent->hashref; print header("$action Agent", menubar( 'Main Menu' => '../', 'View all agents' => '../browse/agent.cgi', )), '
'; print qq!!, "Agent #", $hashref->{agentnum} ? $hashref->{agentnum} : "(NEW)"; print < Agent Agent type Program (unimplemented) END print qq!
!; print < END