youtube image
From YouTube: System Administration Special Interest Group - 11/8/2022

Description

00:19:04 Andrew Fuerste-Henry: I can't unmute :(
00:19:12 Andrew Fuerste-Henry: mean ol' host won't let me
00:21:08 Andrew Fuerste-Henry: mysterious. brb
00:21:24 Andrew Fuerste-Henry: I clicked the unmute and it didn't do anything. weird. par for week.
00:23:29 Rebecca Coert: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29719Here's the bug I mentioned - fixed in 22.05
00:26:17 Jason - SEKLS: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29792
00:28:53 Andrew Fuerste-Henry: I believe it didn't use to show at all
00:29:01 Andrew Fuerste-Henry: the status, I mean
00:32:50 Jason - SEKLS: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=22827
00:33:25 Andrew Fuerste-Henry: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28640
00:39:13 Christie: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31092
00:41:36 Andrew Fuerste-Henry: related to Christie's bug: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28486
00:49:11 Juliet Heltibridle: SELECT
CONCAT_WS('',LEFT(surname,1),RIGHT(cardnumber,5)) AS 'Patron',
-- action_logs.interface,
CASE
WHEN action_logs.interface='opac' THEN 'patron'
WHEN action_logs.interface='cron' THEN 'automatic'
WHEN action_logs.user = '264555' THEN 'self check'
WHEN action_logs.user = '264556' THEN 'self check'
WHEN action_logs.user = '264557' THEN 'self check'
WHEN action_logs.user = '264558' THEN 'self check'
ELSE 'staff'
END AS 'Canceled By',
biblio.title,
author,
itemcallnumber,
barcode,
ifnull(r.holds_count,'None') AS holds_count,
old_reserves.reservedate
FROM action_logs
LEFT JOIN old_reserves ON (action_logs.object=old_reserves.reserve_id AND action_logs.module='holds')
LEFT JOIN biblio USING (biblionumber)
LEFT JOIN items ON (old_reserves.itemnumber=items.itemnumber)
LEFT JOIN borrowers USING (borrowernumber)
LEFT JOIN (SELECT biblionumber, count(reserve_id) AS holds_count FROM reserves WHERE found IS NULL GROUP BY
00:49:34 Juliet Heltibridle: This is my canceled holds report
00:50:24 Juliet Heltibridle: I wanted it to tell me when someone canceled from the self check
00:51:36 Michael Adamyk (CKLS): CASE is my favorite
01:03:05 Juliet Heltibridle: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=26591
01:03:26 Andrew Fuerste-Henry: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=26591
01:04:43 Ann Flournoy: I have to go work the info desk. Thanks everyone!