https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=39625 --- Comment #7 from David Nind <david@davidnind.com> --- (In reply to Emmi Takkinen from comment #6)
Did you use renew functionality on Checkouts table on Patron details page or one on Circulation module (renew.pl)? Latter works correctly and interface is saved as "intranet". First one is the one that is broken.
Hi Emmi. I tested from the checkouts tab in the patron's check out section. Here is what I did using koha-testing-docker on main: 1. Checked out two items to Mary Burton (borrower number 49): - 39999000011418 (Programming perl) - 39999000005134 (Intermediate perl) 2. Went to Mary Burton's patron page > Check out - Two items checked out, renew column shows 5 of 5 renewals remaining for both items 3. In the checkouts tab, I: - selected the tick box for Intermediate perl in the renew column - clicked 'Renew selected items' 4. Access the database, koha-mysql kohadev 5. Ran the query: SELECT * FROM statistics WHERE borrowernumber=49 AND type='renew' ORDER BY 1 DESC; 6. One result from the query - interface column shows 'intranet' MariaDB [koha_kohadev]> SELECT * FROM statistics WHERE borrowernumber=49 AND type='renew' ORDER BY 1 DESC; +---------------------+--------+--------+-------+-------+---------------+------------+----------+----------+----------------+-------+--------------+-----------+ | datetime | branch | value | type | other | illrequest_id | itemnumber | itemtype | location | borrowernumber | ccode | categorycode | interface | +---------------------+--------+--------+-------+-------+---------------+------------+----------+----------+----------------+-------+--------------+-----------+ | 2025-12-13 00:37:51 | CPL | 0.0000 | renew | | NULL | 264 | BK | GEN | 49 | REF | PT | intranet | +---------------------+--------+--------+-------+-------+---------------+------------+----------+----------+----------------+-------+--------------+-----------+ 1 row in set (0.001 sec) 7. I repeated this several times, with no change. I also tested on Koha 24.05.16, and got the same results. -- You are receiving this mail because: You are watching all bug changes.