Bugzilla – Attachment 38341 Details for
Bug 14046
CheckIfIssuedToPatron fails if biblionumber != biblioitemnumber
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 14046: Make the CheckIfIssuedToPatron using the biblionumber
Bug-14046-Make-the-CheckIfIssuedToPatron-using-the.patch (text/plain), 1.51 KB, created by
Jonathan Druart
on 2015-04-22 14:11:14 UTC
(
hide
)
Description:
Bug 14046: Make the CheckIfIssuedToPatron using the biblionumber
Filename:
MIME Type:
Creator:
Jonathan Druart
Created:
2015-04-22 14:11:14 UTC
Size:
1.51 KB
patch
obsolete
>From 64c105a555b2ad720cf748076a2e06aeaadda665 Mon Sep 17 00:00:00 2001 >From: Jonathan Druart <jonathan.druart@biblibre.com> >Date: Wed, 22 Apr 2015 16:05:41 +0200 >Subject: [PATCH] Bug 14046: Make the CheckIfIssuedToPatron using the > biblionumber > >C4::Circ::CheckIfIssuedToPatron called > $items = GetItemsByBiblioitemnumber($biblionumber); >But if biblionumber != biblioitemnumber, the items retrieved were not >the good ones! > >Test plan: >Make your Auto increment values for biblio and biblioitems differs >Launch the tests: > prove t/db_dependent/Circulation/CheckIfIssuedToPatron.t > >Before this patch, they did not pass. >--- > C4/Circulation.pm | 15 +++++++++------ > 1 file changed, 9 insertions(+), 6 deletions(-) > >diff --git a/C4/Circulation.pm b/C4/Circulation.pm >index bd192cf..dd23734 100644 >--- a/C4/Circulation.pm >+++ b/C4/Circulation.pm >@@ -3808,12 +3808,15 @@ sub TransferSlip { > sub CheckIfIssuedToPatron { > my ($borrowernumber, $biblionumber) = @_; > >- my $items = GetItemsByBiblioitemnumber($biblionumber); >- >- foreach my $item (@{$items}) { >- return 1 if ($item->{borrowernumber} && $item->{borrowernumber} eq $borrowernumber); >- } >- >+ my $dbh = C4::Context->dbh; >+ my $query = q| >+ SELECT COUNT(*) FROM issues >+ LEFT JOIN items ON items.itemnumber = issues.itemnumber >+ WHERE items.biblionumber = ? >+ AND issues.borrowernumber = ? >+ |; >+ my $is_issued = $dbh->selectrow_array($query, {}, $biblionumber, $borrowernumber ); >+ return 1 if $is_issued; > return; > } > >-- >2.1.0
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 14046
:
38341
|
38342
|
38348