blob: 1532a44ebf9f95cfbfdc9d78a48a544fe7f59237 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
%
%
%#untaint custnum
%my($query) = $cgi->keywords;
%$query =~ /^(\d*)$/;
%my $custnum = $1;
%my $cust_main = qsearchs('cust_main',{'custnum'=>$custnum});
%die "Can't find customer!\n" unless $cust_main;
%
%my $error = $cust_main->bill(
%# 'time'=>$time
% );
%#&eidiot($error) if $error;
%
%unless ( $error ) {
% $cust_main->apply_payments;
% $cust_main->apply_credits;
%
% $error = $cust_main->collect(
% # 'invoice-time'=>$time,
% #'batch_card'=> 'yes',
% #'batch_card'=> 'no',
% #'report_badcard'=> 'yes',
% #'retry_card' => 'yes',
% 'retry' => 'yes',
% );
%}
%#&eidiot($error) if $error;
%
%if ( $error ) {
%
<!-- mason kludge -->
%
% &idiot($error);
%} else {
% print $cgi->redirect(popurl(2). "view/cust_main.cgi?$custnum");
%}
%
|