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