Bugzilla – Attachment 3833 Details for
Bug 6142
CanBookBeReserved function is redefined in C4/ILSDI/Utility.pm
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Delete sub CanBookBeReserved
0001-Bug-6142-Delete-sub-CanBookBeReserved.patch (text/plain), 1.95 KB, created by
Alex Arnaud
on 2011-04-08 12:03:23 UTC
(
hide
)
Description:
Delete sub CanBookBeReserved
Filename:
MIME Type:
Creator:
Alex Arnaud
Created:
2011-04-08 12:03:23 UTC
Size:
1.95 KB
patch
obsolete
>From d373bc8e2ab171c5a0f98120f1407bab6509791d Mon Sep 17 00:00:00 2001 >From: Alex Arnaud <alex.arnaud@biblibre.com> >Date: Fri, 8 Apr 2011 14:02:19 +0200 >Subject: [PATCH] Bug #6142 - Delete sub CanBookBeReserved > >--- > C4/ILSDI/Utility.pm | 49 ------------------------------------------------- > 1 files changed, 0 insertions(+), 49 deletions(-) > >diff --git a/C4/ILSDI/Utility.pm b/C4/ILSDI/Utility.pm >index 8ee1224..274a266 100644 >--- a/C4/ILSDI/Utility.pm >+++ b/C4/ILSDI/Utility.pm >@@ -67,55 +67,6 @@ sub BorrowerExists { > return $sth->fetchrow; > } > >-=head2 CanBookBeReserved >- >-Checks if a book (at bibliographic level) can be reserved by a borrower. >- >- if ( CanBookBeReserved($borrower, $biblionumber) ) { >- # Do stuff >- } >- >-=cut >- >-sub CanBookBeReserved { >- my ( $borrower, $biblionumber ) = @_; >- >- my $MAXIMUM_NUMBER_OF_RESERVES = C4::Context->preference("maxreserves"); >- my $MAXOUTSTANDING = C4::Context->preference("maxoutstanding"); >- >- my $out = 1; >- >- if ( $borrower->{'amountoutstanding'} > $MAXOUTSTANDING ) { >- $out = undef; >- } >- if ( $borrower->{gonenoaddress} eq 1 ) { >- $out = undef; >- } >- if ( $borrower->{lost} eq 1 ) { >- $out = undef; >- } >- if ( $borrower->{debarred} eq 1 ) { >- $out = undef; >- } >- my @reserves = GetReservesFromBorrowernumber( $borrower->{'borrowernumber'} ); >- if ( $MAXIMUM_NUMBER_OF_RESERVES && scalar(@reserves) >= $MAXIMUM_NUMBER_OF_RESERVES ) { >- $out = undef; >- } >- foreach my $res (@reserves) { >- if ( $res->{'biblionumber'} == $biblionumber ) { >- $out = undef; >- } >- } >- my $issues = GetPendingIssues( $borrower->{'borrowernumber'} ); >- foreach my $issue (@$issues) { >- if ( $issue->{'biblionumber'} == $biblionumber ) { >- $out = undef; >- } >- } >- >- return $out; >-} >- > =head2 Availability > > Returns, for an itemnumber, an array containing availability information. >-- >1.6.3.3 >
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
|
Splinter Review
Attachments on
bug 6142
:
3833
|
4594
|
4596
|
6027
|
6817
|
6859