diff options
author | ivan <ivan> | 1999-02-23 08:09:27 +0000 |
---|---|---|
committer | ivan <ivan> | 1999-02-23 08:09:27 +0000 |
commit | 510d2f9647c0651a82760e456b46505e8050d6ed (patch) | |
tree | e426df6d73f5c4d0a7aa1214ea3a279fc0fb8a8a /htdocs/view | |
parent | 36e3aafeef2f035b31ee03f3214370ba025aba6f (diff) |
beginnings of one-screen new customer entry and some other miscellania
Diffstat (limited to 'htdocs/view')
-rwxr-xr-x | htdocs/view/svc_domain.cgi | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/htdocs/view/svc_domain.cgi b/htdocs/view/svc_domain.cgi index a6de40429..8941a3c89 100755 --- a/htdocs/view/svc_domain.cgi +++ b/htdocs/view/svc_domain.cgi @@ -1,6 +1,6 @@ #!/usr/bin/perl -Tw # -# $Id: svc_domain.cgi,v 1.6 1999-01-19 05:14:23 ivan Exp $ +# $Id: svc_domain.cgi,v 1.7 1999-02-23 08:09:25 ivan Exp $ # # Usage: svc_domain svcnum # http://server.name/path/svc_domain.cgi?svcnum @@ -15,7 +15,10 @@ # bmccane@maxbaud.net 98-apr-3 # # $Log: svc_domain.cgi,v $ -# Revision 1.6 1999-01-19 05:14:23 ivan +# Revision 1.7 1999-02-23 08:09:25 ivan +# beginnings of one-screen new customer entry and some other miscellania +# +# Revision 1.6 1999/01/19 05:14:23 ivan # for mod_perl: no more top-level my() variables; use vars instead # also the last s/create/new/; # @@ -41,6 +44,10 @@ use CGI; use FS::UID qw(cgisuidsetup); use FS::CGI qw(header menubar popurl); use FS::Record qw(qsearchs); +use FS::svc_domain; +use FS::cust_svc; +use FS::cust_pkg; +use FS::part_svc; $cgi = new CGI; cgisuidsetup($cgi); |