more mod_perl fixes, and bugfixes Peter Wemm sent via email
[freeside.git] / htdocs / edit / svc_acct_pop.cgi
1 #!/usr/bin/perl -Tw
2 #
3 # $Id: svc_acct_pop.cgi,v 1.7 1999-02-07 09:59:23 ivan Exp $
4 #
5 # ivan@sisd.com 98-mar-8 
6 #
7 # Changes to allow page to work at a relative position in server
8 #       bmccane@maxbaud.net     98-apr-3
9 #
10 # lose background, FS::CGI ivan@sisd.com 98-sep-2
11 #
12 # $Log: svc_acct_pop.cgi,v $
13 # Revision 1.7  1999-02-07 09:59:23  ivan
14 # more mod_perl fixes, and bugfixes Peter Wemm sent via email
15 #
16 # Revision 1.6  1999/01/19 05:13:44  ivan
17 # for mod_perl: no more top-level my() variables; use vars instead
18 # also the last s/create/new/;
19 #
20 # Revision 1.5  1999/01/18 09:41:33  ivan
21 # all $cgi->header calls now include ( '-expires' => 'now' ) for mod_perl
22 # (good idea anyway)
23 #
24 # Revision 1.4  1998/12/23 02:57:45  ivan
25 # $cgi->keywords instead of $cgi->query_string
26 #
27 # Revision 1.3  1998/12/17 06:17:10  ivan
28 # fix double // in relative URLs, s/CGI::Base/CGI/;
29 #
30 # Revision 1.2  1998/11/13 09:56:47  ivan
31 # change configuration file layout to support multiple distinct databases (with
32 # own set of config files, export, etc.)
33 #
34
35 use strict;
36 use vars qw( $cgi $svc_acct_pop $action $query $hashref $p1 );
37 use CGI;
38 use CGI::Carp qw(fatalsToBrowser);
39 use FS::UID qw(cgisuidsetup);
40 use FS::Record qw(qsearch qsearchs fields);
41 use FS::svc_acct_pop;
42 use FS::CGI qw(header menubar popurl);
43
44 $cgi = new CGI;
45
46 &cgisuidsetup($cgi);
47
48 if ( $cgi->param('error') ) {
49   $svc_acct_pop = new FS::svc_acct_pop ( {
50     map { $_, scalar($cgi->param($_)) } fields('svc_acct_pop')
51   } );
52 } elsif ( $cgi->keywords ) { #editing
53   my($query)=$cgi->keywords;
54   $query =~ /^(\d+)$/;
55   $svc_acct_pop=qsearchs('svc_acct_pop',{'popnum'=>$1});
56 } else { #adding
57   $svc_acct_pop = new FS::svc_acct_pop {};
58 }
59 $action = $svc_acct_pop->popnum ? 'Edit' : 'Add';
60 $hashref = $svc_acct_pop->hashref;
61
62 $p1 = popurl(1);
63 print $cgi->header( '-expires' => 'now' ), header("$action POP", menubar(
64   'Main Menu' => popurl(2),
65   'View all POPs' => popurl(2). "browse/svc_acct_pop.cgi",
66 ));
67
68 print qq!<FONT SIZE="+1" COLOR="#ff0000">Error: !, $cgi->param('error'),
69       "</FONT>"
70   if $cgi->param('error');
71
72 print qq!<FORM ACTION="${p1}process/svc_acct_pop.cgi" METHOD=POST>!;
73
74 #display
75
76 print qq!<INPUT TYPE="hidden" NAME="popnum" VALUE="$hashref->{popnum}">!,
77       "POP #", $hashref->{popnum} ? $hashref->{popnum} : "(NEW)";
78
79 print <<END;
80 <PRE>
81 City      <INPUT TYPE="text" NAME="city" SIZE=32 VALUE="$hashref->{city}">
82 State     <INPUT TYPE="text" NAME="state" SIZE=16 MAXLENGTH=16 VALUE="$hashref->{state}">
83 Area Code <INPUT TYPE="text" NAME="ac" SIZE=4 MAXLENGTH=3 VALUE="$hashref->{ac}">
84 Exchange  <INPUT TYPE="text" NAME="exch" SIZE=4 MAXLENGTH=3 VALUE="$hashref->{exch}">
85 </PRE>
86 END
87
88 print qq!<BR><INPUT TYPE="submit" VALUE="!,
89       $hashref->{popnum} ? "Apply changes" : "Add POP",
90       qq!">!;
91
92 print <<END;
93     </FORM>
94   </BODY>
95 </HTML>
96 END
97