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