Bugzilla – Attachment 93549 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.49 KB, created by
Brendan Gallagher
on 2019-10-03 10:00:07 UTC
(
hide
)
Description:
Bug 17247 : Check if patron is debarred in HoldItem and HoldTitle
Filename:
MIME Type:
Creator:
Brendan Gallagher
Created:
2019-10-03 10:00:07 UTC
Size:
1.49 KB
patch
obsolete
>From e9c48a6cbf83720b21abb8a32e77026894caa4d3 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". > >Signed-off-by: Brendan Gallagher <brendan@bywatersolutions.com> >--- > C4/ILSDI/Services.pm | 6 ++++++ > 1 file changed, 6 insertions(+) > >diff --git a/C4/ILSDI/Services.pm b/C4/ILSDI/Services.pm >index 049ddcf600..fbc77e3398 100644 >--- a/C4/ILSDI/Services.pm >+++ b/C4/ILSDI/Services.pm >@@ -688,6 +688,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 ); >@@ -773,6 +776,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