add svc_forward, depriciate svc_acct_sm
[freeside.git] / htdocs / edit / agent_type.cgi
1 #!/usr/bin/perl -Tw
2 #
3 # $Id: agent_type.cgi,v 1.11 1999-04-07 11:19:21 ivan Exp $
4 #
5 # agent_type.cgi: Add/Edit agent type (output form)
6 #
7 # ivan@sisd.com 97-dec-10
8 #
9 # Changes to allow page to work at a relative position in server
10 # Changed 'type' to 'atype' because Pg6.3 reserves the type word
11 #       bmccane@maxbaud.net     98-apr-3
12 #
13 # use FS::CGI, added inline documentation ivan@sisd.com 98-jul-12
14 #
15 # $Log: agent_type.cgi,v $
16 # Revision 1.11  1999-04-07 11:19:21  ivan
17 # silly HTML typo
18 #
19 # Revision 1.10  1999/01/25 12:09:51  ivan
20 # yet more mod_perl stuff
21 #
22 # Revision 1.9  1999/01/19 05:13:32  ivan
23 # for mod_perl: no more top-level my() variables; use vars instead
24 # also the last s/create/new/;
25 #
26 # Revision 1.8  1999/01/18 09:41:22  ivan
27 # all $cgi->header calls now include ( '-expires' => 'now' ) for mod_perl
28 # (good idea anyway)
29 #
30 # Revision 1.7  1999/01/18 09:22:29  ivan
31 # changes to track email addresses for email invoicing
32 #
33 # Revision 1.6  1998/12/17 06:16:58  ivan
34 # fix double // in relative URLs, s/CGI::Base/CGI/;
35 #
36 # Revision 1.5  1998/11/21 07:58:27  ivan
37 # package names link to them
38 #
39 # Revision 1.4  1998/11/21 07:45:19  ivan
40 # visual, use FS::table_name when doing qsearch('table_name')
41 #
42 # Revision 1.3  1998/11/15 11:20:12  ivan
43 # s/CGI-Base/CGI.pm/ causes s/QUERY_STRING/keywords/;
44 #
45 # Revision 1.2  1998/11/13 09:56:46  ivan
46 # change configuration file layout to support multiple distinct databases (with
47 # own set of config files, export, etc.)
48 #
49
50 use strict;
51 use vars qw( $cgi $agent_type $action $hashref $p $part_pkg );
52 use CGI;
53 use CGI::Carp qw(fatalsToBrowser);
54 use FS::UID qw(cgisuidsetup);
55 use FS::Record qw(qsearch qsearchs fields);
56 use FS::agent_type;
57 use FS::CGI qw(header menubar popurl);
58 use FS::agent_type;
59 use FS::part_pkg;
60 use FS::type_pkgs;
61
62 $cgi = new CGI;
63
64 &cgisuidsetup($cgi);
65
66 if ( $cgi->param('error') ) {
67   $agent_type = new FS::agent_type ( {
68     map { $_, scalar($cgi->param($_)) } fields('agent')
69   } );
70 } elsif ( $cgi->keywords ) { #editing
71   my( $query ) = $cgi->keywords;
72   $query =~ /^(\d+)$/;
73   $agent_type=qsearchs('agent_type',{'typenum'=>$1});
74 } else { #adding
75   $agent_type = new FS::agent_type {};
76 }
77 $action = $agent_type->typenum ? 'Edit' : 'Add';
78 $hashref = $agent_type->hashref;
79
80 $p = popurl(2);
81 print $cgi->header( '-expires' => 'now' ), header("$action Agent Type", menubar(
82   'Main Menu' => "$p",
83   'View all agent types' => "${p}browse/agent_type.cgi",
84 ));
85
86 print qq!<FONT SIZE="+1" COLOR="#ff0000">Error: !, $cgi->param('error'),
87       "</FONT>"
88   if $cgi->param('error');
89
90 print '<FORM ACTION="', popurl(1), 'process/agent_type.cgi" METHOD=POST>',
91       qq!<INPUT TYPE="hidden" NAME="typenum" VALUE="$hashref->{typenum}">!,
92       "Agent Type #", $hashref->{typenum} ? $hashref->{typenum} : "(NEW)";
93
94 print <<END;
95 <BR><BR>Agent Type <INPUT TYPE="text" NAME="atype" SIZE=32 VALUE="$hashref->{atype}">
96 <BR><BR>Select which packages agents of this type may sell to customers<BR>
97 END
98
99 foreach $part_pkg ( qsearch('part_pkg',{}) ) {
100   print qq!<BR><INPUT TYPE="checkbox" NAME="pkgpart!,
101         $part_pkg->getfield('pkgpart'), qq!" !,
102        # ( 'CHECKED 'x scalar(
103         qsearchs('type_pkgs',{
104           'typenum' => $agent_type->getfield('typenum'),
105           'pkgpart'  => $part_pkg->getfield('pkgpart'),
106         })
107           ? 'CHECKED '
108           : '',
109         qq!VALUE="ON"> !,
110     qq!<A HREF="${p}edit/part_pkg.cgi?!, $part_pkg->pkgpart, 
111     '">', $part_pkg->getfield('pkg'), '</A>',
112   ;
113 }
114
115 print qq!<BR><INPUT TYPE="submit" VALUE="!,
116       $hashref->{typenum} ? "Apply changes" : "Add agent type",
117       qq!">!;
118
119 print <<END;
120     </FORM>
121   </BODY>
122 </HTML>
123 END
124