Bugzilla – Attachment 172517 Details for
Bug 38117
"Item was not checked in" should not always show
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 38117: Only show 'not checked in' message if item is checked out
Bug-38117-Only-show-not-checked-in-message-if-item.patch (text/plain), 1.89 KB, created by
Nick Clemens (kidclamp)
on 2024-10-08 11:16:07 UTC
(
hide
)
Description:
Bug 38117: Only show 'not checked in' message if item is checked out
Filename:
MIME Type:
Creator:
Nick Clemens (kidclamp)
Created:
2024-10-08 11:16:07 UTC
Size:
1.89 KB
patch
obsolete
>From a20b3540ba028c2c0a81c4e65371e250f6564f29 Mon Sep 17 00:00:00 2001 >From: Nick Clemens <nick@bywatersolutions.com> >Date: Tue, 8 Oct 2024 11:11:54 +0000 >Subject: [PATCH] Bug 38117: Only show 'not checked in' message if item is > checked out > >To test: > 1 - Enable system preference 'ShowAllCheckins' > 2 - Set system preference 'BlockReturnOfWithdrawnItems' to 'Block' > 3 - Check in an item > 4 - Note 'Item was not checked in message' > 5 - Confirm it happens for any item that is not currently issued > 6 - Check out an item to a patron > 7 - Mark the item as withdrawn > 8 - Check the item in > 9 - Note message 'Item was not checked in' appears too >10 - Apply patch >11 - Confirm checking in an item not checked out only shows 'Not checked out' >12 - Confirm the withdrawn item still shows 'Item was not checked in' >13 - Confirm above message remains whne checking in more items that were not issued >--- > koha-tmpl/intranet-tmpl/prog/en/modules/circ/returns.tt | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/returns.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/circ/returns.tt >index 6c132ef2b8b..d48a3780459 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/returns.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/circ/returns.tt >@@ -1267,7 +1267,7 @@ > [% FOREACH riloo IN riloop %] > <tr> > <td class="ci-duedate"> >- [% IF ( riloo.not_returned ) %] >+ [% IF ( riloo.not_returned AND riloo.duedate ) %] > <span class="problem">Item was not checked in</span> > [% END %] > [% IF ( riloo.duedate ) %] >-- >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 38117
:
172517
|
172519
|
173251