Bugzilla – Attachment 185098 Details for
Bug 40586
opac-user, holds-table.inc: Include on order status when item.notforloan < 0
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 40586: Show negative notforloan status in holds table on opac-user
Bug-40586-Show-negative-notforloan-status-in-holds.patch (text/plain), 1.89 KB, created by
Marcel de Rooy
on 2025-08-04 12:53:19 UTC
(
hide
)
Description:
Bug 40586: Show negative notforloan status in holds table on opac-user
Filename:
MIME Type:
Creator:
Marcel de Rooy
Created:
2025-08-04 12:53:19 UTC
Size:
1.89 KB
patch
obsolete
>From 76a5d5ffb4c540ea20f0d78d9bf3a6587da65514 Mon Sep 17 00:00:00 2001 >From: Marcel de Rooy <m.de.rooy@rijksmuseum.nl> >Date: Mon, 4 Aug 2025 14:35:56 +0200 >Subject: [PATCH] Bug 40586: Show negative notforloan status in holds table on > opac-user >Content-Type: text/plain; charset=utf-8 > >If an item is on order, it may take a while before becoming available. >Showing that too on the opac-user page is helpful for the user and >may reduce questions. > >Test plan: >Pick an item and set notforloan to On order (-1) or another custom >negative notforloan status. >Put an item level hold on that item. >Go to the OPAC user page of that patron. Verify that the AV description >is added now to the status column of the holds table. > >Signed-off-by: Marcel de Rooy <m.de.rooy@rijksmuseum.nl> >--- > koha-tmpl/opac-tmpl/bootstrap/en/includes/holds-table.inc | 3 +++ > 1 file changed, 3 insertions(+) > >diff --git a/koha-tmpl/opac-tmpl/bootstrap/en/includes/holds-table.inc b/koha-tmpl/opac-tmpl/bootstrap/en/includes/holds-table.inc >index 2df921a1db..17e0c85ad1 100644 >--- a/koha-tmpl/opac-tmpl/bootstrap/en/includes/holds-table.inc >+++ b/koha-tmpl/opac-tmpl/bootstrap/en/includes/holds-table.inc >@@ -1,3 +1,4 @@ >+[% USE AuthorisedValues %] > [% USE Branches %] > [% USE ItemTypes %] > [% USE KohaDates %] >@@ -155,6 +156,8 @@ > [% ELSE %] > [% IF HOLD.itemtype %] > <span>Pending for next available item of item type '[% ItemTypes.GetDescription( HOLD.itemtype ) | html %]'</span> >+ [% ELSIF HOLD.item && HOLD.item.notforloan < 0 %] >+ <span>Pending ([% AuthorisedValues.GetDescriptionByKohaField( kohafield => 'items.notforloan', authorised_value => HOLD.item.notforloan ) %])</span> > [% ELSE %] > <span>Pending</span> > [% END %] >-- >2.39.5
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 40586
:
185097
| 185098