s/create/new/g; and use fields('table_name')
[freeside.git] / htdocs / edit / cust_credit.cgi
1 #!/usr/bin/perl -Tw
2 #
3 # $Id: cust_credit.cgi,v 1.4 1999-01-18 09:41:23 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.4  1999-01-18 09:41:23  ivan
29 # all $cgi->header calls now include ( '-expires' => 'now' ) for mod_perl
30 # (good idea anyway)
31 #
32 # Revision 1.3  1998/12/23 02:26:06  ivan
33 # *** empty log message ***
34 #
35 # Revision 1.2  1998/12/17 06:16:59  ivan
36 # fix double // in relative URLs, s/CGI::Base/CGI/;
37 #
38
39 use strict;
40 use Date::Format;
41 use CGI;
42 use CGI::Carp qw(fatalsToBrowser);
43 use FS::UID qw(cgisuidsetup getotaker);
44 use FS::CGI qw(header popurl);
45
46 my $cgi = new CGI;
47
48 cgisuidsetup($cgi);
49
50 my($query) = $cgi->keywords;
51 $query =~ /^(\d+)$/;
52 my($custnum)=$1;
53
54 my($otaker)=getotaker;
55
56 my $p1 = popurl(1);
57
58 print $cgi->header( '-expires' => 'now' ), header("Post Credit", ''), <<END;
59     <FORM ACTION="${p1}process/cust_credit.cgi" METHOD=POST>
60     <HR><PRE>
61 END
62
63 #crednum
64 my($crednum)="";
65 print qq!Credit #<B>!, $crednum ? $crednum : " <I>(NEW)</I>", qq!</B><INPUT TYPE="hidden" NAME="crednum" VALUE="$crednum">!;
66
67 #custnum
68 print qq!\nCustomer #<B>$custnum</B><INPUT TYPE="hidden" NAME="custnum" VALUE="$custnum">!;
69
70 #paybatch
71 print qq!<INPUT TYPE="hidden" NAME="paybatch" VALUE="">!;
72
73 #date
74 my($date)=time;
75 print qq!\nDate: <B>!, time2str("%D",$date), qq!</B><INPUT TYPE="hidden" NAME="_date" VALUE="$date">!;
76
77 #amount
78 my($amount)='';
79 print qq!\nAmount \$<INPUT TYPE="text" NAME="amount" VALUE="$amount" SIZE=8 MAXLENGTH=8>!;
80
81 #refund?
82 #print qq! <INPUT TYPE="checkbox" NAME="refund" VALUE="yes">Also post refund!;
83
84 #otaker (hidden)
85 print qq!<INPUT TYPE="hidden" NAME="otaker" VALUE="$otaker">!;
86
87 #reason
88 my($reason)='';
89 print qq!\nReason <INPUT TYPE="text" NAME="reason" VALUE="$reason" SIZE=72>!;
90
91 print <<END;
92 </PRE>
93 <BR>
94 <CENTER><INPUT TYPE="submit" VALUE="Post"></CENTER>
95 END
96
97 print <<END;
98
99     </FORM>
100   </BODY>
101 </HTML>
102 END
103