more mod_perl fixes, and bugfixes Peter Wemm sent via email
[freeside.git] / htdocs / edit / process / svc_acct_sm.cgi
1 #!/usr/bin/perl -Tw
2 #
3 # $Id: svc_acct_sm.cgi,v 1.5 1999-02-07 09:59:32 ivan Exp $
4 #
5 # Usage: post form to:
6 #        http://server.name/path/svc_acct_sm.cgi
7 #
8 # Note: Should br run setuid root as user nobody.
9 #
10 # lots of crufty stuff from svc_acct still in here, and modifications are (unelegantly) disabled.
11 #
12 # ivan@voicenet.com 97-jan-6
13 #
14 # enabled modifications
15
16 # ivan@voicenet.com 97-may-7
17 #
18 # fixed removal of cust_svc record on modifications!
19 # ivan@voicenet.com 97-jun-5
20 #
21 # rewrite ivan@sisd.com 98-mar-15
22 #
23 # Changes to allow page to work at a relative position in server
24 #       bmccane@maxbaud.net     98-apr-3
25 #
26 # $Log: svc_acct_sm.cgi,v $
27 # Revision 1.5  1999-02-07 09:59:32  ivan
28 # more mod_perl fixes, and bugfixes Peter Wemm sent via email
29 #
30 # Revision 1.4  1999/01/19 05:14:00  ivan
31 # for mod_perl: no more top-level my() variables; use vars instead
32 # also the last s/create/new/;
33 #
34 # Revision 1.3  1999/01/18 22:48:01  ivan
35 # s/create/new/g; and use fields('table_name')
36 #
37 # Revision 1.2  1998/12/17 08:40:29  ivan
38 # s/CGI::Request/CGI.pm/; etc
39 #
40
41 use strict;
42 use vars qw( $cgi $svcnum $old $new $error );
43 use CGI;
44 use CGI::Carp qw(fatalsToBrowser);
45 use FS::UID qw(cgisuidsetup);
46 use FS::Record qw(qsearchs fields);
47 use FS::svc_acct_sm;
48 use FS::CGI qw(popurl);
49
50 $cgi = new CGI;
51 cgisuidsetup($cgi);
52
53 $cgi->param('svcnum') =~ /^(\d*)$/ or die "Illegal svcnum!";
54 $svcnum =$1;
55
56 $old = qsearchs('svc_acct_sm',{'svcnum'=>$svcnum}) if $svcnum;
57
58 #unmunge domsvc and domuid
59 #$cgi->param('domsvc',(split(/:/, $cgi->param('domsvc') ))[0] );
60 #$cgi->param('domuid',(split(/:/, $cgi->param('domuid') ))[0] );
61
62 $new = new FS::svc_acct_sm ( {
63   map {
64     ($_, scalar($cgi->param($_)));
65   #} qw(svcnum pkgnum svcpart domuser domuid domsvc)
66   } ( fields('svc_acct_sm'), qw( pkgnum svcpart ) )
67 } );
68
69 if ( $svcnum ) {
70   $error = $new->replace($old);
71 } else {
72   $error = $new->insert;
73   $svcnum = $new->getfield('svcnum');
74
75
76 if ($error) {
77   $cgi->param('error', $error);
78   print $cgi->redirect(popurl(2). "svc_acct_sm.cgi?". $cgi->query_string );
79 } else {
80   print $cgi->redirect(popurl(3). "view/svc_acct_sm.cgi?$svcnum");
81 }
82