Bugzilla – Attachment 122314 Details for
Bug 3142
Standardize how OPAC and staff determine requestability
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 3142: Add itemlost, withdrawn and notforloan
Bug-3142-Add-itemlost-withdrawn-and-notforloan.patch (text/plain), 969 bytes, created by
Jonathan Druart
on 2021-06-23 08:28:35 UTC
(
hide
)
Description:
Bug 3142: Add itemlost, withdrawn and notforloan
Filename:
MIME Type:
Creator:
Jonathan Druart
Created:
2021-06-23 08:28:35 UTC
Size:
969 bytes
patch
obsolete
>From 99f2fc1ad52eebe7a510a3176860e0d0f26fd562 Mon Sep 17 00:00:00 2001 >From: Jonathan Druart <jonathan.druart@bugs.koha-community.org> >Date: Tue, 22 Jun 2021 15:38:29 +0200 >Subject: [PATCH] Bug 3142: Add itemlost, withdrawn and notforloan > >--- > Koha/Items.pm | 10 +++++++++- > 1 file changed, 9 insertions(+), 1 deletion(-) > >diff --git a/Koha/Items.pm b/Koha/Items.pm >index 16479835536..fcab80c0668 100644 >--- a/Koha/Items.pm >+++ b/Koha/Items.pm >@@ -47,7 +47,15 @@ Return the items of the set that are holdable > > sub filter_by_for_hold { > my ($self) = @_; >- return $self->search( { notforloan => { '<=' => 0 } } ); # items with negative or zero notforloan value are holdable >+ >+ return $self->search( >+ { >+ itemlost => 0, >+ withdrawn => 0, >+ notforloan => { '<=' => 0 } >+ , # items with negative or zero notforloan value are holdable >+ } >+ ); > } > > =head3 filter_by_visible_in_opac >-- >2.20.1
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 3142
:
122284
|
122285
|
122286
|
122287
|
122314
|
122315
|
122316
|
122317
|
125727
|
125728
|
125729
|
125730
|
125732
|
125733
|
125734
|
125942
|
125943
|
125944
|
125945
|
125946
|
125947
|
125948
|
125949
|
125950
|
125951
|
125956
|
125967
|
125968
|
125969
|
125970
|
125971
|
125972
|
125973
|
125974
|
125975
|
125976
|
125977