Bugzilla – Attachment 89652 Details for
Bug 17247
ILS-DI HoldTitle and HoldItem should check if patron is restricted
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 17247 : Check if patron is debarred in HoldItem and HoldTitle
Bug-17247--Check-if-patron-is-debarred-in-HoldItem.patch (text/plain), 1.43 KB, created by
Arthur Suzuki
on 2019-05-13 11:10:51 UTC
(
hide
)
Description:
Bug 17247 : Check if patron is debarred in HoldItem and HoldTitle
Filename:
MIME Type:
Creator:
Arthur Suzuki
Created:
2019-05-13 11:10:51 UTC
Size:
1.43 KB
patch
obsolete
>From be5e9ca0a09d7a29e99930326cacc3303145dc43 Mon Sep 17 00:00:00 2001 >From: Arthur Suzuki <arthur.suzuki@biblibre.com> >Date: Mon, 13 May 2019 11:29:50 +0200 >Subject: [PATCH] Bug 17247 : Check if patron is debarred in HoldItem and > HoldTitle > >Test plan : >Make sure a debarred patron cannot hold a title or item through ILS-DI. >Response from the WebService should be "PatronDebarred". >--- > C4/ILSDI/Services.pm | 6 ++++++ > 1 file changed, 6 insertions(+) > >diff --git a/C4/ILSDI/Services.pm b/C4/ILSDI/Services.pm >index 43935bbf8f..fa3cb3894a 100644 >--- a/C4/ILSDI/Services.pm >+++ b/C4/ILSDI/Services.pm >@@ -675,6 +675,9 @@ sub HoldTitle { > my $patron = Koha::Patrons->find( $borrowernumber ); > return { code => 'PatronNotFound' } unless $patron; > >+ # If borrower is debarred return an error code >+ return { code => 'PatronDebarred' } if $patron->is_debarred; >+ > # Get the biblio record, or return an error code > my $biblionumber = $cgi->param('bib_id'); > my $biblio = Koha::Biblios->find( $biblionumber ); >@@ -760,6 +763,9 @@ sub HoldItem { > my $patron = Koha::Patrons->find( $borrowernumber ); > return { code => 'PatronNotFound' } unless $patron; > >+ # If borrower is debarred return an error code >+ return { code => 'PatronDebarred' } if $patron->is_debarred; >+ > # Get the biblio or return an error code > my $biblionumber = $cgi->param('bib_id'); > my $biblio = Koha::Biblios->find( $biblionumber ); >-- >2.11.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 17247
:
55174
|
70684
|
72963
|
75261
|
75262
|
75270
|
89652
|
89653
|
93549
|
94037
|
94038