Bugzilla – Attachment 68198 Details for
Bug 4319
waiting and in transit items cannot be reserved
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 4319 - [OPAC] allow to holds items in transit
Bug-4319---OPAC-allow-to-holds-items-in-transit.patch (text/plain), 1.99 KB, created by
Biblibre Sandboxes
on 2017-10-17 08:21:04 UTC
(
hide
)
Description:
Bug 4319 - [OPAC] allow to holds items in transit
Filename:
MIME Type:
Creator:
Biblibre Sandboxes
Created:
2017-10-17 08:21:04 UTC
Size:
1.99 KB
patch
obsolete
>From d6eeff7fae0ce3fd1b69c318b7f6a530ea1beebc Mon Sep 17 00:00:00 2001 >From: Alex Arnaud <alex.arnaud@biblibre.com> >Date: Thu, 5 Oct 2017 14:04:18 +0000 >Subject: [PATCH] Bug 4319 - [OPAC] allow to holds items in transit > >Test plan is the same that for waiting items but with items in transit > >Signed-off-by: Sonia BOUIS <sonia.bouis@univl-yon3.fr> >--- > koha-tmpl/opac-tmpl/bootstrap/en/includes/opac-detail-sidebar.inc | 2 +- > opac/opac-detail.pl | 2 +- > 2 files changed, 2 insertions(+), 2 deletions(-) > >diff --git a/koha-tmpl/opac-tmpl/bootstrap/en/includes/opac-detail-sidebar.inc b/koha-tmpl/opac-tmpl/bootstrap/en/includes/opac-detail-sidebar.inc >index 9069ee4..a94180c 100644 >--- a/koha-tmpl/opac-tmpl/bootstrap/en/includes/opac-detail-sidebar.inc >+++ b/koha-tmpl/opac-tmpl/bootstrap/en/includes/opac-detail-sidebar.inc >@@ -3,7 +3,7 @@ > [% UNLESS ( norequests ) %] > [% IF Koha.Preference( 'opacuserlogin' ) == 1 %] > [% IF Koha.Preference( 'RequestOnOpac' ) == 1 %] >- [% IF ( AllowOnShelfHolds OR ItemsIssued OR ItemsWaiting ) %] >+ [% IF ( AllowOnShelfHolds OR ItemsIssued OR ItemsWaitingOrInTransit ) %] > <li><a class="reserve" href="/cgi-bin/koha/opac-reserve.pl?biblionumber=[% biblionumber | html %]">Place hold</a></li> > [% END %] > [% END %] >diff --git a/opac/opac-detail.pl b/opac/opac-detail.pl >index 49f80e7..d371f44 100755 >--- a/opac/opac-detail.pl >+++ b/opac/opac-detail.pl >@@ -461,7 +461,7 @@ if ($session->param('busc')) { > > $template->param( > ItemsIssued => CountItemsIssued( $biblionumber ), >- ItemsWaiting => Koha::Holds->search({biblionumber => $biblionumber, found => 'W'})->count(), >+ ItemsWaitingOrInTransit => Koha::Holds->search({biblionumber => $biblionumber, found => ['W', 'T']})->count(), > OPACShowCheckoutName => C4::Context->preference("OPACShowCheckoutName"), > OPACShowBarcode => C4::Context->preference("OPACShowBarcode") > ); >-- >2.7.4
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 4319
:
3740
|
4099
|
4110
|
4327
|
4329
|
16965
|
67558
|
67584
|
67637
|
67704
|
67970
|
68194
|
68197
|
68198
|
68199
|
68531
|
68782
|
68786
|
69724
|
69725
|
69728
|
69815
|
69816
|
69817
|
70457