fix double // in relative URLs, s/CGI::Base/CGI/;
[freeside.git] / htdocs / edit / cust_credit.cgi
1 #!/usr/bin/perl -Tw
2 #
3 # $Id: cust_credit.cgi,v 1.2 1998-12-17 06:16:59 ivan Exp $
4 #
5 # Usage: cust_credit.cgi custnum [ -paybatch ]
6 #        http://server.name/path/cust_credit?custnum [ -paybatch ]
7 #
8 # Note: Should be run setuid root as user nobody.
9 #
10 # some hooks in here for modifications as well as additions, but needs (lots) more work.
11 # also see process/cust_credit.cgi, the script that processes the form.
12 #
13 # ivan@voicenet.com 96-dec-05
14 #
15 # paybatch field, differentiates between credits & credits+refunds by commandline
16 # ivan@voicenet.com 96-dec-08
17 #
18 # added (but commented out) sprintf("%.2f" in amount field.  Hmm.
19 # ivan@voicenet.com 97-jan-3
20 #
21 # paybatch stuff thrown out - has checkbox now instead.  
22 # (well, sort of.  still passed around for backward compatability and possible editing hook)
23 # ivan@voicenet.com 97-apr-21
24 #
25 # rewrite ivan@sisd.com 98-mar-16
26 #
27 # $Log: cust_credit.cgi,v $
28 # Revision 1.2  1998-12-17 06:16:59  ivan
29 # fix double // in relative URLs, s/CGI::Base/CGI/;
30 #
31
32 use strict;
33 use Date::Format;
34 use CGI;
35 use CGI::Carp qw(fatalsToBrowser);
36 use FS::UID qw(cgisuidsetup getotaker popurl);
37 use FS::CGI qw(header popurl);
38
39 my $cgi = new CGI;
40
41 cgisuidsetup($cgi);
42
43 my($query) = $cgi->keywords;
44 $query =~ /^(\d+)$/;
45 my($custnum)=$1;
46
47 my($otaker)=getotaker;
48
49 my $p1 = popurl(1);
50
51 print $cgi->header, header("Post Credit", ''), <<END;
52     <FORM ACTION="${p1}process/cust_credit.cgi" METHOD=POST>
53     <HR><PRE>
54 END
55
56 #crednum
57 my($crednum)="";
58 print qq!Credit #<B>!, $crednum ? $crednum : " <I>(NEW)</I>", qq!</B><INPUT TYPE="hidden" NAME="crednum" VALUE="$crednum">!;
59
60 #custnum
61 print qq!\nCustomer #<B>$custnum</B><INPUT TYPE="hidden" NAME="custnum" VALUE="$custnum">!;
62
63 #paybatch
64 print qq!<INPUT TYPE="hidden" NAME="paybatch" VALUE="">!;
65
66 #date
67 my($date)=time;
68 print qq!\nDate: <B>!, time2str("%D",$date), qq!</B><INPUT TYPE="hidden" NAME="_date" VALUE="$date">!;
69
70 #amount
71 my($amount)='';
72 print qq!\nAmount \$<INPUT TYPE="text" NAME="amount" VALUE="$amount" SIZE=8 MAXLENGTH=8>!;
73
74 #refund?
75 #print qq! <INPUT TYPE="checkbox" NAME="refund" VALUE="yes">Also post refund!;
76
77 #otaker (hidden)
78 print qq!<INPUT TYPE="hidden" NAME="otaker" VALUE="$otaker">!;
79
80 #reason
81 my($reason)='';
82 print qq!\nReason <INPUT TYPE="text" NAME="reason" VALUE="$reason" SIZE=72>!;
83
84 print <<END;
85 </PRE>
86 <BR>
87 <CENTER><INPUT TYPE="submit" VALUE="Post"></CENTER>
88 END
89
90 print <<END;
91
92     </FORM>
93   </BODY>
94 </HTML>
95 END
96