summaryrefslogtreecommitdiff
path: root/httemplate/search/report_receivables.cgi
blob: 04a41366f7504a6a93d88155e1fc8c492ab81061 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<!-- mason kludge -->
<%

#my $user = getotaker;
my $user = $FS::UID::user; #dumb 1.4 8-char workaround

print header('Current Receivables Report Results');

open (REPORT, "freeside-receivables-report -v $user |");

print '<PRE>';
while(<REPORT>) {
  print $_;
}
print '</PRE>';

print '</BODY></HTML>';

%>