all $cgi->header calls now include ( '-expires' => 'now' ) for mod_perl
[freeside.git] / htdocs / edit / svc_acct_pop.cgi
1 #!/usr/bin/perl -Tw
2 #
3 # $Id: svc_acct_pop.cgi,v 1.5 1999-01-18 09:41:33 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.5  1999-01-18 09:41:33  ivan
14 # all $cgi->header calls now include ( '-expires' => 'now' ) for mod_perl
15 # (good idea anyway)
16 #
17 # Revision 1.4  1998/12/23 02:57:45  ivan
18 # $cgi->keywords instead of $cgi->query_string
19 #
20 # Revision 1.3  1998/12/17 06:17:10  ivan
21 # fix double // in relative URLs, s/CGI::Base/CGI/;
22 #
23 # Revision 1.2  1998/11/13 09:56:47  ivan
24 # change configuration file layout to support multiple distinct databases (with
25 # own set of config files, export, etc.)
26 #
27
28 use strict;
29 use CGI;
30 use CGI::Carp qw(fatalsToBrowser);
31 use FS::UID qw(cgisuidsetup);
32 use FS::Record qw(qsearch qsearchs);
33 use FS::svc_acct_pop;
34 use FS::CGI qw(header menubar);
35
36 my($cgi) = new CGI;
37
38 &cgisuidsetup($cgi);
39
40 my($svc_acct_pop,$action);
41 my($query)=$cgi->keywords;
42 if ( $query =~ /^(\d+)$/ ) { #editing
43   $svc_acct_pop=qsearchs('svc_acct_pop',{'popnum'=>$1});
44   $action='Edit';
45 } else { #adding
46   $svc_acct_pop=create FS::svc_acct_pop {};
47   $action='Add';
48 }
49 my($hashref)=$svc_acct_pop->hashref;
50
51 my $p1 = popurl(1);
52 print $cgi->header( '-expires' => 'now' ), header("$action POP", menubar(
53   'Main Menu' => popurl(2),
54   'View all POPs' => popurl(2). "browse/svc_acct_pop.cgi",
55 )), <<END;
56     <FORM ACTION="${p1}process/svc_acct_pop.cgi" METHOD=POST>
57 END
58
59 #display
60
61 print qq!<INPUT TYPE="hidden" NAME="popnum" VALUE="$hashref->{popnum}">!,
62       "POP #", $hashref->{popnum} ? $hashref->{popnum} : "(NEW)";
63
64 print <<END;
65 <PRE>
66 City      <INPUT TYPE="text" NAME="city" SIZE=32 VALUE="$hashref->{city}">
67 State     <INPUT TYPE="text" NAME="state" SIZE=3 MAXLENGTH=2 VALUE="$hashref->{state}">
68 Area Code <INPUT TYPE="text" NAME="ac" SIZE=4 MAXLENGTH=3 VALUE="$hashref->{ac}">
69 Exchange  <INPUT TYPE="text" NAME="exch" SIZE=4 MAXLENGTH=3 VALUE="$hashref->{exch}">
70 </PRE>
71 END
72
73 print qq!<BR><INPUT TYPE="submit" VALUE="!,
74       $hashref->{popnum} ? "Apply changes" : "Add POP",
75       qq!">!;
76
77 print <<END;
78     </FORM>
79   </BODY>
80 </HTML>
81 END
82