1b459df9508d4d43729fe219941e86f7988ceb21
[freeside.git] / htdocs / browse / agent.cgi
1 #!/usr/bin/perl -Tw
2 #
3 # $Id: agent.cgi,v 1.10 1999-01-19 05:13:24 ivan Exp $
4 #
5 # ivan@sisd.com 97-dec-12
6 #
7 # changes to allow pages to load from a relative location in the web tree.
8 #       bmccane@maxbaud.net     98-mar-25
9 #
10 # changed 'type' to 'atype' because type is reserved word in Pg6.3
11 #       bmccane@maxbaud.net     98-apr-3
12 #
13 # agent type was linking to wrong cgi ivan@sisd.com 98-jul-18
14 #
15 # lose background, FS::CGI ivan@sisd.com 98-sep-2
16 #
17 # $Log: agent.cgi,v $
18 # Revision 1.10  1999-01-19 05:13:24  ivan
19 # for mod_perl: no more top-level my() variables; use vars instead
20 # also the last s/create/new/;
21 #
22 # Revision 1.9  1999/01/18 09:41:14  ivan
23 # all $cgi->header calls now include ( '-expires' => 'now' ) for mod_perl
24 # (good idea anyway)
25 #
26 # Revision 1.8  1999/01/18 09:22:26  ivan
27 # changes to track email addresses for email invoicing
28 #
29 # Revision 1.7  1998/12/17 05:25:16  ivan
30 # fix visual and other bugs
31 #
32 # Revision 1.6  1998/11/23 05:29:46  ivan
33 # use CGI::Carp
34 #
35 # Revision 1.5  1998/11/23 05:27:31  ivan
36 # to eliminate warnings
37 #
38 # Revision 1.4  1998/11/20 08:50:36  ivan
39 # s/CGI::Base/CGI.pm, visual fixes
40 #
41 # Revision 1.3  1998/11/08 10:11:02  ivan
42 # CGI.pm
43 #
44 # Revision 1.2  1998/11/07 10:24:22  ivan
45 # don't use depriciated FS::Bill and FS::Invoice, other miscellania
46 #
47
48 use strict;
49 use vars qw( $ui $cgi $p $agent );
50 use CGI;
51 use CGI::Carp qw(fatalsToBrowser);
52 use FS::UID qw(cgisuidsetup swapuid);
53 use FS::Record qw(qsearch qsearchs);
54 use FS::CGI qw(header menubar table popurl);
55 use FS::agent;
56 use FS::agent_type;
57
58 #Begin silliness
59
60 use FS::UI::CGI;
61 use FS::UI::agent;
62
63 $ui = new FS::UI::agent;
64 $ui->browse;
65 exit;
66
67 #End silliness
68
69 __END__
70
71 $cgi = new CGI;
72
73 &cgisuidsetup($cgi);
74
75 $p = popurl(2);
76
77 print $cgi->header( '-expires' => 'now' ), header('Agent Listing', menubar(
78   'Main Menu'   => $p,
79   'Agent Types' => $p. 'browse/agent_type.cgi',
80 #  'Add new agent' => '../edit/agent.cgi'
81 )), <<END;
82 Agents are resellers of your service. Agents may be limited to a subset of your
83 full offerings (via their type).<BR><BR>
84 END
85 print table, <<END;
86       <TR>
87         <TH COLSPAN=2>Agent</TH>
88         <TH>Type</TH>
89         <TH><FONT SIZE=-1>Freq. (unimp.)</FONT></TH>
90         <TH><FONT SIZE=-1>Prog. (unimp.)</FONT></TH>
91       </TR>
92 END
93 #        <TH><FONT SIZE=-1>Agent #</FONT></TH>
94 #        <TH>Agent</TH>
95
96 foreach $agent ( sort { 
97   $a->getfield('agentnum') <=> $b->getfield('agentnum')
98 } qsearch('agent',{}) ) {
99   my($hashref)=$agent->hashref;
100   my($typenum)=$hashref->{typenum};
101   my($agent_type)=qsearchs('agent_type',{'typenum'=>$typenum});
102   my($atype)=$agent_type->getfield('atype');
103   print <<END;
104       <TR>
105         <TD><A HREF="${p}edit/agent.cgi?$hashref->{agentnum}">
106           $hashref->{agentnum}</A></TD>
107         <TD><A HREF="${p}edit/agent.cgi?$hashref->{agentnum}">
108           $hashref->{agent}</A></TD>
109         <TD><A HREF="${p}edit/agent_type.cgi?$typenum">$atype</A></TD>
110         <TD>$hashref->{freq}</TD>
111         <TD>$hashref->{prog}</TD>
112       </TR>
113 END
114
115 }
116
117 print <<END;
118       <TR>
119         <TD COLSPAN=2><A HREF="${p}edit/agent.cgi"><I>Add new agent</I></A></TD>
120         <TD><A HREF="${p}edit/agent_type.cgi"><I>Add new agent type</I></A></TD>
121       </TR>
122     </TABLE>
123
124   </BODY>
125 </HTML>
126 END
127