[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [Koha-devel] What's Current Loan
From: |
Owen Leonard |
Subject: |
Re: [Koha-devel] What's Current Loan |
Date: |
Thu Feb 26 09:02:01 2004 |
It looks like 'Current Loan' is supposed to tell you something about whether
the item can be renewed or not. This is what the script says:
# check if item is renewable
my %env;
my $status = renewstatus(\%env,$borrowernumber, $issue->{'itemnumber'});
$issue->{'status'} = $status;
But as far as I can tell, this isn't accurate. Maybe someone can check it out
and let us know.
-- Owen