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