X-Git-Url: http://git.freeside.biz/gitweb/?a=blobdiff_plain;f=htdocs%2Fedit%2Fcust_credit.cgi;h=35c4d48fe58d7e18d5c7b51268242d15ecc46584;hb=f56cc7785c80f2b97c14653486a19c9cc34146cf;hp=793a451e67522ffc8242ae12831b6d5331632fed;hpb=b6869885e52ea0e18009350bf59d4eca8aafb0eb;p=freeside.git diff --git a/htdocs/edit/cust_credit.cgi b/htdocs/edit/cust_credit.cgi index 793a451e6..35c4d48fe 100755 --- a/htdocs/edit/cust_credit.cgi +++ b/htdocs/edit/cust_credit.cgi @@ -1,12 +1,10 @@ #!/usr/bin/perl -Tw # -# $Id: cust_credit.cgi,v 1.2 1998-12-17 06:16:59 ivan Exp $ +# $Id: cust_credit.cgi,v 1.7 1999-02-28 00:03:33 ivan Exp $ # # Usage: cust_credit.cgi custnum [ -paybatch ] # http://server.name/path/cust_credit?custnum [ -paybatch ] # -# Note: Should be run setuid root as user nobody. -# # some hooks in here for modifications as well as additions, but needs (lots) more work. # also see process/cust_credit.cgi, the script that processes the form. # @@ -25,60 +23,87 @@ # rewrite ivan@sisd.com 98-mar-16 # # $Log: cust_credit.cgi,v $ -# Revision 1.2 1998-12-17 06:16:59 ivan +# Revision 1.7 1999-02-28 00:03:33 ivan +# removed misleading comments +# +# Revision 1.6 1999/01/25 12:09:52 ivan +# yet more mod_perl stuff +# +# Revision 1.5 1999/01/19 05:13:33 ivan +# for mod_perl: no more top-level my() variables; use vars instead +# also the last s/create/new/; +# +# Revision 1.4 1999/01/18 09:41:23 ivan +# all $cgi->header calls now include ( '-expires' => 'now' ) for mod_perl +# (good idea anyway) +# +# Revision 1.3 1998/12/23 02:26:06 ivan +# *** empty log message *** +# +# Revision 1.2 1998/12/17 06:16:59 ivan # fix double // in relative URLs, s/CGI::Base/CGI/; # use strict; +use vars qw( $cgi $query $custnum $otaker $p1 $crednum $_date $amount $reason ); use Date::Format; use CGI; use CGI::Carp qw(fatalsToBrowser); -use FS::UID qw(cgisuidsetup getotaker popurl); +use FS::UID qw(cgisuidsetup getotaker); use FS::CGI qw(header popurl); +use FS::Record qw(fields); +#use FS::cust_credit; -my $cgi = new CGI; - +$cgi = new CGI; cgisuidsetup($cgi); -my($query) = $cgi->keywords; -$query =~ /^(\d+)$/; -my($custnum)=$1; - -my($otaker)=getotaker; - -my $p1 = popurl(1); - -print $cgi->header, header("Post Credit", ''), <param('error') ) { + #$cust_credit = new FS::cust_credit ( { + # map { $_, scalar($cgi->param($_)) } fields('cust_credit') + #} ); + $custnum = $cgi->param('custnum'); + $amount = $cgi->param('amount'); + #$refund = $cgi->param('refund'); + $reason = $cgi->param('reason'); +} else { + ($query) = $cgi->keywords; + $query =~ /^(\d+)$/; + $custnum = $1; + $amount = ''; + #$refund = 'yes'; + $reason = ''; +} +$_date = time; + +$otaker = getotaker; + +$p1 = popurl(1); + +print $cgi->header( '-expires' => 'now' ), header("Post Credit", ''); +print qq!Error: !, $cgi->param('error'), + "" + if $cgi->param('error'); +print < -
+    
 END
 
-#crednum
-my($crednum)="";
+$crednum = "";
 print qq!Credit #!, $crednum ? $crednum : " (NEW)", qq!!;
 
-#custnum
 print qq!\nCustomer #$custnum!;
 
-#paybatch
 print qq!!;
 
-#date
-my($date)=time;
-print qq!\nDate: !, time2str("%D",$date), qq!!;
+print qq!\nDate: !, time2str("%D",$_date), qq!!;
 
-#amount
-my($amount)='';
 print qq!\nAmount \$!;
+print qq!!;
 
-#refund?
-#print qq! Also post refund!;
+#print qq! Also post refund!;
 
-#otaker (hidden)
 print qq!!;
 
-#reason
-my($reason)='';
 print qq!\nReason !;
 
 print <