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