Bugzilla – Attachment 181398 Details for
Bug 39588
Bookings to collect report won't load when the search returns currently checked out bookings
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 39588: Fix concatenation in bookings to collect
Bug-39588-Fix-concatenation-in-bookings-to-collect.patch (text/plain), 1.54 KB, created by
PTFS Europe Sandboxes
on 2025-04-23 20:35:55 UTC
(
hide
)
Description:
Bug 39588: Fix concatenation in bookings to collect
Filename:
MIME Type:
Creator:
PTFS Europe Sandboxes
Created:
2025-04-23 20:35:55 UTC
Size:
1.54 KB
patch
obsolete
>From 73add0be7d28503d46af1e7cbdcbe5c47069b1f4 Mon Sep 17 00:00:00 2001 >From: Lucas Gass <lucas@bywatersolutions.com> >Date: Tue, 8 Apr 2025 22:22:32 +0000 >Subject: [PATCH] Bug 39588: Fix concatenation in bookings to collect > >1. Turn on bookings for an item or item type >2. Find an item and book it. >3. Check the same item out. >4. Go to Circulation > Bookings to collect and run the report >5. The table never loads >6. APPLY PATCH >7. Try again, the bookings to collect report should load! > >Signed-off-by: Andrew Fuerste Henry <andrew@bywatersolutions.com> >Signed-off-by: kristi <kkrueger@cuyahogalibrary.org> >--- > koha-tmpl/intranet-tmpl/prog/en/modules/circ/pendingbookings.tt | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/pendingbookings.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/circ/pendingbookings.tt >index ec56c04849..1237309801 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/pendingbookings.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/circ/pendingbookings.tt >@@ -237,7 +237,7 @@ > "render": function(data,type,row,meta) { > if ( row.item ) { > if ( row.item.checked_out_date ) { >- return _("On loan, due: ") . $date(row.item.checked_out_date); >+ return _("On loan, due: ") + $date(row.item.checked_out_date); > } else { > return row.item._strings.location.str; > } >-- >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 39588
:
180735
|
180742
|
181398
|
182186