Merging changes from rel-1-2 to trunk
authortonnesen <tonnesen>
Mon, 28 Oct 2002 21:44:33 +0000 (21:44 +0000)
committertonnesen <tonnesen>
Mon, 28 Oct 2002 21:44:33 +0000 (21:44 +0000)
opac/opac-account.pl [new file with mode: 0755]

diff --git a/opac/opac-account.pl b/opac/opac-account.pl
new file mode 100755 (executable)
index 0000000..94fc308
--- /dev/null
@@ -0,0 +1,48 @@
+#!/usr/bin/perl
+
+# wrriten 15/10/2002 by finlay@katipo.oc.nz
+# script to display borrowers account details in the opac
+
+use strict;
+use C4::Output;
+use CGI;
+use C4::Search;
+use C4::Circulation::Circ2;
+use C4::Auth;
+
+my $query = new CGI;
+
+my $flagsrequired;
+$flagsrequired->{borrow}=1;
+
+my ($loggedinuser, $cookie, $sessionID) = checkauth($query, 0, $flagsrequired);
+
+my $template = gettemplate("opac-account.tmpl", "opac");
+
+# get borrower information ....
+my $borrowernumber = getborrowernumber($loggedinuser);
+my ($borr, $flags) = getpatroninformation(undef, $borrowernumber);
+
+my @bordat;
+$bordat[0] = $borr;
+
+$template->param( BORROWER_INFO => \@bordat );
+
+
+#get account details
+my ($numaccts,$accts,$total) = getboracctrecord(undef,$borr);   
+
+for (my $i=0;$i<$numaccts;$i++){
+    $accts->[$i]{'amount'}+=0.00;
+    $accts->[$i]{'amountoutstanding'}+=0.00;
+    if ($accts->[$i]{'accounttype'} ne 'F' && $accts->[$i]{'accounttype'} ne 'FU'){
+       $accts->[$i]{'print_title'};
+    }
+}
+
+$template->param( ACCOUNT_LINES => $accts );
+
+$template->param( total => $total );
+
+$template->param( loggedinuser => $loggedinuser );
+print "Content-Type: text/html\n\n", $template->output;