diff options
author | ivan <ivan> | 2006-08-24 01:37:19 +0000 |
---|---|---|
committer | ivan <ivan> | 2006-08-24 01:37:19 +0000 |
commit | b19266599870172bda0921df60020f0440854750 (patch) | |
tree | 33a39d22cd7338f294ec9440f838db3b1f867daa /httemplate/edit/cust_credit.cgi | |
parent | 3ce7691203a7737406bf2d4442f7fd84b81f847e (diff) |
oops, "Auto-apply to invoices" dropdown disappeared
Diffstat (limited to 'httemplate/edit/cust_credit.cgi')
-rwxr-xr-x | httemplate/edit/cust_credit.cgi | 70 |
1 files changed, 35 insertions, 35 deletions
diff --git a/httemplate/edit/cust_credit.cgi b/httemplate/edit/cust_credit.cgi index c54fb8147..13d062c74 100755 --- a/httemplate/edit/cust_credit.cgi +++ b/httemplate/edit/cust_credit.cgi @@ -1,40 +1,10 @@ -% -% -%my $conf = new FS::Conf; -%my($custnum, $amount, $reason); -%if ( $cgi->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 { -% my($query) = $cgi->keywords; -% $query =~ /^(\d+)$/; -% $custnum = $1; -% $amount = ''; -% #$refund = 'yes'; -% $reason = ''; -%} -%my $_date = time; -% -%my $otaker = getotaker; -% -%my $p1 = popurl(1); -% -% <% include('/elements/header-popup.html', 'Enter Credit') %> -% if ( $cgi->param('error') ) { +% if ( $cgi->param('error') ) { <FONT SIZE="+1" COLOR="#ff0000">Error: <% $cgi->param('error') %></FONT> <BR><BR> % } - -<!-- <% small_custview($custnum, $conf->config('countrydefault')) %> --> - <FORM ACTION="<% $p1 %>process/cust_credit.cgi" METHOD=POST> <INPUT TYPE="hidden" NAME="crednum" VALUE=""> <INPUT TYPE="hidden" NAME="custnum" VALUE="<% $custnum %>"> @@ -44,7 +14,6 @@ <INPUT TYPE="hidden" NAME="otaker" VALUE="<% $otaker %>"> Credit - <% ntable("#cccccc", 2) %> <TR> @@ -56,11 +25,11 @@ Credit <TD ALIGN="right">Amount</TD> <TD BGCOLOR="#ffffff">$<INPUT TYPE="text" NAME="amount" VALUE="<% $amount %>" SIZE=8 MAXLENGTH=8></TD> </TR> + % %#print qq! <INPUT TYPE="checkbox" NAME="refund" VALUE="$refund">Also post refund!; % - <TR> <TD ALIGN="right">Reason</TD> <TD BGCOLOR="#ffffff"><INPUT TYPE="text" NAME="reason" VALUE="<% $reason %>" SIZE=32></TD> @@ -74,7 +43,38 @@ Credit </TABLE> <BR> + <CENTER><INPUT TYPE="submit" VALUE="Enter credit"></CENTER> - </FORM> - </BODY> + +</FORM> +</BODY> </HTML> + +<%once> +my $conf = new FS::Conf; +</%once> + +<%init> +my($custnum, $amount, $reason); +if ( $cgi->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 { + my($query) = $cgi->keywords; + $query =~ /^(\d+)$/; + $custnum = $1; + $amount = ''; + #$refund = 'yes'; + $reason = ''; +} +my $_date = time; + +my $otaker = getotaker; + +my $p1 = popurl(1); +</%init> |