From bugzilla-daemon at bugs.koha-community.org Fri Mar 1 00:09:49 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 29 Feb 2024 23:09:49 +0000 Subject: [Koha-bugs] [Bug 36206] Administrative plugins In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36206 Lucas Gass changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |lucas at bywatersolutions.com -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 1 00:20:17 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 29 Feb 2024 23:20:17 +0000 Subject: [Koha-bugs] [Bug 35169] Make long overdue borrower category options configurable in interface In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35169 Lucas Gass changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Needs Signoff |Failed QA --- Comment #7 from Lucas Gass --- Matthias, I tested this and it seems to work as intended, you sysprefs.sql update looks good to me. However, your DBUpdate explanation and type should not be NULL. Sorry to be a pain! -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 1 00:28:12 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 29 Feb 2024 23:28:12 +0000 Subject: [Koha-bugs] [Bug 23641] Checkout via camera on device In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=23641 Lucas Gass changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |lucas at bywatersolutions.com --- Comment #18 from Lucas Gass --- Very cool, David. Do you we need to add license information to the about page ZXing library? -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Fri Mar 1 00:36:49 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 29 Feb 2024 23:36:49 +0000 Subject: [Koha-bugs] [Bug 34755] Error authenticating to external OpenID Connect (OIDC) identity provider : wrong_csrf_token In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=34755 David Cook changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Signed Off |Failed QA --- Comment #15 from David Cook --- Once again, I cannot reproduce this problem. After authenticating in Keycloak, I'm redirected to the Koha endpoint at http://localhost:8080/api/v1/public/oauth/login/Keycloak/opac which is a GET request. My request cookie has a CGISESSID value of 8435418b15fc0280af09f72a5f6c31cd. This is an anonymous session. My response cookie has a CGISESSID value of 1a11450a805d152b0dfcfcc91da3c341. This is an authenticated session. http://localhost:8080/api/v1/public/oauth/login/Keycloak/opac redirects as a GET request to opac-user.pl. Anti-CSRF shouldn't be involved here... -- I'm looking at Koha/REST/V1/OAuth/Client.pm and it looks OK to me. Personally, I would use a random value for a "state" parameter and save it to the session. Using a CSRF token in this case is problematic for a number of reasons I won't get into here. But the thing is... if you're getting wrong_csrf_token here it's because you've lost your session (well more specifically your userenv since master doesn't yet have the CSRF session fix Jonathan mentions above) between the time the "state" parameter was generated and the time the "state" parameter was checked. That means the test plan given in Comment 2 can't possibly work. Which takes me to Comment 10... there was something about navigating around Koha before posting the SSO login form. Now I have no idea why a person would do that, because it makes no sense at all. If you're clicking "Log in with Keycloak", then I'd just complete the login. But anyway... Recently I did notice that there is somewhere in Koha.. I think on the OPAC.. where the cookie isn't returned when it should be and that did cause me some grief. Let me try... -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 1 00:41:25 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 29 Feb 2024 23:41:25 +0000 Subject: [Koha-bugs] [Bug 34755] Error authenticating to external OpenID Connect (OIDC) identity provider : wrong_csrf_token In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=34755 --- Comment #16 from David Cook --- I was trying my best to break my sessions, and I did manage to reproduce the problem, but I can't recall exactly how. So I'm going to keep trying again (more carefully). -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 1 00:47:10 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 29 Feb 2024 23:47:10 +0000 Subject: [Koha-bugs] [Bug 34755] Error authenticating to external OpenID Connect (OIDC) identity provider : wrong_csrf_token In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=34755 --- Comment #17 from David Cook --- (In reply to David Cook from comment #16) > I was trying my best to break my sessions, and I did manage to reproduce the > problem, but I can't recall exactly how. > > So I'm going to keep trying again (more carefully). Ok so one way to do it would be to do the following: 1. Go to http://localhost:8080 2. Click "Log in with Keycloak" but don't log in 3. In a new tab, go to http://localhost:8080, and do a local login 4. Log out of the local login 5. Go back to original tab and complete the Keycloak login You'll get a wrong_csrf_token because the CGISESSID cookie value has changed. An anonymous user becoming an authenticated user will keep the same session ID, but an authenticated user becoming an anonymous user will lose their session ID. You should be getting the wrong_csrf_token warning in this case. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 1 00:51:16 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 29 Feb 2024 23:51:16 +0000 Subject: [Koha-bugs] [Bug 34755] Error authenticating to external OpenID Connect (OIDC) identity provider : wrong_csrf_token In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=34755 --- Comment #18 from David Cook --- Comment on attachment 161783 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=161783 Bug 34755: Unit tests Review of attachment 161783: --> (https://bugs.koha-community.org/bugzilla3/page.cgi?id=splinter.html&bug=34755&attachment=161783) ----------------------------------------------------------------- ::: t/db_dependent/api/v1/idp.t @@ +309,5 @@ > + $tx->req->cookies( { name => 'CGISESSID', value => $session_id } ); > + $t->request_ok($tx); > + > + my $error = URI->new($t->tx->res->headers->location)->query_param("auth_error"); > + isnt($error, "wrong_csrf_token", "CRSF token is recognized even when another user is logged in."); Ok this is interesting. Why would another user be logged in? -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 1 00:57:33 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 29 Feb 2024 23:57:33 +0000 Subject: [Koha-bugs] [Bug 34755] Error authenticating to external OpenID Connect (OIDC) identity provider : wrong_csrf_token In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=34755 --- Comment #19 from David Cook --- (In reply to David Cook from comment #18) > Ok this is interesting. Why would another user be logged in? Ahhhhh I know what the problem is now. So I'm going to keep this as Failed QA because the attached patch is not the solution. As I mentioned on Comment 11, you've actually bumped into a different bug which isn't directly related to the OpenID Connect Authentication. It is due to a problem with C4::Context->userenv, but I won't get into the reasons why. Leave it to me and Jonathan. We'll take care of it. Thanks for your patience on this one. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 1 00:58:04 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 29 Feb 2024 23:58:04 +0000 Subject: [Koha-bugs] [Bug 34755] Error authenticating to external OpenID Connect (OIDC) identity provider : wrong_csrf_token In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=34755 David Cook changed: What |Removed |Added ---------------------------------------------------------------------------- See Also| |https://bugs.koha-community | |.org/bugzilla3/show_bug.cgi | |?id=36149 -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 1 01:00:58 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 01 Mar 2024 00:00:58 +0000 Subject: [Koha-bugs] [Bug 34755] Error authenticating to external OpenID Connect (OIDC) identity provider : wrong_csrf_token In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=34755 David Cook changed: What |Removed |Added ---------------------------------------------------------------------------- Depends on| |36098 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36098 [Bug 36098] Create Koha::Session module -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 1 01:00:58 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 01 Mar 2024 00:00:58 +0000 Subject: [Koha-bugs] [Bug 36098] Create Koha::Session module In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36098 David Cook changed: What |Removed |Added ---------------------------------------------------------------------------- Blocks| |34755 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=34755 [Bug 34755] Error authenticating to external OpenID Connect (OIDC) identity provider : wrong_csrf_token -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 1 01:02:17 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 01 Mar 2024 00:02:17 +0000 Subject: [Koha-bugs] [Bug 34755] Error authenticating to external OpenID Connect (OIDC) identity provider : wrong_csrf_token In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=34755 --- Comment #20 from David Cook --- (In reply to Jonathan Druart from comment #13) > David, isn't the same problem we encountered on 34478? Should not we > backport "Make Koha::Token use session id not userenv id"? Yep, 100%. We need to backport it. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 1 01:07:55 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 01 Mar 2024 00:07:55 +0000 Subject: [Koha-bugs] [Bug 23641] Checkout via camera on device In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=23641 --- Comment #19 from David Cook --- (In reply to Lucas Gass from comment #18) > Very cool, David. Do you we need to add license information to the about > page ZXing library? For some reason I thought people meant David Nind. Glad I decided to double-check the bug. Yeah, we'd better do that. This looks like the one: https://github.com/zxing-js/browser/blob/master/LICENSE -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 1 01:09:59 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 01 Mar 2024 00:09:59 +0000 Subject: [Koha-bugs] [Bug 23641] Checkout via camera on device In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=23641 --- Comment #20 from David Cook --- As I mentioned before, we had a library try it and it didn't work well enough for them. We did another version using a commercial vendor (Scandit) which worked much better, although that has on-going costs associated with it. -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 1 01:12:49 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 01 Mar 2024 00:12:49 +0000 Subject: [Koha-bugs] [Bug 36206] Administrative plugins In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36206 David Cook changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |dcook at prosentient.com.au -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 1 01:45:04 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 01 Mar 2024 00:45:04 +0000 Subject: [Koha-bugs] [Bug 36208] New: Add -not_itemtype argument to misc/export_records.pl Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36208 Bug ID: 36208 Summary: Add -not_itemtype argument to misc/export_records.pl Change sponsored?: --- Product: Koha Version: master Hardware: All OS: All Status: NEW Severity: enhancement Priority: P5 - low Component: Cataloging Assignee: koha-bugs at lists.koha-community.org Reporter: alexbuckley at catalyst.net.nz QA Contact: testopia at bugs.koha-community.org CC: m.de.rooy at rijksmuseum.nl It is currently possible to pass the --itemtype argument to misc/export_records.pl to export biblios from a given itemtype. It would be nice if libraries pass a --not_itemtype argument to misc/export_records.pl to exclude exporting biblios with a given item type. -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Fri Mar 1 01:46:18 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 01 Mar 2024 00:46:18 +0000 Subject: [Koha-bugs] [Bug 36208] Add -not_itemtype argument to misc/export_records.pl In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36208 Alex Buckley changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |ASSIGNED Assignee|koha-bugs at lists.koha-commun |alexbuckley at catalyst.net.nz |ity.org | Change sponsored?|--- |Sponsored -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Fri Mar 1 01:52:02 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 01 Mar 2024 00:52:02 +0000 Subject: [Koha-bugs] [Bug 36208] Add -not_itemtype argument to misc/export_records.pl In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36208 --- Comment #1 from Alex Buckley --- Created attachment 162629 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162629&action=edit Bug 36208: Add --not_itemtype argument to misc/export_records.pl WIP Sponsored-By: The Treasury, New Zealand -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 1 01:52:32 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 01 Mar 2024 00:52:32 +0000 Subject: [Koha-bugs] [Bug 36208] Add -not_itemtype argument to misc/export_records.pl In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36208 --- Comment #2 from Alex Buckley --- Test plan and refinements to come. Not ready for testing yet. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 1 02:29:36 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 01 Mar 2024 01:29:36 +0000 Subject: [Koha-bugs] [Bug 36209] New: Recalls: Do not force a change to the due date when an item is recalled Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36209 Bug ID: 36209 Summary: Recalls: Do not force a change to the due date when an item is recalled Change sponsored?: --- Product: Koha Version: master Hardware: All OS: All Status: NEW Severity: enhancement Priority: P5 - low Component: Circulation Assignee: koha-bugs at lists.koha-community.org Reporter: aleisha at catalyst.net.nz QA Contact: testopia at bugs.koha-community.org CC: gmcharlt at gmail.com, kyle.m.hall at gmail.com When an item is recalled, Koha looks to the relevant due date interval circulation rule to adjust the checkout's due date. If the circulation rule for recall due date interval is not defined (empty), Koha defaults to 5 days. We should remove this default so that if the circulation rule for recall due date interval is left empty, then the checkout due date is not adjusted. This has been prompted by a library who uses recalls in a way that the due date is not adjusted, but the patron is charged a specific recall fine if they are late to return it. -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 1 02:29:45 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 01 Mar 2024 01:29:45 +0000 Subject: [Koha-bugs] [Bug 36209] Recalls: Do not force a change to the due date when an item is recalled In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36209 Aleisha Amohia changed: What |Removed |Added ---------------------------------------------------------------------------- Depends on| |19532 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=19532 [Bug 19532] Recalls for Koha -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 1 02:29:45 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 01 Mar 2024 01:29:45 +0000 Subject: [Koha-bugs] [Bug 19532] Recalls for Koha In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=19532 Aleisha Amohia changed: What |Removed |Added ---------------------------------------------------------------------------- Blocks| |36209 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36209 [Bug 36209] Recalls: Do not force a change to the due date when an item is recalled -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 1 02:53:23 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 01 Mar 2024 01:53:23 +0000 Subject: [Koha-bugs] [Bug 36210] New: Add Recalls preferences to Hea usage statistics Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36210 Bug ID: 36210 Summary: Add Recalls preferences to Hea usage statistics Change sponsored?: --- Product: Koha Version: master Hardware: All OS: All Status: NEW Severity: enhancement Priority: P5 - low Component: Architecture, internals, and plumbing Assignee: koha-bugs at lists.koha-community.org Reporter: aleisha at catalyst.net.nz QA Contact: testopia at bugs.koha-community.org Preferences shared with Hea are listed at C4/UsageStats.pm -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 1 02:53:29 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 01 Mar 2024 01:53:29 +0000 Subject: [Koha-bugs] [Bug 36210] Add Recalls preferences to Hea usage statistics In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36210 Aleisha Amohia changed: What |Removed |Added ---------------------------------------------------------------------------- Depends on| |19532 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=19532 [Bug 19532] Recalls for Koha -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Fri Mar 1 02:53:29 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 01 Mar 2024 01:53:29 +0000 Subject: [Koha-bugs] [Bug 19532] Recalls for Koha In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=19532 Aleisha Amohia changed: What |Removed |Added ---------------------------------------------------------------------------- Blocks| |36210 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36210 [Bug 36210] Add Recalls preferences to Hea usage statistics -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 1 08:57:02 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 01 Mar 2024 07:57:02 +0000 Subject: [Koha-bugs] [Bug 35718] Remove ES6 warnings from JavaScript system preferences In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35718 Julian Maurice changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #160613|0 |1 is obsolete| | --- Comment #6 from Julian Maurice --- Created attachment 162631 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162631&action=edit Bug 35718: Remove ES6 warns from JS system preferences To test: 1. Add some JS like this to any of the UserJS system preferences: $(document).ready( function() { let something = 1; const another_thing = 2; let an_arrow_function = (a, b) => a + b; console.log( an_arrow_function(something, another_thing) ); }); 2. Notice the icons and warnings to the left of the line numbers: let is available in ES6 const is available in ES6 arrow_function_syntax is available in ES6 3. APPLY PATCH 4. Try steps 1 and 2 again, the warnings should be gone. 5. Check that the JavaScript still works, in my example it should console.log 3. Signed-off-by: David Nind Signed-off-by: Julian Maurice -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 1 08:57:05 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 01 Mar 2024 07:57:05 +0000 Subject: [Koha-bugs] [Bug 35718] Remove ES6 warnings from JavaScript system preferences In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35718 Julian Maurice changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #162623|0 |1 is obsolete| | --- Comment #7 from Julian Maurice --- Created attachment 162632 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162632&action=edit Bug 35718: Remove ES6 warnings branches.tt Signed-off-by: Julian Maurice -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 1 08:57:42 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 01 Mar 2024 07:57:42 +0000 Subject: [Koha-bugs] [Bug 35718] Remove ES6 warnings from JavaScript system preferences In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35718 Julian Maurice changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Signed Off |Passed QA --- Comment #8 from Julian Maurice --- Thanks for the follow-up. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 1 08:59:48 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 01 Mar 2024 07:59:48 +0000 Subject: [Koha-bugs] [Bug 36100] Regression in bookings edit In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36100 Marcel de Rooy changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #162229|0 |1 is obsolete| | --- Comment #10 from Marcel de Rooy --- Created attachment 162633 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162633&action=edit Bug 36100: Remove readOnly from bookings definition. Whilst readOnly feels correct here, swagger doesn't work that way at our version. It must be removed to restore the ability to edit exising bookings. Signed-off-by: David Nind -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 1 08:59:50 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 01 Mar 2024 07:59:50 +0000 Subject: [Koha-bugs] [Bug 36100] Regression in bookings edit In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36100 Marcel de Rooy changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #162230|0 |1 is obsolete| | --- Comment #11 from Marcel de Rooy --- Created attachment 162634 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162634&action=edit Bug 36100: Update unit tests for add This patch updates the unit tests for booking add to confirm that without readOnly we still return an error should a user attempt to submit a booking with a booking_id that would clash. Signed-off-by: David Nind -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 1 08:59:53 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 01 Mar 2024 07:59:53 +0000 Subject: [Koha-bugs] [Bug 36100] Regression in bookings edit In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36100 --- Comment #12 from Marcel de Rooy --- Created attachment 162635 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162635&action=edit Bug 36100: (QA follow-up) Move 400 to 409 Duplicate exceptions tend to generate a 409 in our REST API. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 1 09:00:17 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 01 Mar 2024 08:00:17 +0000 Subject: [Koha-bugs] [Bug 36100] Regression in bookings edit In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36100 Marcel de Rooy changed: What |Removed |Added ---------------------------------------------------------------------------- QA Contact|testopia at bugs.koha-communit |m.de.rooy at rijksmuseum.nl |y.org | Status|Signed Off |Passed QA CC| |m.de.rooy at rijksmuseum.nl -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 1 09:00:52 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 01 Mar 2024 08:00:52 +0000 Subject: [Koha-bugs] [Bug 36100] Regression in bookings edit In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36100 Marcel de Rooy changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #162633|0 |1 is obsolete| | --- Comment #13 from Marcel de Rooy --- Created attachment 162636 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162636&action=edit Bug 36100: Remove readOnly from bookings definition. Whilst readOnly feels correct here, swagger doesn't work that way at our version. It must be removed to restore the ability to edit exising bookings. Signed-off-by: David Nind Signed-off-by: Marcel de Rooy -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 1 09:00:54 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 01 Mar 2024 08:00:54 +0000 Subject: [Koha-bugs] [Bug 36100] Regression in bookings edit In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36100 Marcel de Rooy changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #162634|0 |1 is obsolete| | --- Comment #14 from Marcel de Rooy --- Created attachment 162637 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162637&action=edit Bug 36100: Update unit tests for add This patch updates the unit tests for booking add to confirm that without readOnly we still return an error should a user attempt to submit a booking with a booking_id that would clash. Signed-off-by: David Nind Signed-off-by: Marcel de Rooy -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 1 09:00:56 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 01 Mar 2024 08:00:56 +0000 Subject: [Koha-bugs] [Bug 36100] Regression in bookings edit In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36100 Marcel de Rooy changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #162635|0 |1 is obsolete| | --- Comment #15 from Marcel de Rooy --- Created attachment 162638 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162638&action=edit Bug 36100: (QA follow-up) Move 400 to 409 Duplicate exceptions tend to generate a 409 in our REST API. Signed-off-by: Marcel de Rooy -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 1 09:04:38 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 01 Mar 2024 08:04:38 +0000 Subject: [Koha-bugs] [Bug 36206] Administrative plugins In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36206 --- Comment #3 from Martin Renvoize --- Created attachment 162639 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162639&action=edit Bug 36206: Expose administration page to users with plugins_admin permission This patch updates the intranet home page logic such that the administration button appears for those users with just the 'admin' subpermission of plugins to allow them to access such plugins. We also update the display logic found inside the admin-home page so that user see plugin management appropriately. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 1 09:09:13 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 01 Mar 2024 08:09:13 +0000 Subject: [Koha-bugs] [Bug 36206] Administrative plugins In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36206 --- Comment #4 from Martin Renvoize --- Created attachment 162640 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162640&action=edit Bug 36206: Add 'Run administration tool' to plugin actions This patch adds the new 'Run administration tool' option to the plugin actions dropdown menu for plugins with such a function. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 1 09:10:24 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 01 Mar 2024 08:10:24 +0000 Subject: [Koha-bugs] [Bug 36206] Administrative plugins In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36206 Martin Renvoize changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #162640|0 |1 is obsolete| | --- Comment #5 from Martin Renvoize --- Created attachment 162641 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162641&action=edit Bug 36206: Add 'Run administration tool' to plugin actions This patch adds the new 'Run administration tool' option to the plugin actions dropdown menu for plugins with such a function. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 1 09:13:32 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 01 Mar 2024 08:13:32 +0000 Subject: [Koha-bugs] [Bug 36175] Checking out items that are booked doesn't quite work In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36175 Marcel de Rooy changed: What |Removed |Added ---------------------------------------------------------------------------- Patch complexity|--- |Trivial patch Status|Signed Off |Passed QA -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 1 09:13:34 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 01 Mar 2024 08:13:34 +0000 Subject: [Koha-bugs] [Bug 36175] Checking out items that are booked doesn't quite work In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36175 Marcel de Rooy changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #162598|0 |1 is obsolete| | --- Comment #3 from Marcel de Rooy --- Created attachment 162642 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162642&action=edit Bug 36175: Corrections to reduced due for booked items This patch fixes a mistake in the circulation controller such that the proper reduceddue date is passed to the template when a checkout would overlap with a booking. I also take the oportunity to enhance the functionality to allow librarians to set their own reduceddue date between now and the hard reduceddue as required for the existing booking. Test plan 1) Set an item to 'bookable' 2) Add a booking to that item for user A for a few days time. 3) Attempt to checkout the item to user B and note the warning that the item is booked for another user. 4) With the patch applied, a reduced due date of 1 day prior to the booking should be defaulted to in the displayed date picker. 5) You should be able to select any date between today and the day before the booking starts 6) Confirm you can checkout with the reduceddue date set. 7) Bonus point, confirm the field is required, so if you try to wipe it and then checkout, you will be blocked. Signed-off-by: Kelly Signed-off-by: Marcel de Rooy -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 1 09:13:51 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 01 Mar 2024 08:13:51 +0000 Subject: [Koha-bugs] [Bug 36175] Checking out items that are booked doesn't quite work In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36175 Marcel de Rooy changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |m.de.rooy at rijksmuseum.nl QA Contact|testopia at bugs.koha-communit |m.de.rooy at rijksmuseum.nl |y.org | Version|23.11 |master -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 1 09:14:11 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 01 Mar 2024 08:14:11 +0000 Subject: [Koha-bugs] [Bug 36098] Create Koha::Session module In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36098 --- Comment #16 from Jonathan Druart --- (In reply to David Cook from comment #15) > Comment on attachment 162314 [details] [review] > Bug 36098: Default to 'file' if pref does not exist > > Review of attachment 162314 [details] [review]: > ----------------------------------------------------------------- > > ::: Koha/Session.pm > @@ +53,4 @@ > > sub _get_session_params { > > my ( $class, $args ) = @_; > > my $storage_method = $args->{storage_method}; > > + $storage_method ||= C4::Context->preference('SessionStorage') || 'file'; > > This isn't very human-friendly to read. Really? This is trivial Perl... -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 1 09:16:30 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 01 Mar 2024 08:16:30 +0000 Subject: [Koha-bugs] [Bug 36192] [OMNIBUS] CSRF Protection for Koha In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36192 Jonathan Druart changed: What |Removed |Added ---------------------------------------------------------------------------- See Also| |https://bugs.koha-community | |.org/bugzilla3/show_bug.cgi | |?id=36149 -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Fri Mar 1 09:22:49 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 01 Mar 2024 08:22:49 +0000 Subject: [Koha-bugs] [Bug 35892] Fallback to GetMarcPrice in addorderiso2907 no longer works In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35892 Marcel de Rooy changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Signed Off |Passed QA Patch complexity|--- |Trivial patch -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 1 09:22:51 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 01 Mar 2024 08:22:51 +0000 Subject: [Koha-bugs] [Bug 35892] Fallback to GetMarcPrice in addorderiso2907 no longer works In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35892 Marcel de Rooy changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #161468|0 |1 is obsolete| | --- Comment #6 from Marcel de Rooy --- Created attachment 162643 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162643&action=edit Bug 35892: Populate order price using GetMarcPrice if no price specified Previously this happened after the fact, automagically, if no price was included in the order record. We should rather load the Marc price into the order form if we don't have a price form the '...ToOrder' system preferences To test: Setup -- Set systempreferences below MarcFieldsToOrder: price: 949$g quantity: 949$k budget_code: 949$l discount: 949$m sort1: 949$n sort2: 949$q MarcItemFieldsToOrder: homebranch: 949$a holdingbranch: 949$b itype: 949$y nonpublic_note: 949$x public_note: 949$z loc: 949$c ccode: 949$8 notforloan: 949$7 uri: 949$u copyno: 949$t replacementprice: 949$v itemcallnumber: 949$o quantity: 949$k budget_code: 949$l Stage the attached bib-303.marcxml file Add to basket from the staged file Note that item prices are populated as '6.50' from 949$g Cancel Update MarcFieldsToOrder and map price to "020$c" Add to basket from the staged file Note the price is not populated, because 020$c contains a dollar sign Cancel Apply patch, restart all Add to basket from the staged file Note the price is now correctly populated from fallback to GetMarcPrice Note: GetMarcPrice does some automatic munging, that's why 020$c on it's own doesn't work - this could be done to fields in MarcFieldsToOrder/MarcItemFieldsToOrder but this would be an enhancement. This bug simply restores the previous behavious, but does it on the front end and is more obvious to the user Signed-off-by: Andrew Fuerste-Henry Signed-off-by: Marcel de Rooy -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 1 09:23:04 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 01 Mar 2024 08:23:04 +0000 Subject: [Koha-bugs] [Bug 35892] Fallback to GetMarcPrice in addorderiso2907 no longer works In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35892 Marcel de Rooy changed: What |Removed |Added ---------------------------------------------------------------------------- QA Contact|testopia at bugs.koha-communit |m.de.rooy at rijksmuseum.nl |y.org | -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 1 09:26:22 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 01 Mar 2024 08:26:22 +0000 Subject: [Koha-bugs] [Bug 35473] Core bookings and room reservations plugin tables clash In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35473 Marcel de Rooy changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |m.de.rooy at rijksmuseum.nl --- Comment #14 from Marcel de Rooy --- (In reply to Martin Renvoize from comment #13) > This is a pretty darn critical bug for upgrades that can completely break > Koha.. amazing it doesn't get any attention Will have a look now. But you know about 34478 ;) -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 1 09:26:36 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 01 Mar 2024 08:26:36 +0000 Subject: [Koha-bugs] [Bug 35473] Core bookings and room reservations plugin tables clash In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35473 Marcel de Rooy changed: What |Removed |Added ---------------------------------------------------------------------------- QA Contact|testopia at bugs.koha-communit |m.de.rooy at rijksmuseum.nl |y.org | -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 1 09:41:19 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 01 Mar 2024 08:41:19 +0000 Subject: [Koha-bugs] [Bug 35473] Core bookings and room reservations plugin tables clash In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35473 Marcel de Rooy changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Signed Off |In Discussion --- Comment #15 from Marcel de Rooy --- This is an interesting patch. I tend to think that we should not touch the tables of a plugin. And just abort here? But that may be a bit too formal response? I like to have bit more feedback from QA. Moving to ID and sending a mail. Do we choose for Pragmatic here and just move the tables, or do we choose to just bail out and let the plugin stuff be handled outside Koha? Note that the question also arises: What should we do for other plugins in the future that created tables in Koha and clash? I would normally not expect Koha to contain knowledge about plugin tables? -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 1 09:47:10 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 01 Mar 2024 08:47:10 +0000 Subject: [Koha-bugs] [Bug 35944] Bookings is not taken into account in CanBookBeRenewed In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35944 Marcel de Rooy changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |m.de.rooy at rijksmuseum.nl --- Comment #10 from Marcel de Rooy --- There is a whole dependency tree still in PQA for this one. Skipping for now. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 1 09:52:54 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 01 Mar 2024 08:52:54 +0000 Subject: [Koha-bugs] [Bug 35469] Cannot create bookings without circulation permissions In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35469 Marcel de Rooy changed: What |Removed |Added ---------------------------------------------------------------------------- Patch complexity|--- |Small patch Status|Signed Off |Passed QA -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 1 09:52:57 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 01 Mar 2024 08:52:57 +0000 Subject: [Koha-bugs] [Bug 35469] Cannot create bookings without circulation permissions In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35469 Marcel de Rooy changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #161641|0 |1 is obsolete| | --- Comment #28 from Marcel de Rooy --- Created attachment 162644 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162644&action=edit Bug 35469: Add 'manage_bookings' subpermission to /checkouts This patch adds the 'manage_bookings' permission to allow fetching of checkouts on the API should the user have 'manage_bookings' but not have 'circulate_remaining_permissions' Signed-off-by: Nick Clemens Signed-off-by: Marcel de Rooy -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 1 09:52:59 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 01 Mar 2024 08:52:59 +0000 Subject: [Koha-bugs] [Bug 35469] Cannot create bookings without circulation permissions In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35469 Marcel de Rooy changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #161642|0 |1 is obsolete| | --- Comment #29 from Marcel de Rooy --- Created attachment 162645 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162645&action=edit Bug 35469: Add 'manage_bookings' permission to biblios/checkouts This patch adds the manage_bookings subpermission check to the biblios/{biblio_id}/checkouts endpoint and updates the corresponding unit test too. Signed-off-by: Nick Clemens Signed-off-by: Marcel de Rooy -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 1 10:00:43 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 01 Mar 2024 09:00:43 +0000 Subject: [Koha-bugs] [Bug 31427] Automatic renewal errors should come before many other renewal errors In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31427 --- Comment #31 from Marcel de Rooy --- Still having trouble with tests: Running tests (1) * Proving /usr/share/koha/t/db_dependent/Circulation.t KO! DBIx::Class::Storage::DBI::select_single(): Query returned more than one row. SQL that returns multiple rows is DEPRECATED for ->find and ->single at /usr/share/koha/Koha/Objects.pm line 96 DBIx::Class::Storage::DBI::select_single(): Query returned more than one row. SQL that returns multiple rows is DEPRECATED for ->find and ->single at /usr/share/koha/Koha/Objects.pm line 96 DBIx::Class::Storage::DBI::select_single(): Query returned more than one row. SQL that returns multiple rows is DEPRECATED for ->find and ->single at /usr/share/koha/Koha/Objects.pm line 96 DBIx::Class::Storage::DBI::select_single(): Query returned more than one row. SQL that returns multiple rows is DEPRECATED for ->find and ->single at /usr/share/koha/Koha/Objects.pm line 96 # Looks like you planned 9 tests but ran 3. # Failed test 'transferbook tests' # at /usr/share/koha/t/db_dependent/Circulation.t line 5754. Exception 'Koha::Exceptions::MissingParameter' thrown 'The to parameter is mandatory' # Looks like your test exited with 11 just after 57. /usr/share/koha/t/db_dependent/Circulation.t .. Dubious, test returned 11 (wstat 2816, 0xb00) Failed 12/68 subtests Test Summary Report ------------------- /usr/share/koha/t/db_dependent/Circulation.t (Wstat: 2816 Tests: 57 Failed: 1) Failed test: 57 Non-zero exit status: 11 Parse errors: Bad plan. You planned 68 tests but ran 57. Files=1, Tests=57, 41 wallclock secs ( 0.11 usr 0.01 sys + 32.32 cusr 4.83 csys = 37.27 CPU) Result: FAIL -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 1 10:02:52 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 01 Mar 2024 09:02:52 +0000 Subject: [Koha-bugs] [Bug 35473] Core bookings and room reservations plugin tables clash In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35473 Julian Maurice changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |julian.maurice at biblibre.com --- Comment #16 from Julian Maurice --- (In reply to Marcel de Rooy from comment #15) > Note that the question also arises: What should we do for other plugins in > the future that created tables in Koha and clash? I would normally not > expect Koha to contain knowledge about plugin tables? I think we should try to avoid using table names that are already used by known plugins, but if that happens (like in this bug) I think it's the plugin responsibility to move its own data. Now what should Koha do ? Stop the update process, and if the plugin is known add a message suggesting to update the plugin first ? Can the plugin update be done in the middle of the updatedb process ? -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 1 10:08:54 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 01 Mar 2024 09:08:54 +0000 Subject: [Koha-bugs] [Bug 35473] Core bookings and room reservations plugin tables clash In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35473 Jonathan Druart changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |jonathan.druart at gmail.com --- Comment #17 from Jonathan Druart --- On bug 30650 (Curbside pickups) I took care of the plugin's data (the idea was to provide the same feature as the plugin). The patch created the same tables as the plugin, then adjusted the structure to reach the new one. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 1 10:25:00 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 01 Mar 2024 09:25:00 +0000 Subject: [Koha-bugs] [Bug 36211] New: Add support for script modules to Asset Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36211 Bug ID: 36211 Summary: Add support for script modules to Asset Change sponsored?: --- Product: Koha Version: unspecified Hardware: All OS: All Status: NEW Severity: normal Priority: P5 - low Component: Templates Assignee: oleonard at myacpl.org Reporter: jonathan.druart at gmail.com QA Contact: testopia at bugs.koha-community.org Depends on: 36084 Bug 36084: svc - authorised_values - APIClient now global + We should use Asset.js here. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 1 10:37:29 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 01 Mar 2024 09:37:29 +0000 Subject: [Koha-bugs] [Bug 36212] New: transferbook should not look for items without barcode Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36212 Bug ID: 36212 Summary: transferbook should not look for items without barcode Change sponsored?: --- Product: Koha Version: master Hardware: All OS: All Status: NEW Severity: trivial Priority: P5 - low Component: Architecture, internals, and plumbing Assignee: koha-bugs at lists.koha-community.org Reporter: m.de.rooy at rijksmuseum.nl QA Contact: testopia at bugs.koha-community.org Circulation.t fails if you have items without barcode on transferbook tests. See also bug 31427. -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 1 10:41:47 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 01 Mar 2024 09:41:47 +0000 Subject: [Koha-bugs] [Bug 36212] transferbook should not look for items without barcode In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36212 Marcel de Rooy changed: What |Removed |Added ---------------------------------------------------------------------------- Patch complexity|--- |Trivial patch Status|NEW |Needs Signoff -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Fri Mar 1 10:41:49 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 01 Mar 2024 09:41:49 +0000 Subject: [Koha-bugs] [Bug 36212] transferbook should not look for items without barcode In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36212 --- Comment #1 from Marcel de Rooy --- Created attachment 162646 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162646&action=edit Bug 36212: Add check on barcode before searching items Test plan: Add an item to your database that has no barcode. Run t/db_dependent/Circulation.t It will fail without this patch, pass with this patch. Signed-off-by: Marcel de Rooy -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 1 10:42:05 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 01 Mar 2024 09:42:05 +0000 Subject: [Koha-bugs] [Bug 36212] transferbook should not look for items without barcode In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36212 Marcel de Rooy changed: What |Removed |Added ---------------------------------------------------------------------------- Assignee|koha-bugs at lists.koha-commun |m.de.rooy at rijksmuseum.nl |ity.org | Status|Needs Signoff |Signed Off -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Fri Mar 1 10:42:53 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 01 Mar 2024 09:42:53 +0000 Subject: [Koha-bugs] [Bug 36212] transferbook should not look for items without barcode In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36212 Marcel de Rooy changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Signed Off |Passed QA --- Comment #2 from Marcel de Rooy --- Trivial. This is kind of QA follow-up for getting 31427 further. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 1 10:43:15 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 01 Mar 2024 09:43:15 +0000 Subject: [Koha-bugs] [Bug 36212] transferbook should not look for items without barcode In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36212 Marcel de Rooy changed: What |Removed |Added ---------------------------------------------------------------------------- See Also| |https://bugs.koha-community | |.org/bugzilla3/show_bug.cgi | |?id=31427 -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 1 10:43:15 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 01 Mar 2024 09:43:15 +0000 Subject: [Koha-bugs] [Bug 31427] Automatic renewal errors should come before many other renewal errors In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31427 Marcel de Rooy changed: What |Removed |Added ---------------------------------------------------------------------------- See Also| |https://bugs.koha-community | |.org/bugzilla3/show_bug.cgi | |?id=36212 -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 1 10:43:59 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 01 Mar 2024 09:43:59 +0000 Subject: [Koha-bugs] [Bug 31427] Automatic renewal errors should come before many other renewal errors In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31427 --- Comment #32 from Marcel de Rooy --- Needs a little digging. Test fails without this patch too. And culprit is transferbook: my $item = Koha::Items->find( { barcode => $barcode } ); If barcode is empty and you have items without barcode, things go wrong. Solved it on bug 36212. Chose to not record as dependency. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 1 10:59:38 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 01 Mar 2024 09:59:38 +0000 Subject: [Koha-bugs] [Bug 35026] Refactor addorderiso2709.pl to use object methods In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35026 Matt Blenkinsop changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Failed QA |Needs Signoff -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 1 10:59:41 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 01 Mar 2024 09:59:41 +0000 Subject: [Koha-bugs] [Bug 35026] Refactor addorderiso2709.pl to use object methods In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35026 Matt Blenkinsop changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #159969|0 |1 is obsolete| | --- Comment #26 from Matt Blenkinsop --- Created attachment 162647 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162647&action=edit Bug 35026: Add a MarcOrder object class This patch adds a MarcOrder object class. This will primarily be used for the functionality in bug 34355 to automate order creation from a Marc file. The automation functionality is similar in principle to the functionality in the addorderis02709.pl script so it makes sense to refactor this script to use the same code. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 1 10:59:44 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 01 Mar 2024 09:59:44 +0000 Subject: [Koha-bugs] [Bug 35026] Refactor addorderiso2709.pl to use object methods In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35026 Matt Blenkinsop changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #160833|0 |1 is obsolete| | --- Comment #27 from Matt Blenkinsop --- Created attachment 162648 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162648&action=edit Bug 35026: Refactor addorderiso2709.pl to use the MarcOrder class This script uses the newly created MarcOrder class to refactor the script into a cleaner controller function. This MarcOrder class will also be used in bug 34355 to automate the creation of order lines from marc records. Test plan: 1) In system preferences, click Search and then select the Acquisitions option from the left hand menu 2) Paste the following into MarcFieldsToOrder price: 975$p quantity: 975$q budget_code: 975$h 3) Paste the following into MarcItemFieldsToOrder homebranch: 949$a holdingbranch: 949$b itype: 949$y nonpublic_note: 949$x public_note: 949$z loc: 949$c ccode: 949$8 notforloan: 949$7 uri: 949$u copyno: 949$t price: 949$g replacementprice: 949$v itemcallnumber: 949$o quantity: 949$k budget_code: 949$l Now save the sysprefs 4) Navigate to acquisitions and go into a basket 5) Click Add to basket and select “From a new file” 6) Download the file attached to this bug 7) Import the file and when the job is complete click “Add staged files to basket” 8) Click the checkbox next to the record to display the items and confirm that the data matches the mappings from the file that you imported - there should be 8 items, grouped in 4 pairs of identical items 9) Fill in the required fields and click “Save” 10) That basket should be correctly populated with an order matching the file that you imported -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 1 10:59:46 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 01 Mar 2024 09:59:46 +0000 Subject: [Koha-bugs] [Bug 35026] Refactor addorderiso2709.pl to use object methods In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35026 Matt Blenkinsop changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #160834|0 |1 is obsolete| | --- Comment #28 from Matt Blenkinsop --- Created attachment 162649 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162649&action=edit Bug 35026: Tidy file -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 1 10:59:49 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 01 Mar 2024 09:59:49 +0000 Subject: [Koha-bugs] [Bug 35026] Refactor addorderiso2709.pl to use object methods In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35026 Matt Blenkinsop changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #160835|0 |1 is obsolete| | --- Comment #29 from Matt Blenkinsop --- Created attachment 162650 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162650&action=edit Bug 35026: Make add_items_from_import_record DRY This patch improves the code in add_items_from_import_record to make sure that the code is not repeating itself It also fixes a minor error in the template file and rebases in changes from bugs 35254 and 33170 -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 1 10:59:51 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 01 Mar 2024 09:59:51 +0000 Subject: [Koha-bugs] [Bug 35026] Refactor addorderiso2709.pl to use object methods In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35026 Matt Blenkinsop changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #160836|0 |1 is obsolete| | --- Comment #30 from Matt Blenkinsop --- Created attachment 162651 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162651&action=edit Bug 35026: Add unit tests This commit adds a set of unit tests for the new methods in Koha::MarcOrder The two controller functions at the start of the file have not been included as they simply call the functions in these tests The _stage_file method is also not included as this is a copy of the existing file staging code with the background job functionality removed -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 1 10:59:54 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 01 Mar 2024 09:59:54 +0000 Subject: [Koha-bugs] [Bug 35026] Refactor addorderiso2709.pl to use object methods In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35026 Matt Blenkinsop changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #160837|0 |1 is obsolete| | --- Comment #31 from Matt Blenkinsop --- Created attachment 162652 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162652&action=edit Bug 35026: Allow multiple records from one marc file This patch addresses a bug where only one record would be read from a marc file and other records would be lost. All records are now read from the file and displayed in the UI. Test plan as above -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 1 10:59:57 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 01 Mar 2024 09:59:57 +0000 Subject: [Koha-bugs] [Bug 35026] Refactor addorderiso2709.pl to use object methods In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35026 --- Comment #32 from Matt Blenkinsop --- Created attachment 162653 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162653&action=edit Bug 35026: Adjust price field to match UI Following bug 36036 the price field has been renamed in the UI- this patch removes the logic that was renaming that field in the backend to match this -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 1 10:59:59 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 01 Mar 2024 09:59:59 +0000 Subject: [Koha-bugs] [Bug 35026] Refactor addorderiso2709.pl to use object methods In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35026 --- Comment #33 from Matt Blenkinsop --- Created attachment 162654 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162654&action=edit Bug 35026: Fix unit tests This patch fixes the unit tests that were failing and also removes some tests that should not be introduced until bug 34355 Test plan: prove t/db_dependent/Koha/MarcOrder.t -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 1 11:08:32 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 01 Mar 2024 10:08:32 +0000 Subject: [Koha-bugs] [Bug 31427] Automatic renewal errors should come before many other renewal errors In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31427 --- Comment #33 from Marcel de Rooy --- Another related observation in CanBookBeRenewed: if ( $auto_renew eq 'auto_too_soon' ) { # If its cron, tell it it's too soon for a an auto renewal return ( 0, $auto_renew, { soonest_renew_date => $soonest } ) if $cron; # Check if it's too soon for a manual renewal my $soonestManual = GetSoonestRenewDate( $patron, $issue ); if ( $soonestManual > dt_from_string() ) { return ( 0, "too_soon", { soonest_renew_date => $soonestManual } ) unless $override_limit; } } $soonest = GetSoonestRenewDate($patron, $issue); if ( $soonest > dt_from_string() ){ return (0, "too_soon", { soonest_renew_date => $soonest } ) unless $override_limit; } When we have auto_too_soon, we might be calling GetSoonestRenewDate twice here? -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 1 11:17:00 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 01 Mar 2024 10:17:00 +0000 Subject: [Koha-bugs] [Bug 31427] Automatic renewal errors should come before many other renewal errors In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31427 --- Comment #34 from Marcel de Rooy --- Koha::Checkout sub attempt_auto_renew { my ( $self, $params ) = @_; my $confirm = $params->{confirm} // 0; # CanBookBeRenewed returns 'auto_renew' when the renewal should be done by this script my ( $ok, $error ) = C4::Circulation::CanBookBeRenewed( $self->patron, $self, undef, 1 ); After this call the $ok result is not even checked?! Could be 'fine' but does not look good in general. Related observation, going out of scope. In the same routine: my $updated = 0; if ( !$self->auto_renew_error || $error ne $self->auto_renew_error ) { $updated = 1 unless ( $self->auto_renew_error && ( $self->auto_renew_error eq 'auto_renew_final' && $error eq 'too_many' || $self->auto_renew_error eq 'auto_unseen_final' && $error eq 'too_unseen' ) ); $self->auto_renew_error($error)->store if $confirm; } return ( 0, $error, $updated ); This does not look good either. $updated is passed back but $confirm is not checked? -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 1 11:19:29 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 01 Mar 2024 10:19:29 +0000 Subject: [Koha-bugs] [Bug 35145] Add ability to order patron attributes In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35145 Pedro Amorim changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Needs Signoff |Patch doesn't apply --- Comment #17 from Pedro Amorim --- Applying: Bug 35145 : Schema file Using index info to reconstruct a base tree... M Koha/Schema/Result/BorrowerAttributeType.pm Falling back to patching base and 3-way merge... Auto-merging Koha/Schema/Result/BorrowerAttributeType.pm CONFLICT (content): Merge conflict in Koha/Schema/Result/BorrowerAttributeType.pm error: Failed to merge in the changes. Patch failed at 0001 Bug 35145 : Schema file Patches don't apply on current master. Can you please submit a squashed version of the patches or make obsolete those not needed. Reach out on IRC, we can help with this if needed. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 1 11:27:22 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 01 Mar 2024 10:27:22 +0000 Subject: [Koha-bugs] [Bug 36206] Administrative plugins In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36206 Martin Renvoize changed: What |Removed |Added ---------------------------------------------------------------------------- URL| |https://github.com/PTFS-Eur | |ope/koha-plugin-crontab/tre | |e/admin_plugin -- You are receiving this mail because: You are watching all bug changes. From jops at riseup.net Fri Mar 1 11:27:17 2024 From: jops at riseup.net (jops) Date: Fri, 1 Mar 2024 11:27:17 +0100 Subject: [Koha-bugs] Field userid is not valid (probably not unique), after login Message-ID: <8c3d51a0-9bf7-45a3-bab6-e92c0e8075dc@riseup.net> Hi, we are migrating server from ola.bida.im (koha version 20.11.03-1) to bib.bida.im (koha version 23.11.02-1). The search seams ok, but when we enter in bib-intra.bida.im we have an 500 internal server error with this message log in intranet-error.log [Fri Mar 01 10:17:37.076210 2024] [cgi:error] [pid 233068] [client 46.255.84.17:65195] AH01215: [Field userid is not valid (probably not unique)]: /usr/share/koha/intranet/cgi-bin/mainpage.pl, referer: https://bib-intra.bida.im/cgi-bin/koha/mainpage.pl [Fri Mar 01 10:17:37.223900 2024] [cgi:error] [pid 233068] [client 46.255.84.17:65195] End of script output before headers: mainpage.pl, referer: https://bib-intra.bida.im/cgi-bin/koha/mainpage.pl can you help us? thanks -- jops GPG keys available via keyservers https://keys.openpgp.org/search?q=jops%40riseup.net https://keys.openpgp.org/vks/v1/by-fingerprint/32D254CF0B219482E28909CDC2FF3AC90AFDD78A From bugzilla-daemon at bugs.koha-community.org Fri Mar 1 11:27:42 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 01 Mar 2024 10:27:42 +0000 Subject: [Koha-bugs] [Bug 35659] OAI Harvester In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35659 --- Comment #33 from Matthias Meusburger --- Thank you Andreas for your feedback! Not sure if I can sign-off your follow-up myself, since I'm the author of the main patch, but I can confirm that it works as intended: warnings are gone, and encoding is now correct. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 1 11:27:54 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 01 Mar 2024 10:27:54 +0000 Subject: [Koha-bugs] [Bug 36206] Administrative plugins In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36206 --- Comment #6 from Martin Renvoize --- Currently this is easiest to test using the in-development crontab manager plugin, admin_plugin branch: https://github.com/PTFS-Europe/koha-plugin-crontab/tree/admin_plugin -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 1 11:32:32 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 01 Mar 2024 10:32:32 +0000 Subject: [Koha-bugs] [Bug 36093] Fix missing array reference in provider rollup reports In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36093 Matt Blenkinsop changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Failed QA |Signed Off -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 1 11:32:35 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 01 Mar 2024 10:32:35 +0000 Subject: [Koha-bugs] [Bug 36093] Fix missing array reference in provider rollup reports In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36093 --- Comment #4 from Matt Blenkinsop --- Created attachment 162655 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162655&action=edit Bug 36093: Add unit test and fix QA tests prove t/db_dependent/api/v1/erm_custom_reports.t -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 1 11:33:10 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 01 Mar 2024 10:33:10 +0000 Subject: [Koha-bugs] [Bug 31427] Automatic renewal errors should come before many other renewal errors In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31427 Marcel de Rooy changed: What |Removed |Added ---------------------------------------------------------------------------- Patch complexity|--- |Small patch Status|Signed Off |Passed QA -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 1 11:33:13 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 01 Mar 2024 10:33:13 +0000 Subject: [Koha-bugs] [Bug 31427] Automatic renewal errors should come before many other renewal errors In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31427 Marcel de Rooy changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #162239|0 |1 is obsolete| | --- Comment #35 from Marcel de Rooy --- Created attachment 162656 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162656&action=edit Bug 31427: Get auto renewal errors before other renewal errors This patch changes CanBookBeRenewed so that automatic renewal errors pop up before other renewal errors. This means that a book will be considered "auto_too_soon" before things like "too_many" or "restricted". (Otherwise, you'll get an email saying you can't renew a book the day after using your last auto renewal, even though the earliest renewal isn't available until later.) Test plan: 0. Apply patch 1. prove t/db_dependent/Circulation.t 2. prove t/db_dependent/Holds.t 3. prove t/db_dependent/Koha/Account/Line.t 4. prove t/db_dependent/Koha/Account.t Additional tests: 5. Go to http://localhost:8081/cgi-bin/koha/admin/preferences.pl?op=search&searchfield=RestrictionBlockRenewing 6. Change to "block" 7. Go to http://localhost:8081/cgi-bin/koha/admin/preferences.pl?tab=&op=search&searchfield=AutoRenewalNotices 8. Change to "according to patron messaging preferences" 9. Go to http://localhost:8081/cgi-bin/koha/admin/smart-rules.pl 10. Set "Automatic renewal" to "Yes" and "No renewal before" to 4 11. Go to http://localhost:8081/cgi-bin/koha/circ/circulation.pl?borrowernumber=51 12. Checkout 39999000001310 with a due date 4 days in the future 13. Add a manual restriction 14. Run `perl ./misc/cronjobs/automatic_renewals.pl` 15. Note that it says something like the following: Issue id: 1237 for borrower: 51 and item: 73 would not be renewed. (auto_too_soon) Instead of something like the following: Issue id: 1237 for borrower: 51 and item: 73 would not be renewed. (restriction) Signed-off-by: Sam Lau Signed-off-by: Martin Renvoize Signed-off-by: Marcel de Rooy -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 1 11:33:16 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 01 Mar 2024 10:33:16 +0000 Subject: [Koha-bugs] [Bug 31427] Automatic renewal errors should come before many other renewal errors In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31427 Marcel de Rooy changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #162240|0 |1 is obsolete| | --- Comment #36 from Marcel de Rooy --- Created attachment 162657 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162657&action=edit Bug 31427: (follow-up) Unit tests This patch adds a unit test for error precidence where autorenewals is involved. It is not comprehensive however, and I'm a little confused by the logic around cron vs non-cron handling... Signed-off-by: Marcel de Rooy -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 1 11:33:19 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 01 Mar 2024 10:33:19 +0000 Subject: [Koha-bugs] [Bug 31427] Automatic renewal errors should come before many other renewal errors In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31427 --- Comment #37 from Marcel de Rooy --- Created attachment 162658 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162658&action=edit Bug 31427: Remove a few refs to CanBookBeRenewed Actually, the module is not even needed anymore here. Signed-off-by: Marcel de Rooy -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 1 11:34:10 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 01 Mar 2024 10:34:10 +0000 Subject: [Koha-bugs] [Bug 31427] Automatic renewal errors should come before many other renewal errors In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31427 --- Comment #38 from Marcel de Rooy --- Looks good to me. Checked references to CanBookBeRenewed and ->attempt_auto_renew. [OK] prove t/db_dependent/Holds.t t/db_dependent/Koha/Account/Line.t t/db_dependent/Koha/Account.t Could be in test plan too: prove t/db_dependent/Koha/Checkouts.t t/db_dependent/Koha/Checkouts.t .. ok All tests successful. Files=1, Tests=12, 7 wallclock secs ( 0.03 usr 0.01 sys + 5.42 cusr 0.87 csys = 6.33 CPU) Result: PASS C4/SIP/ILS/Transaction/Renew.pm sub do_renew_for The auto_xxx codes from CanBookBeRenewed are not listed here, but seem to be passed through as-is. Added a follow-up where CanBookBeRenewed is no longer called. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 1 11:37:18 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 01 Mar 2024 10:37:18 +0000 Subject: [Koha-bugs] [Bug 31427] Automatic renewal errors should come before many other renewal errors In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31427 Marcel de Rooy changed: What |Removed |Added ---------------------------------------------------------------------------- QA Contact|testopia at bugs.koha-communit |m.de.rooy at rijksmuseum.nl |y.org | -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 1 11:38:04 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 01 Mar 2024 10:38:04 +0000 Subject: [Koha-bugs] [Bug 36205] Plugins should be able to create permissions In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36205 Martin Renvoize changed: What |Removed |Added ---------------------------------------------------------------------------- See Also| |https://bugs.koha-community | |.org/bugzilla3/show_bug.cgi | |?id=28957 -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 1 11:38:04 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 01 Mar 2024 10:38:04 +0000 Subject: [Koha-bugs] [Bug 28957] Many plugins require the full plugins permission set to run In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28957 Martin Renvoize changed: What |Removed |Added ---------------------------------------------------------------------------- See Also| |https://bugs.koha-community | |.org/bugzilla3/show_bug.cgi | |?id=36205 -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 1 11:38:50 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 01 Mar 2024 10:38:50 +0000 Subject: [Koha-bugs] [Bug 36205] Plugins should be able to create permissions In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36205 Martin Renvoize changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |matt.blenkinsop at ptfs-europe | |.com -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 1 11:39:00 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 01 Mar 2024 10:39:00 +0000 Subject: [Koha-bugs] [Bug 36205] Plugins should be able to create permissions In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36205 Martin Renvoize changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |kyle at bywatersolutions.com -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 1 11:40:21 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 01 Mar 2024 10:40:21 +0000 Subject: [Koha-bugs] [Bug 32693] The 'About Koha' page loads slowly In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=32693 Marcel de Rooy changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |m.de.rooy at rijksmuseum.nl Severity|minor |enhancement --- Comment #24 from Marcel de Rooy --- About is slow. But this feels much more as enh than bugfix. Correct me if I am mistaken.. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 1 11:42:10 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 01 Mar 2024 10:42:10 +0000 Subject: [Koha-bugs] [Bug 36036] Fix location field in addorderiso2709.pl In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36036 Marcel de Rooy changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |m.de.rooy at rijksmuseum.nl --- Comment #4 from Marcel de Rooy --- This is trivial bugfix on top of an enh. Thats not the logical order? Can it be done differently or should we move to enh? -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 1 11:45:28 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 01 Mar 2024 10:45:28 +0000 Subject: [Koha-bugs] [Bug 36176] We need tests to check for 'cud-' operations in stable branches (pre-24.05) In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36176 Marcel de Rooy changed: What |Removed |Added ---------------------------------------------------------------------------- Patch complexity|--- |Trivial patch Status|Signed Off |Passed QA -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 1 11:45:30 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 01 Mar 2024 10:45:30 +0000 Subject: [Koha-bugs] [Bug 36176] We need tests to check for 'cud-' operations in stable branches (pre-24.05) In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36176 Marcel de Rooy changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #162550|0 |1 is obsolete| | --- Comment #6 from Marcel de Rooy --- Created attachment 162659 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162659&action=edit Bug 36176: Reject cud- for stable branches Signed-off-by: Lucas Gass Signed-off-by: Marcel de Rooy -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 1 11:46:14 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 01 Mar 2024 10:46:14 +0000 Subject: [Koha-bugs] [Bug 36176] We need tests to check for 'cud-' operations in stable branches (pre-24.05) In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36176 Marcel de Rooy changed: What |Removed |Added ---------------------------------------------------------------------------- QA Contact|testopia at bugs.koha-communit |m.de.rooy at rijksmuseum.nl |y.org | CC| |m.de.rooy at rijksmuseum.nl --- Comment #7 from Marcel de Rooy --- At some point we may need to make this test a bit smarter since cud- may leak into comments, release notes, etc ? -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 1 11:48:25 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 01 Mar 2024 10:48:25 +0000 Subject: [Koha-bugs] [Bug 32693] The 'About Koha' page loads slowly In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=32693 --- Comment #25 from Pedro Amorim --- (In reply to Marcel de Rooy from comment #24) > About is slow. But this feels much more as enh than bugfix. Correct me if I > am mistaken.. Agreed. Yes. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 1 11:48:32 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 01 Mar 2024 10:48:32 +0000 Subject: [Koha-bugs] [Bug 36003] Printing list from OPAC shows "Cookies" when CookieConsent enabled In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36003 --- Comment #4 from Marcel de Rooy --- Whole bunch of deps in PQA and SO too. Skipping for now. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 1 11:55:23 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 01 Mar 2024 10:55:23 +0000 Subject: [Koha-bugs] [Bug 32693] The 'About Koha' page loads slowly In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=32693 Jonathan Druart changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Signed Off |Passed QA -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 1 11:55:27 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 01 Mar 2024 10:55:27 +0000 Subject: [Koha-bugs] [Bug 32693] The 'About Koha' page loads slowly In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=32693 Jonathan Druart changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #162219|0 |1 is obsolete| | Attachment #162220|0 |1 is obsolete| | Attachment #162221|0 |1 is obsolete| | Attachment #162222|0 |1 is obsolete| | Attachment #162223|0 |1 is obsolete| | Attachment #162224|0 |1 is obsolete| | Attachment #162225|0 |1 is obsolete| | --- Comment #26 from Jonathan Druart --- Created attachment 162660 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162660&action=edit Bug 32693: Update tab_item html helper tab_item html helper now allows for a boolean tablink option to set if the the tab item is a link or not Signed-off-by: David Nind Signed-off-by: Jonathan Druart -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 1 11:55:30 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 01 Mar 2024 10:55:30 +0000 Subject: [Koha-bugs] [Bug 32693] The 'About Koha' page loads slowly In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=32693 --- Comment #27 from Jonathan Druart --- Created attachment 162661 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162661&action=edit Bug 32693: Update tab_items tab_items are now linktabs tab_items are now styled active depending if the URL param 'tab' matches the tab name or not Signed-off-by: David Nind Signed-off-by: Jonathan Druart -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 1 11:55:33 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 01 Mar 2024 10:55:33 +0000 Subject: [Koha-bugs] [Bug 32693] The 'About Koha' page loads slowly In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=32693 --- Comment #28 from Jonathan Druart --- Created attachment 162662 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162662&action=edit Bug 32693: Update tab_panels Each tab panel's content has now been moved to its own BLOCK. Each tab panel's content is now only loaded if said tab is the one being viewed Signed-off-by: David Nind Signed-off-by: Jonathan Druart -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 1 11:55:36 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 01 Mar 2024 10:55:36 +0000 Subject: [Koha-bugs] [Bug 32693] The 'About Koha' page loads slowly In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=32693 --- Comment #29 from Jonathan Druart --- Created attachment 162663 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162663&action=edit Bug 32693: Preparation: About script: docdir docdir is used in both team + history tabs was previously being loaded in team and additionally used in history but because now we're only loading one tab at a time, we need to move this Signed-off-by: David Nind Signed-off-by: Jonathan Druart -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 1 11:55:39 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 01 Mar 2024 10:55:39 +0000 Subject: [Koha-bugs] [Bug 32693] The 'About Koha' page loads slowly In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=32693 --- Comment #30 from Jonathan Druart --- Created attachment 162664 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162664&action=edit Bug 32693: Preparation: About script: Move template params These template params are only used in the default first 'about' tab but were being added further down in the script Signed-off-by: David Nind Signed-off-by: Jonathan Druart -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 1 11:55:42 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 01 Mar 2024 10:55:42 +0000 Subject: [Koha-bugs] [Bug 32693] The 'About Koha' page loads slowly In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=32693 --- Comment #31 from Jonathan Druart --- Created attachment 162665 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162665&action=edit Bug 32693: Preparation: About script: versions versions is being used in both 'team' and 'about' tabs, needs to be moved Signed-off-by: David Nind Signed-off-by: Jonathan Druart -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 1 11:55:45 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 01 Mar 2024 10:55:45 +0000 Subject: [Koha-bugs] [Bug 32693] The 'About Koha' page loads slowly In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=32693 --- Comment #32 from Jonathan Druart --- Created attachment 162666 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162666&action=edit Bug 32693: About script: Process only the tab being queried Signed-off-by: David Nind Signed-off-by: Jonathan Druart -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 1 11:56:57 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 01 Mar 2024 10:56:57 +0000 Subject: [Koha-bugs] [Bug 36176] We need tests to check for 'cud-' operations in stable branches (pre-24.05) In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36176 --- Comment #8 from Jonathan Druart --- Yes sure, this will certainly need to be adjusted, but at least it will be effective for the first months. Even in release notes we should not refer to cud- in stable branches. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 1 12:15:47 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 01 Mar 2024 11:15:47 +0000 Subject: [Koha-bugs] [Bug 26869] Enable batch record modification to create 952/item on existing bibs In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=26869 --- Comment #21 from Pedro Amorim --- (In reply to Esther Melander from comment #19) > The test plan works through step 11 and an item is created. The item created > defaulted to the 952$y item type Book, even though only the 952$a is in the > action. That may not always be the correct item type, though it is probably > better for something to be assigned than nothing. Good catch. Thanks. I took a deeper look and I'm convinced this is because of the following code in Item.pm sub store: unless ( $self->itype ) { $self->itype($self->biblio->biblioitem->itemtype); } The item will default to the itemtype at the biblio level if not mapping for itype is exists. In the case of this test plan, biblio 79 field 942$c is 'BK' so the code is grabbing that when storing the item. This follows core logic as the patch is using a core method AddItemFromMarc. I think this is a good behavior for this use case. Let me know if you disagree! > The test plan implies the 952$a is required to create an item, but I was > able to create an item with only the 952$8. Interesting! I'm sure I was unable to create an item without 952$a before but I've tried now and, as you say, the item is created regardless of 952$a mapping existing or not. I had different approaches for this solution before the current patch, using different methods, so this is likely a remnant of that i.e. with a previous version of the patch this was the case, but not anymore it seems. (In reply to Andrew Fuerste-Henry from comment #20) > If we were creating items from a 952 while importing a new bib, which item > fields, if any, would be required? It makes sense to me to have this process > match those requirements. This does make sense, I agree. Are you referring to bulkmarcimport.pl or a different method? Can you please provide a test plan on creating items from a 952 while importing a new bib? If so, I'll have a go at testing that myself. Thanks! -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 1 12:22:46 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 01 Mar 2024 11:22:46 +0000 Subject: [Koha-bugs] [Bug 36213] New: Barcode should be visible in the results listing Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36213 Bug ID: 36213 Summary: Barcode should be visible in the results listing Change sponsored?: --- Product: Koha Version: 22.11 Hardware: All OS: All Status: NEW Severity: enhancement Priority: P5 - low Component: Staff interface Assignee: koha-bugs at lists.koha-community.org Reporter: verolencinas at yahoo.com.ar QA Contact: testopia at bugs.koha-community.org CC: gmcharlt at gmail.com To check a barcode in the staff interface in Koha you need to go to the detail screen. In the results list you have access to a lot of item information like callnumbers, check-outs, locations, etc. but not to the barcodes. It would be helpful to some libraries to be able to check barcodes in the results listing. Koha should be able to turn this feature on or off since some libraries could prefer the actual result listing information. -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 1 12:41:16 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 01 Mar 2024 11:41:16 +0000 Subject: [Koha-bugs] [Bug 32565] Holds placed when all libraries are closed do not get added to holds queue if HoldsQueueSkipClosed and RealTimeHoldsQueue are enabled In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=32565 Pedro Amorim changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #162297|0 |1 is obsolete| | -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 1 12:50:11 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 01 Mar 2024 11:50:11 +0000 Subject: [Koha-bugs] [Bug 32565] Holds placed when all libraries are closed do not get added to holds queue if HoldsQueueSkipClosed and RealTimeHoldsQueue are enabled In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=32565 --- Comment #24 from Pedro Amorim --- (In reply to Nick Clemens from comment #23) > (In reply to Pedro Amorim from comment #22) > > Hey guys, I'd love some feedback on my latest patch. > > I think it makes sense considering build_holds_queue.pl --unallocated should > > be idempotent. > > I'm okay with it being dropped if you feel that's best or if I missed > > something. > > In a system without RTHQ there are times a library would like the queue to > remain static for a period of time, but have new holds be picked up. i.e. > giving a library more time to fill holds until a full rebuild, so I think > the switch is necessary even when not using the RTHQ. Having the switch > allows this code to satisfy bug 34676 and 32328 at leats partially I've made my latest patch obsolete for these reasons, I had not considered this specific use case. As it stands now, the following cron entries configurations will work like this: Without RTHQ: 0 * * * * /usr/share/koha/bin/cronjobs/holds/build_holds_queue.pl --unallocated-only # run this hourly 0 1 * * * /usr/share/koha/bin/cronjobs/holds/build_holds_queue.pl # run this daily With RTHQ: 0 * * * * /usr/share/koha/bin/cronjobs/holds/build_holds_queue.pl --unallocated-only # run this hourly 0 1 * * * /usr/share/koha/bin/cronjobs/holds/build_holds_queue.pl # run this daily !This will not do anything because RTHQ is enabled and --force is missing Nick, please intervene if any of the above needs correcting. My opinion is that a note along the lines of "It is recommended to use the cron build_holds_queue.pl --unallocated-only cron if using RTHQ" would be useful in the UI. I think this is good to go and I don't have anything else to add, but because of my involvement in it I'll leave it to someone else to PQA. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 1 12:59:01 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 01 Mar 2024 11:59:01 +0000 Subject: [Koha-bugs] [Bug 35473] Core bookings and room reservations plugin tables clash In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35473 --- Comment #18 from Martin Renvoize --- Hmm, it does raise a fiar question. In this case I worked with the plugin maintainers to get both sides of the equation done.. so, with this patch we don't just explode badly and you cna upgrade the plugin either before or after the upgrade and it works. Withouth this patch, if you don't happen to know you need to upgrade the plugin first, you'll end up with a nasty silent failure during upgrade which, without some code that's very much aware of the plugin table layout isn't at all easy to spot. I'm open to suggestions of course, but I couldn't see an alternative. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 1 13:29:45 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 01 Mar 2024 12:29:45 +0000 Subject: [Koha-bugs] [Bug 27153] ElasticSearch should search keywords apostrophe blind In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=27153 --- Comment #50 from Nick Clemens --- Current patches apply cleanly to 23.05.x and work in my testing - can this be considered for backport? -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 1 14:18:14 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 01 Mar 2024 13:18:14 +0000 Subject: [Koha-bugs] [Bug 34426] Add tests for CSRF checks missing In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=34426 Jonathan Druart changed: What |Removed |Added ---------------------------------------------------------------------------- Component|Koha |Architecture, internals, | |and plumbing Product|Koha security |Koha Group|Koha security | -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 1 14:18:26 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 01 Mar 2024 13:18:26 +0000 Subject: [Koha-bugs] [Bug 35949] Useless code pointing to branchreserves.pl in request.tt In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35949 Jonathan Druart changed: What |Removed |Added ---------------------------------------------------------------------------- Version(s)| |24.05.00 released in| | Status|Passed QA |Pushed to master --- Comment #4 from Jonathan Druart --- Pushed to master for 24.05.00. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 1 14:18:35 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 01 Mar 2024 13:18:35 +0000 Subject: [Koha-bugs] [Bug 36017] Dead code in admin/clone-rules In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36017 Jonathan Druart changed: What |Removed |Added ---------------------------------------------------------------------------- Version(s)| |24.05.00 released in| | Status|Passed QA |Pushed to master --- Comment #4 from Jonathan Druart --- Pushed to master for 24.05.00. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 1 14:18:45 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 01 Mar 2024 13:18:45 +0000 Subject: [Koha-bugs] [Bug 36019] Dead code in tags/review In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36019 Jonathan Druart changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Passed QA |Pushed to master Version(s)| |24.05.00 released in| | --- Comment #3 from Jonathan Druart --- Pushed to master for 24.05.00. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 1 14:19:29 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 01 Mar 2024 13:19:29 +0000 Subject: [Koha-bugs] [Bug 35890] AutoLocation system preference + setting the library IP field - can still login and unexpected results In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35890 Jonathan Druart changed: What |Removed |Added ---------------------------------------------------------------------------- Component|Koha |Architecture, internals, | |and plumbing Product|Koha security |Koha QA Contact| |testopia at bugs.koha-communit | |y.org Group|Koha security | -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 1 14:19:41 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 01 Mar 2024 13:19:41 +0000 Subject: [Koha-bugs] [Bug 35918] Incorrect library used when AutoLocation configured using the same IP In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35918 Jonathan Druart changed: What |Removed |Added ---------------------------------------------------------------------------- Component|Koha |Architecture, internals, | |and plumbing Product|Koha security |Koha Group|Koha security | QA Contact| |testopia at bugs.koha-communit | |y.org -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 1 14:19:58 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 01 Mar 2024 13:19:58 +0000 Subject: [Koha-bugs] [Bug 35935] Wrong branch picked after an incorrect login In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35935 Jonathan Druart changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Passed QA |Pushed to master Version(s)| |24.05.00 released in| | --- Comment #4 from Jonathan Druart --- Pushed to master for 24.05.00. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 1 14:20:06 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 01 Mar 2024 13:20:06 +0000 Subject: [Koha-bugs] [Bug 36098] Create Koha::Session module In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36098 Jonathan Druart changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Passed QA |Pushed to master Version(s)| |24.05.00 released in| | --- Comment #17 from Jonathan Druart --- Pushed to master for 24.05.00. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 1 14:20:25 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 01 Mar 2024 13:20:25 +0000 Subject: [Koha-bugs] [Bug 35955] New CSRF token generated everytime we need one In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35955 Jonathan Druart changed: What |Removed |Added ---------------------------------------------------------------------------- Component|Koha |Architecture, internals, | |and plumbing Version(s)| |24.05.00 released in| | Product|Koha security |Koha Status|Passed QA |Pushed to master Group|Koha security | --- Comment #11 from Jonathan Druart --- Pushed to master for 24.05.00. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 1 14:20:38 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 01 Mar 2024 13:20:38 +0000 Subject: [Koha-bugs] [Bug 34478] Full CSRF protection In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=34478 Jonathan Druart changed: What |Removed |Added ---------------------------------------------------------------------------- Status|ASSIGNED |Passed QA Group|Koha security | Product|Koha security |Koha Version(s)| |24.05.00 released in| | Component|Koha |Architecture, internals, | |and plumbing QA Contact| |testopia at bugs.koha-communit | |y.org -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 1 14:20:45 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 01 Mar 2024 13:20:45 +0000 Subject: [Koha-bugs] [Bug 34478] Full CSRF protection In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=34478 Jonathan Druart changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Passed QA |Pushed to master --- Comment #181 from Jonathan Druart --- Pushed to master for 24.05.00. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 1 14:21:13 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 01 Mar 2024 13:21:13 +0000 Subject: [Koha-bugs] [Bug 36102] Protect login forms from CSRF attacks In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36102 Jonathan Druart changed: What |Removed |Added ---------------------------------------------------------------------------- Group|Koha security | QA Contact| |testopia at bugs.koha-communit | |y.org Component|Koha |Architecture, internals, | |and plumbing Status|Passed QA |Pushed to master Product|Koha security |Koha Version(s)| |Pushed to master for released in| |24.05.00. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 1 14:21:28 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 01 Mar 2024 13:21:28 +0000 Subject: [Koha-bugs] [Bug 36102] Protect login forms from CSRF attacks In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36102 Jonathan Druart changed: What |Removed |Added ---------------------------------------------------------------------------- Version(s)|Pushed to master for |24.05.00 released in|24.05.00. | --- Comment #40 from Jonathan Druart --- Pushed to master for 24.05.00. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 1 14:22:04 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 01 Mar 2024 13:22:04 +0000 Subject: [Koha-bugs] [Bug 36084] Pass CSRF token to SVC scripts (1/2) In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36084 Jonathan Druart changed: What |Removed |Added ---------------------------------------------------------------------------- Group|Koha security | Product|Koha security |Koha Status|Passed QA |Pushed to master Summary|Pass CSRF token to SVC |Pass CSRF token to SVC |scripts |scripts (1/2) Version(s)| |24.05.00 released in| | Component|Koha |Architecture, internals, | |and plumbing QA Contact| |testopia at bugs.koha-communit | |y.org --- Comment #37 from Jonathan Druart --- Pushed to master for 24.05.00. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 1 14:22:20 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 01 Mar 2024 13:22:20 +0000 Subject: [Koha-bugs] [Bug 36084] Pass CSRF token to SVC scripts (1/2) In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36084 Jonathan Druart changed: What |Removed |Added ---------------------------------------------------------------------------- Depends on|36094 | Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36094 [Bug 36094] svc/authentication needs adjustements -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 1 14:22:20 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 01 Mar 2024 13:22:20 +0000 Subject: [Koha-bugs] [Bug 36094] svc/authentication needs adjustements In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36094 Jonathan Druart changed: What |Removed |Added ---------------------------------------------------------------------------- Blocks|36084 | Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36084 [Bug 36084] Pass CSRF token to SVC scripts (1/2) -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 1 14:23:08 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 01 Mar 2024 13:23:08 +0000 Subject: [Koha-bugs] [Bug 36194] CSRF - svc (2/2) In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36194 Jonathan Druart changed: What |Removed |Added ---------------------------------------------------------------------------- Depends on| |36084 Summary|CSRF - svc |CSRF - svc (2/2) Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36084 [Bug 36084] Pass CSRF token to SVC scripts (1/2) -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 1 14:23:08 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 01 Mar 2024 13:23:08 +0000 Subject: [Koha-bugs] [Bug 36084] Pass CSRF token to SVC scripts (1/2) In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36084 Jonathan Druart changed: What |Removed |Added ---------------------------------------------------------------------------- Blocks| |36194 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36194 [Bug 36194] CSRF - svc (2/2) -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 1 14:23:54 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 01 Mar 2024 13:23:54 +0000 Subject: [Koha-bugs] [Bug 36148] Move CSRF check code outside of CGI->new In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36148 Jonathan Druart changed: What |Removed |Added ---------------------------------------------------------------------------- Version(s)| |24.05.00 released in| | QA Contact| |testopia at bugs.koha-communit | |y.org Status|Passed QA |Pushed to master Component|Koha |Architecture, internals, | |and plumbing Product|Koha security |Koha Group|Koha security | --- Comment #31 from Jonathan Druart --- Pushed to master for 24.05.00. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 1 14:24:09 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 01 Mar 2024 13:24:09 +0000 Subject: [Koha-bugs] [Bug 35329] Move patron searches to a modal In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35329 Jonathan Druart changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Passed QA |Pushed to master Version(s)| |24.05.00 released in| | --- Comment #157 from Jonathan Druart --- Pushed to master for 24.05.00. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 1 14:43:28 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 01 Mar 2024 13:43:28 +0000 Subject: [Koha-bugs] [Bug 30745] ES : Search never return result using after-date and/or before-date in labels/label-item-search.pl In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30745 Phan Tung Bui changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |phan-tung.bui at inlibro.com -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 1 14:54:35 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 01 Mar 2024 13:54:35 +0000 Subject: [Koha-bugs] [Bug 35169] Make long overdue borrower category options configurable in interface In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35169 Matthias Le Gac changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Failed QA |Needs Signoff -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Fri Mar 1 14:54:37 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 01 Mar 2024 13:54:37 +0000 Subject: [Koha-bugs] [Bug 35169] Make long overdue borrower category options configurable in interface In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35169 --- Comment #8 from Matthias Le Gac --- Created attachment 162667 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162667&action=edit Bug 35169: update DBupdate file Test Plan : 1 - Apply the patch 2 - Go to Koha administration > System preferences > Circulation > Checkout policy 3 - Set "DefaultLongOverdueLostValue" to "Lost" and "DefaultLongOverdueDays" to "2" 4 - Check out an item to a patron and set the date to more than two days. 5 - Remember the category of the patron Test of DefaultLongOverdueBorrowerCategories option : 6 - Go to Koha administration > System preferences > Circulation > Checkout policy 7 - Set "DefaultLongOverdueBorrowerCategories" to the category of the patron 8 - Go to the terminal in the koha environment and execute the script "./misc/cronjobs/longoverdue.pl" 9 - Normaly you see in list the check out item set just before and the list it's only borrowers with the category Test of DefaultLongOverdueSkipBorrowerCategories option : 10 - Go to Koha administration > System preferences > Circulation > Checkout policy 11 - Set "DefaultLongOverdueSkipBorrowerCategories" to the category of the patron 12 - Go to the terminal in the koha environment and execute the script "./misc/cronjobs/longoverdue.pl" 13 - Normaly you don't see in list the check out item set just before and the list it's only borrowers with others categories Test of warning : 14 - Go to Koha administration > System preferences > Circulation > Checkout policy 15 - Set "DefaultLongOverdueBorrowerCategories" to the category of the patron and Set "DefaultLongOverdueSkipBorrowerCategories" to the category of the patron 16 - Go to the terminal in the koha environment and execute the script "./misc/cronjobs/longoverdue.pl" 17 - Normaly you don't see in list the check out item set just before because the "DefaultLongOverdueSkipBorrowerCategories" take advantage of "DefaultLongOverdueBorrowerCategories" -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Fri Mar 1 14:56:32 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 01 Mar 2024 13:56:32 +0000 Subject: [Koha-bugs] [Bug 35169] Make long overdue borrower category options configurable in interface In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35169 --- Comment #9 from Matthias Le Gac --- (In reply to Lucas Gass from comment #7) > Matthias, > > I tested this and it seems to work as intended, you sysprefs.sql update > looks good to me. > > However, your DBUpdate explanation and type should not be NULL. Sorry to be > a pain! Thank you for your feedback. Normally it's good now. -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Fri Mar 1 15:01:22 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 01 Mar 2024 14:01:22 +0000 Subject: [Koha-bugs] [Bug 35145] Add ability to order patron attributes In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35145 Phan Tung Bui changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #162347|0 |1 is obsolete| | -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 1 15:11:09 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 01 Mar 2024 14:11:09 +0000 Subject: [Koha-bugs] [Bug 35473] Core bookings and room reservations plugin tables clash In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35473 Tomás Cohen Arazi changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |tomascohen at gmail.com --- Comment #19 from Tomás Cohen Arazi --- Plugins should always use: my $table_name = $self->get_qualified_table_name('name_you_want'); -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 1 15:11:57 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 01 Mar 2024 14:11:57 +0000 Subject: [Koha-bugs] [Bug 36195] CSRF - testing reports In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36195 --- Comment #1 from Jonathan Druart --- Created attachment 162668 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162668&action=edit Bug 36195: serials/routing-preview.pl - Fix save and preview No idea why we are passing issue_escaped instead of the id, but this patch fixes the regression. -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Fri Mar 1 15:14:59 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 01 Mar 2024 14:14:59 +0000 Subject: [Koha-bugs] [Bug 36192] [OMNIBUS] CSRF Protection for Koha In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36192 Pedro Amorim changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |pedro.amorim at ptfs-europe.co | |m -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 1 15:28:45 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 01 Mar 2024 14:28:45 +0000 Subject: [Koha-bugs] [Bug 35892] Fallback to GetMarcPrice in addorderiso2907 no longer works In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35892 Sarah Cornell changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |sbcornell at cityofportsmouth. | |com -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 1 15:28:57 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 01 Mar 2024 14:28:57 +0000 Subject: [Koha-bugs] [Bug 36053] Replacement prices not populating when supplied from MarcItemFieldsToOrder In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36053 Sarah Cornell changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |sbcornell at cityofportsmouth. | |com -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 1 15:30:08 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 01 Mar 2024 14:30:08 +0000 Subject: [Koha-bugs] [Bug 36060] If issues table includes overdues Renew selected items button is disabled In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36060 Brendan Lawlor changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Failed QA |Signed Off -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 1 15:35:45 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 01 Mar 2024 14:35:45 +0000 Subject: [Koha-bugs] [Bug 36060] If issues table includes overdues Renew selected items button is disabled In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36060 --- Comment #8 from Brendan Lawlor --- Hi Lucas, sorry for the false report and thanks for your time chatting with me. I retested this bug this morning and could not reproduce it. So then I reset git and tested again without the bug applied and then I could see it. So I think what happened was I didn't have the bug applied or had applied the wrong bug by accident when I first saw the bug. My bad, status back to signed off. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 1 15:39:05 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 01 Mar 2024 14:39:05 +0000 Subject: [Koha-bugs] [Bug 36159] Patron imports record a change for non-text columns that are not in the import file In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36159 Kyle M Hall changed: What |Removed |Added ---------------------------------------------------------------------------- Depends on| |3820 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=3820 [Bug 3820] More detailed patron record changes log -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Fri Mar 1 15:39:05 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 01 Mar 2024 14:39:05 +0000 Subject: [Koha-bugs] [Bug 3820] More detailed patron record changes log In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=3820 Kyle M Hall changed: What |Removed |Added ---------------------------------------------------------------------------- Blocks| |36159 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36159 [Bug 36159] Patron imports record a change for non-text columns that are not in the import file -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 1 15:41:52 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 01 Mar 2024 14:41:52 +0000 Subject: [Koha-bugs] [Bug 36060] If issues table includes overdues Renew selected items button is disabled In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36060 --- Comment #9 from Lucas Gass --- (In reply to Brendan Lawlor from comment #8) > Hi Lucas, sorry for the false report and thanks for your time chatting with > me. > > I retested this bug this morning and could not reproduce it. So then I reset > git and tested again without the bug applied and then I could see it. > > So I think what happened was I didn't have the bug applied or had applied > the wrong bug by accident when I first saw the bug. > > My bad, status back to signed off. I appreciate your testing, Brendan. Thanks! -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 1 15:49:59 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 01 Mar 2024 14:49:59 +0000 Subject: [Koha-bugs] [Bug 36159] Patron imports record a change for non-text columns that are not in the import file In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36159 Kyle M Hall changed: What |Removed |Added ---------------------------------------------------------------------------- Assignee|koha-bugs at lists.koha-commun |kyle at bywatersolutions.com |ity.org | -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Fri Mar 1 15:55:52 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 01 Mar 2024 14:55:52 +0000 Subject: [Koha-bugs] [Bug 36159] Patron imports record a change for non-text columns that are not in the import file In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36159 Kyle M Hall changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |Needs Signoff -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 1 15:55:54 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 01 Mar 2024 14:55:54 +0000 Subject: [Koha-bugs] [Bug 36159] Patron imports record a change for non-text columns that are not in the import file In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36159 --- Comment #2 from Kyle M Hall --- Created attachment 162669 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162669&action=edit Bug 36159: Patron imports record a change for non-text columns that are not in the import file When importing patrons we assume a default of '' for borrower columns not supplied in the file. When saving we compare the new object we built to the one form the database - for columns are that are not text type we get undef from the db and '' in the object we make. This means we see a difference and log into the BorrowersLog: "date_renewed" : { "after" : "", "before" : null }, "dateofbirth" : { "after" : "", "before" : null }, "debarred" : { "after" : "", "before" : null }, "flags" : { "after" : "", "before" : null }, "gonenoaddress" : { "after" : "", "before" : null }, "lost" : { "after" : "", "before" : null }, "password_expiration_date" : { "after" : "", "before" : null }, "sms_provider_id" : { "after" : "", "before" : null } } This can mean a lot of useless logging in sites that do automated imports Test Plan: 1) Enable 'BorrowersLog' system preference 2) Import the borrowers file attach do this bug report file, matchig on cardnuber, and overwriting Contents of the borrowers file are : surname,firstname,branchcode,categorycode,cardnumber,dateenrolled,patron_attributes,lastseen Acosta,Ednb,CPL,PT,23529001000463,02/01/2013,, 3) Check the logs, note the modification of columns that have no date 4) Import the file again with the same settings 5) Note the new action log 6) Apply this patch 7) Restart all the things! 8) Import the file again with the same settings 9) Note no new action log was created! -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 1 15:57:45 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 01 Mar 2024 14:57:45 +0000 Subject: [Koha-bugs] [Bug 35145] Add ability to order patron attributes In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35145 Phan Tung Bui changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #162348|1 |0 is obsolete| | -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 1 15:58:09 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 01 Mar 2024 14:58:09 +0000 Subject: [Koha-bugs] [Bug 35145] Add ability to order patron attributes In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35145 Phan Tung Bui changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #162620|0 |1 is obsolete| | -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 1 15:58:49 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 01 Mar 2024 14:58:49 +0000 Subject: [Koha-bugs] [Bug 35145] Add ability to order patron attributes In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35145 Phan Tung Bui changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #162347|1 |0 is obsolete| | -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 1 15:58:59 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 01 Mar 2024 14:58:59 +0000 Subject: [Koha-bugs] [Bug 35145] Add ability to order patron attributes In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35145 Phan Tung Bui changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #162621|0 |1 is obsolete| | -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 1 15:59:20 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 01 Mar 2024 14:59:20 +0000 Subject: [Koha-bugs] [Bug 35145] Add ability to order patron attributes In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35145 Phan Tung Bui changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #162622|0 |1 is obsolete| | -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 1 16:03:56 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 01 Mar 2024 15:03:56 +0000 Subject: [Koha-bugs] [Bug 35329] Move patron searches to a modal In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35329 --- Comment #158 from Jonathan Druart --- Created attachment 162670 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162670&action=edit Bug 35329: (follow-up) Add styling to info and error -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 1 16:03:59 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 01 Mar 2024 15:03:59 +0000 Subject: [Koha-bugs] [Bug 35329] Move patron searches to a modal In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35329 --- Comment #159 from Jonathan Druart --- Created attachment 162671 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162671&action=edit Bug 35329: Fix conflict with 33457 -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 1 16:04:52 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 01 Mar 2024 15:04:52 +0000 Subject: [Koha-bugs] [Bug 35329] Move patron searches to a modal In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35329 --- Comment #160 from Jonathan Druart --- Last 2 patches pushed to master. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 1 16:08:15 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 01 Mar 2024 15:08:15 +0000 Subject: [Koha-bugs] [Bug 36060] If issues table includes overdues Renew selected items button is disabled In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36060 Lucas Gass changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Signed Off |Patch doesn't apply --- Comment #10 from Lucas Gass --- Needs rebased now that Bug 34478 is in, -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 1 16:10:00 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 01 Mar 2024 15:10:00 +0000 Subject: [Koha-bugs] [Bug 36187] Cannot set suggestedby when adding/editing a suggestion from the staff client In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36187 Lucas Gass changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Needs Signoff |Patch doesn't apply -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 1 16:16:55 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 01 Mar 2024 15:16:55 +0000 Subject: [Koha-bugs] [Bug 36159] Patron imports record a change for non-text columns that are not in the import file In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36159 Kyle M Hall changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #162669|0 |1 is obsolete| | --- Comment #3 from Kyle M Hall --- Created attachment 162672 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162672&action=edit Bug 36159: Patron imports record a change for non-text columns that are not in the import file When importing patrons we assume a default of '' for borrower columns not supplied in the file. When saving we compare the new object we built to the one form the database - for columns are that are not text type we get undef from the db and '' in the object we make. This means we see a difference and log into the BorrowersLog: "date_renewed" : { "after" : "", "before" : null }, "dateofbirth" : { "after" : "", "before" : null }, "debarred" : { "after" : "", "before" : null }, "flags" : { "after" : "", "before" : null }, "gonenoaddress" : { "after" : "", "before" : null }, "lost" : { "after" : "", "before" : null }, "password_expiration_date" : { "after" : "", "before" : null }, "sms_provider_id" : { "after" : "", "before" : null } } This can mean a lot of useless logging in sites that do automated imports Test Plan: 1) Enable 'BorrowersLog' system preference 2) Import the borrowers file attach do this bug report file, matchig on cardnuber, and overwriting Contents of the borrowers file are : surname,firstname,branchcode,categorycode,cardnumber,dateenrolled,patron_attributes,lastseen Acosta,Ednb,CPL,PT,23529001000463,02/01/2013,, 3) Check the logs, note the modification of columns that have no date 4) Import the file again with the same settings 5) Note the new action log 6) Apply this patch 7) Restart all the things! 8) Import the file again with the same settings 9) Note no new action log was created! -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 1 16:27:31 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 01 Mar 2024 15:27:31 +0000 Subject: [Koha-bugs] [Bug 20551] Add option for including deleted records in export_records.pl In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=20551 David Gustafsson changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Patch doesn't apply |Needs Signoff --- Comment #76 from David Gustafsson --- Must have forgotten to change status, setting to Needs Signoff. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 1 16:28:33 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 01 Mar 2024 15:28:33 +0000 Subject: [Koha-bugs] [Bug 36195] CSRF - testing reports In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36195 Lucas Gass changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |lucas at bywatersolutions.com -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 1 16:28:48 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 01 Mar 2024 15:28:48 +0000 Subject: [Koha-bugs] [Bug 35145] Add ability to order patron attributes In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35145 Phan Tung Bui changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #162347|0 |1 is obsolete| | -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 1 16:29:03 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 01 Mar 2024 15:29:03 +0000 Subject: [Koha-bugs] [Bug 35145] Add ability to order patron attributes In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35145 Phan Tung Bui changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #162348|0 |1 is obsolete| | -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 1 16:29:43 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 01 Mar 2024 15:29:43 +0000 Subject: [Koha-bugs] [Bug 35145] Add ability to order patron attributes In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35145 Phan Tung Bui changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #162621|1 |0 is obsolete| | -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 1 16:30:03 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 01 Mar 2024 15:30:03 +0000 Subject: [Koha-bugs] [Bug 35145] Add ability to order patron attributes In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35145 Phan Tung Bui changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #162622|1 |0 is obsolete| | -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 1 16:35:25 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 01 Mar 2024 15:35:25 +0000 Subject: [Koha-bugs] [Bug 34755] Error authenticating to external OpenID Connect (OIDC) identity provider : wrong_csrf_token In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=34755 --- Comment #21 from Olivier Hubert --- Following a discussion on IRC with Jonathan, I waited until the commits for 34478 were pushed to master. I then updated everything on my KTD and made sure the commits were there before I started testing. When using SSO to login, I now get the "wrong_csrf_token" error message all the time. This happens using both the OPAC and Intranet. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 1 16:42:41 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 01 Mar 2024 15:42:41 +0000 Subject: [Koha-bugs] [Bug 36060] If issues table includes overdues Renew selected items button is disabled In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36060 Lucas Gass changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #162459|0 |1 is obsolete| | --- Comment #11 from Lucas Gass --- Created attachment 162673 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162673&action=edit Bug 36060: Simplify logic to enable/disable CheckinChecked/RenewChecked buttons This patch attempts to simplify for disabling/enabling the 'Check in selected items' and 'Renewal selected items' buttons. To test: 1. APPLY patch, clear browser's cache 2. Have more than 1 checkout issued to a borrower. 3. Load the checkout table on circ/circulation.pl 4. Notice that there is now 'Renew selected items' and 'Checkin selected items' button. 5. Play around with each making sure that they work as excepted when checkouts are checked in either the 'Check in' or 'Renew' columns. 6. Uncheck everything in the 'Renew column', the 'Renew selected items' button should be disabled. 7. Uncheck everything in the 'Checkin column', the 'Checkin selected items' button should be disabled. 8. Try unchecking some of these to make sure the Renew/Checkin button is properly disabled when no related checkboxes are checked. 9. Try using the select all/none options at the top of both the 'Renew' and 'Checkin' columns. Make sure the 'Renew selected items' and 'Checkin selected items' become properly disabled/enabled. 10. Make sure the 'Renew all' button still works properly. 11. Have two checkouts. Click one for Renew and one for Checkin. Click on Check in selected items. 12. When the table reloads the 'renew' selections should be retained 13. Have two checkouts. Click one for Renew and one for Checkin. Click on Renew selected items. 14. When the table reloads the 'check in' selections should be retained 15. Have overdues 16. Go to a patron account and load the issue table 17. The items that are overdue are checked for renewal by default 16. The 'Renew selected items' button show be enabled. Signed-off-by: Brendan Lawlor -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 1 16:42:51 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 01 Mar 2024 15:42:51 +0000 Subject: [Koha-bugs] [Bug 36060] If issues table includes overdues Renew selected items button is disabled In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36060 Lucas Gass changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Patch doesn't apply |Signed Off -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 1 16:45:04 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 01 Mar 2024 15:45:04 +0000 Subject: [Koha-bugs] [Bug 24720] Remove special characters from beginning of sort fields In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=24720 David Gustafsson changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #125210|0 |1 is obsolete| | --- Comment #18 from David Gustafsson --- Created attachment 162674 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162674&action=edit Bug 24720: Add test -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 1 16:46:46 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 01 Mar 2024 15:46:46 +0000 Subject: [Koha-bugs] [Bug 36187] Cannot set suggestedby when adding/editing a suggestion from the staff client In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36187 Lucas Gass changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Patch doesn't apply |Needs Signoff -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 1 16:46:47 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 01 Mar 2024 15:46:47 +0000 Subject: [Koha-bugs] [Bug 36187] Cannot set suggestedby when adding/editing a suggestion from the staff client In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36187 Lucas Gass changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #162520|0 |1 is obsolete| | --- Comment #3 from Lucas Gass --- Created attachment 162675 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162675&action=edit Bug 36187: Corrected set data.patron_id in select_suggestor() To test: 1. Make a new suggestion in the staff interface and attempt to set the "Created by" patron to someone other than the logged in user. 2. Submit the suggestion. 3. select suggestedby from suggestions where suggestionid = X; ( Where X is the suggestionid ) 4. The value is NULL 5. On suggestion/suggestion.pl the "Suggested by" column is blank. 6. APPLY PATCH 7. Try 1 - 3 again. This time the suggestedby should be correctly set. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 1 16:51:38 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 01 Mar 2024 15:51:38 +0000 Subject: [Koha-bugs] [Bug 35145] Add ability to order patron attributes In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35145 Phan Tung Bui changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #162622|0 |1 is obsolete| | --- Comment #18 from Phan Tung Bui --- Created attachment 162676 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162676&action=edit Bug 35145 : (follow-up) Rename number to display_order - Seperate DBIC file - Rename “number” to “display_order” -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 1 16:57:33 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 01 Mar 2024 15:57:33 +0000 Subject: [Koha-bugs] [Bug 35145] Add ability to order patron attributes In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35145 Phan Tung Bui changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Patch doesn't apply |Needs Signoff -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 1 16:57:38 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 01 Mar 2024 15:57:38 +0000 Subject: [Koha-bugs] [Bug 35826] Optimize building of holds queue based on transport cost matrix In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35826 --- Comment #21 from Kyle M Hall --- (In reply to Kyle M Hall from comment #20) > (In reply to Andreas Jonsson from comment #19) > > We have been running this in a test system of a large coalition of regional > > Libraries, but I think that we need a collection of unit tests to > > sufficiently test all aspects. It is too tedious to manually walk through > > all possible scenarios. I will try to find some more time to work on this. Andreas, have you had any time to work on those tests? -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 1 17:11:02 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 01 Mar 2024 16:11:02 +0000 Subject: [Koha-bugs] [Bug 35169] Make long overdue borrower category options configurable in interface In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35169 --- Comment #10 from Lucas Gass --- Matthias, Looking closer here. If you add values to the new system preferences they override what is added at the cron level? Then you probably need to add a better description about what is happening in the POD? Also, if you use the system preferences now you are unable to configure the cron differently and run it more than once. For example you might want to do something like this: longoverdue.pl --skip-category PT --lost 14=2 --confirm longoverdue.pl --skip-category PT2 --lost 21=2 --confirm That seems like it could be a problem? I won't fail this again. I'll let someone else have a look and give opinions. -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Fri Mar 1 17:30:40 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 01 Mar 2024 16:30:40 +0000 Subject: [Koha-bugs] [Bug 35169] Make long overdue borrower category options configurable in interface In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35169 --- Comment #11 from Lisette Scheer --- I agree with Lucas that it's a problem you can't set different options for different patron categories. Currently you can set not only to skip, but also to have different patron types go to lost at different times at the cron level (such as having staff go to lost at 365 when the default is 60.) The skip default is good, but this doesn't really address the other part where you can set different rules by category. -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 1 17:41:23 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 01 Mar 2024 16:41:23 +0000 Subject: [Koha-bugs] [Bug 33260] Show message queue on staff interface and make notices printable In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33260 ByWater Sandboxes changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #162570|0 |1 is obsolete| | --- Comment #49 from ByWater Sandboxes --- Created attachment 162677 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162677&action=edit Bug 33260: Add view_generated_notices user permission Signed-off-by: Laura Escamilla Signed-off-by: kelly -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 1 17:41:26 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 01 Mar 2024 16:41:26 +0000 Subject: [Koha-bugs] [Bug 33260] Show message queue on staff interface and make notices printable In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33260 ByWater Sandboxes changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #162571|0 |1 is obsolete| | --- Comment #50 from ByWater Sandboxes --- Created attachment 162678 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162678&action=edit Bug 33260: Add NoticesManagement system preference Signed-off-by: Laura Escamilla Signed-off-by: kelly -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 1 17:41:28 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 01 Mar 2024 16:41:28 +0000 Subject: [Koha-bugs] [Bug 33260] Show message queue on staff interface and make notices printable In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33260 ByWater Sandboxes changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #162572|0 |1 is obsolete| | --- Comment #51 from ByWater Sandboxes --- Created attachment 162679 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162679&action=edit Bug 33260: Add a patron getter method to Koha::Notice::Message Signed-off-by: Laura Escamilla Signed-off-by: kelly -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 1 17:41:30 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 01 Mar 2024 16:41:30 +0000 Subject: [Koha-bugs] [Bug 33260] Show message queue on staff interface and make notices printable In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33260 ByWater Sandboxes changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #162624|0 |1 is obsolete| | --- Comment #52 from ByWater Sandboxes --- Created attachment 162680 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162680&action=edit Bug 33260: Add Notice management tool This enhancement makes it easy for the library to view sent notices and filter by various search parameters. You can also print sent notices, individually or in a batch. This enhancement uses a new system preference NoticesManagement and a new view_generated_notices user permission. This enhancement has been built on top of Bug 33478 so print format settings are taken into account when printing notices. To test: 1. Apply patches, install database updates, restart services 2. Make sure your logged in user has the view_generated_notices permission checked 3. Enable the NoticesManagement system preference 4. Generate a few notices. There are a few ways to do this including: - place holds, check in items and confirm the holds - place recalls, check in items and confirm the recalls 5. Go to Tools -> Notices management 6. There are two search functions on the left navigation. Confirm the patron search box works by searching for one of the patrons you generated a notice for, you should be redirected to their Notice history. 7. Go back to Notices management. Use the set of search filters to search for notices. Leaving the search filters empty will return all notices generated. Confirm the filters work as expected by using different combinations of filters. 8. Conduct a search so your notices show in a table. Confirm the information fetched about the notices is correct. 9. Click on a notice title. Confirm the contents of the notice show in a pop-up box. 10. Click one of the Print buttons next to a notice. Confirm the notice is opened to be printed. 11. Redo your notices search. Confirm the status of the notice you just printed has now been updated to 'sent'. 12. Use the 'Select all' and 'Clear all' buttons to select or clear the checkboxes. 13. Select a few checkboxes and click the button at the bottom of the table to 'Print selected notices'. Confirm the notices have been collated into one document, separated by horizontal lines, and prints successfully. The statuses for the notices should all be updated to 'sent'. 14. Confirm the Notices management page is not visible without the view_generated_notices permission 15. Confirm the Notices management page is not visible without the NoticesManagement system preference being enabled. 16. Go to a patron's Notices history. If the view_generated_notices user permission is checked for your logged in patron, you should see a Print button for each notice. Confirm this works. Confirm this button doesn't show if your logged in patron does not have the view_generated_notices user permission. It does not require the NoticesManagement system preference. 17. Go to Tools -> Notices & slips 18. Edit the format settings of a few different notices i.e. HOLD and WELCOME 19. Generate these notices by filling a hold for a patron and sending a welcome email 20. Search for all notices under Tools -> Notices management 21. Select all notices and print selected notices 22. Confirm the notices different format settings are taken into account in the printed PDF Sponsored-by: Colorado Library Consortium Signed-off-by: kelly -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 1 17:41:33 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 01 Mar 2024 16:41:33 +0000 Subject: [Koha-bugs] [Bug 33260] Show message queue on staff interface and make notices printable In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33260 ByWater Sandboxes changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #162625|0 |1 is obsolete| | --- Comment #53 from ByWater Sandboxes --- Created attachment 162681 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162681&action=edit Bug 33260: Move patron search into main body of page This patch moves the patron search in the Notices management page to the main body of the page so that the patron search result table displays more nicely. This is a better place for it anyway, as using this search takes the user to a different page. In the sidebar, where it was previously, it implied it would have the same results display as the search filters. Signed-off-by: Laura Escamilla Signed-off-by: kelly -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 1 17:41:57 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 01 Mar 2024 16:41:57 +0000 Subject: [Koha-bugs] [Bug 33260] Show message queue on staff interface and make notices printable In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33260 Kelly McElligott changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Needs Signoff |Signed Off -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 1 17:44:52 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 01 Mar 2024 16:44:52 +0000 Subject: [Koha-bugs] [Bug 24035] When recording local use, holds should be captured In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=24035 Andrew Fuerste-Henry changed: What |Removed |Added ---------------------------------------------------------------------------- Summary|When recording local use, |When recording local use, |there is no alert for holds |holds should be captured CC| |andrewfh at dubcolib.org Resolution|FIXED |--- Status|RESOLVED |REOPENED --- Comment #4 from Andrew Fuerste-Henry --- I've been slow to realize exactly how this was implemented. With bug 27992, if there is a hold on an item that is checked out to a statistical patron the resulting alert box will say both "Local use recorded" and "Item on hold, please checkin." Could we not trigger the hold from the checkout? What we have now is an easily-missed prompt to take an additional action involving multiple clicks. I'm going to reopen and rename this bug. -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 1 17:49:42 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 01 Mar 2024 16:49:42 +0000 Subject: [Koha-bugs] [Bug 35169] Make long overdue borrower category options configurable in interface In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35169 --- Comment #12 from Matthias Le Gac --- (In reply to Lucas Gass from comment #10) > Matthias, > > Looking closer here. If you add values to the new system preferences they > override what is added at the cron level? Then you probably need to add a > better description about what is happening in the POD? > > Also, if you use the system preferences now you are unable to configure the > cron differently and run it more than once. For example you might want to do > something like this: > > longoverdue.pl --skip-category PT --lost 14=2 --confirm > longoverdue.pl --skip-category PT2 --lost 21=2 --confirm > > That seems like it could be a problem? > > I won't fail this again. I'll let someone else have a look and give opinions. I'll look into that to implement the correct behavior. -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Fri Mar 1 17:49:53 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 01 Mar 2024 16:49:53 +0000 Subject: [Koha-bugs] [Bug 35169] Make long overdue borrower category options configurable in interface In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35169 Matthias Le Gac changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Needs Signoff |Failed QA -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Fri Mar 1 17:52:57 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 01 Mar 2024 16:52:57 +0000 Subject: [Koha-bugs] [Bug 35026] Refactor addorderiso2709.pl to use object methods In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35026 Barbara Johnson changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Needs Signoff |Failed QA --- Comment #34 from Barbara Johnson --- I tested this in a ByWater sandbox but am getting an error. I used the test plan from comment 27. In step 9 I am getting an error when saving on addorderiso2709.pl that says 'Some required item subfields are not set.' The only field that displays required next to it is budget_code which is already filled in from the xml file. I tried changing the budget_code to a different value but still got the error. I tried globally changing the budget_code via the 'Default accounting details' setting but am still getting the error message. I also noticed that the price (949$g) and replacementprice (949$v) were not populated on addorderiso2709.pl. I tried entering prices for those fields but that also did not clear the error. In case it matters, I also saw that the data in the xml file contained barcodes in the 949$p but those did not populate on addorderiso2709.pl. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 1 18:00:26 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 01 Mar 2024 17:00:26 +0000 Subject: [Koha-bugs] [Bug 24720] Remove special characters from beginning of sort fields In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=24720 David Gustafsson changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Patch doesn't apply |Needs Signoff --- Comment #19 from David Gustafsson --- Now rebased. @solene.ngamga at inlibro.com It's still reproducible for me, there could be issues if the mappings for title have sort enabled for more fields than 245, in which case the sort order will be unpredictable as some other field might be the one actually sorted on. Had that same issue myself. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 1 18:01:51 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 01 Mar 2024 17:01:51 +0000 Subject: [Koha-bugs] [Bug 11808] When searching for a cardnumber in the intranet, also try to search for it on the LDAP server if one is configured and add/update user In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=11808 Lucas Gass changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Needs Signoff |Patch doesn't apply CC| |lucas at bywatersolutions.com -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 1 18:02:45 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 01 Mar 2024 17:02:45 +0000 Subject: [Koha-bugs] [Bug 18595] Move C4::Members::Messaging to Koha namespace In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=18595 Lucas Gass changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |lucas at bywatersolutions.com Status|Needs Signoff |Patch doesn't apply -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 1 18:10:27 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 01 Mar 2024 17:10:27 +0000 Subject: [Koha-bugs] [Bug 36214] New: plugin install/update/removal should be logged Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36214 Bug ID: 36214 Summary: plugin install/update/removal should be logged Change sponsored?: --- Product: Koha Version: unspecified Hardware: All OS: All Status: NEW Severity: normal Priority: P5 - low Component: Plugin architecture Assignee: koha-bugs at lists.koha-community.org Reporter: evelyn at bywatersolutions.com QA Contact: testopia at bugs.koha-community.org Plugin installation/updates/removal should be action logged. User, time/date, and what was changed should at least be included in the logs. -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Fri Mar 1 18:13:06 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 01 Mar 2024 17:13:06 +0000 Subject: [Koha-bugs] [Bug 33350] Show items info several times in notice content In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33350 Lucas Gass changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |lucas at bywatersolutions.com Status|Needs Signoff |Failed QA --- Comment #2 from Lucas Gass --- Can't we already do this with Template Toolkit? Not sure if adding more complexity to GetPreparedLetter when there is another way to already do this. But if we do add this I think it needs a unit test in this area. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 1 18:15:28 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 01 Mar 2024 17:15:28 +0000 Subject: [Koha-bugs] [Bug 36214] plugin install/update/removal should be logged In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36214 Lisette Scheer changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |lisette.scheer at bywatersolut | |ions.com -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 1 18:20:37 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 01 Mar 2024 17:20:37 +0000 Subject: [Koha-bugs] [Bug 33478] Customise the format of notices when they are printed In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33478 Lucas Gass changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Needs Signoff |Patch doesn't apply --- Comment #132 from Lucas Gass --- Looks like a very small rebase is needed after Bug 34478 was pushed. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 1 18:22:32 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 01 Mar 2024 17:22:32 +0000 Subject: [Koha-bugs] [Bug 36215] New: Bookings calendar only shows bookings within RESTdefaultPageSize Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36215 Bug ID: 36215 Summary: Bookings calendar only shows bookings within RESTdefaultPageSize Change sponsored?: --- Product: Koha Version: master Hardware: All OS: All Status: NEW Severity: normal Priority: P5 - low Component: Staff interface Assignee: koha-bugs at lists.koha-community.org Reporter: nick at bywatersolutions.com QA Contact: testopia at bugs.koha-community.org CC: gmcharlt at gmail.com If a record has more bookings than the system preference RESTdefaultPageSize they will not appear in the calendar -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Fri Mar 1 18:22:44 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 01 Mar 2024 17:22:44 +0000 Subject: [Koha-bugs] [Bug 36215] Bookings calendar only shows bookings within RESTdefaultPageSize In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36215 Nick Clemens changed: What |Removed |Added ---------------------------------------------------------------------------- Assignee|koha-bugs at lists.koha-commun |martin.renvoize at ptfs-europe |ity.org |.com -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Fri Mar 1 18:29:42 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 01 Mar 2024 17:29:42 +0000 Subject: [Koha-bugs] [Bug 36188] Allow to sort lists by items.dateaccessioned of item records In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36188 Lucas Gass changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |lucas at bywatersolutions.com --- Comment #14 from Lucas Gass --- (In reply to Alex Buckley from comment #13) > (In reply to Owen Leonard from comment #10) > > (In reply to Owen Leonard from comment #9) > > > > > I'm a little bit concerned about using dateaccessioned for sorting > > > > Ignore me, I wasn't thinking about the fact that there is already a "Date > > added" sorting option. > > > > I wonder if there is a more user-friendly way to say "Date accessioned?" > > Some way to express that the order is by newest item? > > Hi Owen, > > Thanks for your feedback and taking a look! > > Looking at your screenshots now. > > Do you think 'Date acquired' might be a more helpful wording? Happy to > change the wording. > > Alex Looks like 'Date acquired' is used on returns.tt and catalogue_stats.tt and that seems to make sure much sense to me. -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Fri Mar 1 18:32:28 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 01 Mar 2024 17:32:28 +0000 Subject: [Koha-bugs] [Bug 24125] Batch delete should not remove authorities that are still in use In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=24125 Esther Melander changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |esther.melander at bywatersolu | |tions.com -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 1 18:35:14 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 01 Mar 2024 17:35:14 +0000 Subject: [Koha-bugs] [Bug 36169] Add guarantee to patron categories with type='Staff' In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36169 Lucas Gass changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |lucas at bywatersolutions.com --- Comment #2 from Lucas Gass --- Alex, I must not understand. What is the use case for STAFF adding a guarantee? -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 1 18:44:42 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 01 Mar 2024 17:44:42 +0000 Subject: [Koha-bugs] [Bug 36216] New: Hide Show checkouts/charges to guarantor when not necessary Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36216 Bug ID: 36216 Summary: Hide Show checkouts/charges to guarantor when not necessary Change sponsored?: --- Product: Koha Version: unspecified Hardware: All OS: All Status: NEW Severity: enhancement Priority: P5 - low Component: Patrons Assignee: koha-bugs at lists.koha-community.org Reporter: caroline.cyr-la-rose at inlibro.com QA Contact: testopia at bugs.koha-community.org CC: gmcharlt at gmail.com, kyle.m.hall at gmail.com In the patron file (moremember.pl), there is always "Show checkouts to guarantor" and "Show charges to guarantor", even if the library doesn't use the guarantor feature. If AllowStaffToSetCheckoutsVisibilityForGuarantor and AllowPatronToSetCheckoutsVisibilityForGuarantor are both set to "Don't allow", or if the patron has no guarantor, I think the "Show checkouts to guarantor" field should be hidden. Same for AllowStaffToSetFinesVisibilityForGuarantor and AllowPatronToSetFinesVisibilityForGuarantor. If both are set to "Don't allow" or if the patron has no guarantor, the "Show charges to guarantor" should be hidden. I'm thinking especially of academic libraries and special libraries, this is useless information that shows in the patron file. -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 1 18:50:13 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 01 Mar 2024 17:50:13 +0000 Subject: [Koha-bugs] [Bug 36217] New: Jobs page include last hour filter does not work Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36217 Bug ID: 36217 Summary: Jobs page include last hour filter does not work Change sponsored?: --- Product: Koha Version: 23.05 Hardware: All OS: All Status: NEW Severity: enhancement Priority: P5 - low Component: System Administration Assignee: koha-bugs at lists.koha-community.org Reporter: ephetteplace at cca.edu QA Contact: testopia at bugs.koha-community.org CC: gmcharlt at gmail.com The "include_last_hour" checkbox labelled "Only include jobs enqueued in the last hour" on the Background Jobs page /cgi-bin/koha/admin/background_jobs.pl does not seem to work, it filters out all jobs regardless of the time they were enqueued. To create: - stage a MARC file for import (or do something else that creates a job) - visit Administration > Jobs page Expected: The job your just created should be listed. The filters "include_last_hour" and "only_current" ("Current jobs only", I don't actually know what this means, jobs that have not completed?) are on by default. Even removing the current filter, the job does not appear until you remove the include last hour filter. No job ever appears if include last hour is checked. -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Fri Mar 1 19:11:05 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 01 Mar 2024 18:11:05 +0000 Subject: [Koha-bugs] [Bug 8461] Block returns of withdrawn items show as 'not checked out' In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=8461 Andrew Fuerste-Henry changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Needs Signoff |Signed Off -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 1 19:11:08 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 01 Mar 2024 18:11:08 +0000 Subject: [Koha-bugs] [Bug 8461] Block returns of withdrawn items show as 'not checked out' In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=8461 Andrew Fuerste-Henry changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #161342|0 |1 is obsolete| | --- Comment #9 from Andrew Fuerste-Henry --- Created attachment 162682 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162682&action=edit Bug 8461: Display information on whithdrawn item when checked in This patch displays the due date and withdrawn information in the Checked-in items table when 'ShowAllCheckins' is enabled. While the top message is clear, if a staff member checks in two items, then refers to the table they would not have all the information. To test: 1 - Enable system preference 'ShowAllCheckins' 2 - Set system preference 'BlockReturnOfWithdrawnItems' to 'Block' 3 - Check out an item to a patron 4 - Mark the item as withdrawn 5 - Check the item in 6 - Note message at top says things like 'Cannot check in' 'Item has been withdrawn' 7 - Note the Checked-in items table says 'Not checked out' 8 - Apply patch, restart all 9 - Check the item in again 10 - Note top message has not changed 11 - Note the table now say 'Item was not checked in' and displays the due date and patron info 12 - Note the table also includes the withdrawn value for the item Signed-off-by: Andrew Fuerste Henry -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 1 19:18:44 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 01 Mar 2024 18:18:44 +0000 Subject: [Koha-bugs] [Bug 36187] Cannot set suggestedby when adding/editing a suggestion from the staff client In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36187 Andrew Fuerste-Henry changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Needs Signoff |Signed Off -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 1 19:18:46 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 01 Mar 2024 18:18:46 +0000 Subject: [Koha-bugs] [Bug 36187] Cannot set suggestedby when adding/editing a suggestion from the staff client In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36187 Andrew Fuerste-Henry changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #162675|0 |1 is obsolete| | --- Comment #4 from Andrew Fuerste-Henry --- Created attachment 162683 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162683&action=edit Bug 36187: Corrected set data.patron_id in select_suggestor() To test: 1. Make a new suggestion in the staff interface and attempt to set the "Created by" patron to someone other than the logged in user. 2. Submit the suggestion. 3. select suggestedby from suggestions where suggestionid = X; ( Where X is the suggestionid ) 4. The value is NULL 5. On suggestion/suggestion.pl the "Suggested by" column is blank. 6. APPLY PATCH 7. Try 1 - 3 again. This time the suggestedby should be correctly set. Signed-off-by: Andrew Fuerste Henry -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 1 19:24:45 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 01 Mar 2024 18:24:45 +0000 Subject: [Koha-bugs] [Bug 26869] Enable batch record modification to create 952/item on existing bibs In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=26869 --- Comment #22 from Esther Melander --- I created a marc modification template per the test plan that creates an item with only 952$a. The new item was added to a bibliographic record where the 942$c = Visual Materials. The 952$y did default to matching the 942$c. So this is perhaps not a blocker, but could be made a bit more clear in documentation. As far as required fields, I think Koha will allow an item record to be created/exist with no required fields. However in practice, it seems the 952 $a, $b, $y are required in order for downstream circulation, holds, etc., to function properly. Perhaps, this is best addressed in documentation rather than forcing required fields. Or, perhaps there is a way to give best practices when creating items in general. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 1 19:24:54 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 01 Mar 2024 18:24:54 +0000 Subject: [Koha-bugs] [Bug 36193] CSRF - Code review missed In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36193 --- Comment #1 from Tomás Cohen Arazi --- Created attachment 162684 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162684&action=edit Bug 36193: Add more request information on Koha::Middleware::CSRF output Signed-off-by: Tomas Cohen Arazi -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 1 19:30:46 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 01 Mar 2024 18:30:46 +0000 Subject: [Koha-bugs] [Bug 36178] Add index for status on message queue table In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36178 Andrew Fuerste-Henry changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Needs Signoff |Signed Off -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 1 19:30:48 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 01 Mar 2024 18:30:48 +0000 Subject: [Koha-bugs] [Bug 36178] Add index for status on message queue table In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36178 Andrew Fuerste-Henry changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #162503|0 |1 is obsolete| | --- Comment #3 from Andrew Fuerste-Henry --- Created attachment 162685 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162685&action=edit Bug 36178: Add index for status on message queue table For large libraries, the query to gather pending notices from the message queue can take a very long time. ByWater's Rackpace DBA Mike was kind enough to do some work on this for us and found the issue. He recommends adding a simple index on the status column to fix this issue. Test Plan: 1) Apply this patch 2) Run updatedatabase.pl 3) SHOW CREATE TABLE message_queue should show the new index via koha-mysql Signed-off-by: Andrew Fuerste Henry -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 1 19:42:15 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 01 Mar 2024 18:42:15 +0000 Subject: [Koha-bugs] [Bug 35950] Move the handling of statistics patron logic out of CanBookBeIssued In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35950 Andrew Fuerste-Henry changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Needs Signoff |Signed Off -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 1 19:42:17 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 01 Mar 2024 18:42:17 +0000 Subject: [Koha-bugs] [Bug 35950] Move the handling of statistics patron logic out of CanBookBeIssued In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35950 Andrew Fuerste-Henry changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #162617|0 |1 is obsolete| | --- Comment #6 from Andrew Fuerste-Henry --- Created attachment 162686 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162686&action=edit Bug 35950: Move AddReturn call into circulation.pl There should be no change in beahavior. Following the test plan from Bug 35840. To test: 1. APPLY PATCH, restart_all 2. Turn on RecordLocalUseOnReturn 3. Create a Statistical patron. 4. Check an item out to a regular patron. 5. Check the item out to a Statistical patron. 6. This should trigger a return and you will see 2 entries in the statistics table, one for localuse and one for a return. 7. Try checking out an item to the Stats patron that is NOT checked out. 8. You should only see 1 entry, localuse, in the statistics table. Signed-off-by: Andrew Fuerste Henry -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 1 19:42:19 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 01 Mar 2024 18:42:19 +0000 Subject: [Koha-bugs] [Bug 35950] Move the handling of statistics patron logic out of CanBookBeIssued In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35950 Andrew Fuerste-Henry changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #162618|0 |1 is obsolete| | --- Comment #7 from Andrew Fuerste-Henry --- Created attachment 162687 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162687&action=edit Bug 35950: Adjust tests Signed-off-by: Andrew Fuerste Henry -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 1 20:20:40 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 01 Mar 2024 19:20:40 +0000 Subject: [Koha-bugs] [Bug 35169] Make long overdue borrower category options configurable in interface In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35169 Matthias Le Gac changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Failed QA |Needs Signoff -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 1 20:20:42 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 01 Mar 2024 19:20:42 +0000 Subject: [Koha-bugs] [Bug 35169] Make long overdue borrower category options configurable in interface In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35169 --- Comment #13 from Matthias Le Gac --- Created attachment 162688 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162688&action=edit Bug 35169: Resolve the override situations Test Plan : 1 - Apply the patch 2 - Go to Koha administration > System preferences > Circulation > Checkout policy 3 - Set "DefaultLongOverdueLostValue" to "Lost" and "DefaultLongOverdueDays" to "2" 4 - Check out an item to a patron and set the date to more than two days. 5 - Remember the category of the patron Test of DefaultLongOverdueBorrowerCategories option : 6 - Go to Koha administration > System preferences > Circulation > Checkout policy 7 - Set "DefaultLongOverdueBorrowerCategories" to the category of the patron 8 - Go to the terminal in the koha environment and execute the script "./misc/cronjobs/longoverdue.pl" 9 - Normaly you see in list the check out item set just before and the list it's only borrowers with the category Test of DefaultLongOverdueSkipBorrowerCategories option : 10 - Go to Koha administration > System preferences > Circulation > Checkout policy 11 - Set "DefaultLongOverdueSkipBorrowerCategories" to the category of the patron 12 - Go to the terminal in the koha environment and execute the script "./misc/cronjobs/longoverdue.pl" 13 - Normaly you don't see in list the check out item set just before and the list it's only borrowers with others categories Test of warning : 14 - Go to Koha administration > System preferences > Circulation > Checkout policy 15 - Set "DefaultLongOverdueBorrowerCategories" to the category of the patron and Set "DefaultLongOverdueSkipBorrowerCategories" to the category of the patron 16 - Go to the terminal in the koha environment and execute the script "./misc/cronjobs/longoverdue.pl" 17 - Normaly you don't see in list the check out item set just before because the "DefaultLongOverdueSkipBorrowerCategories" take advantage of "DefaultLongOverdueBorrowerCategories" -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 1 20:40:37 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 01 Mar 2024 19:40:37 +0000 Subject: [Koha-bugs] [Bug 36159] Patron imports record a change for non-text columns that are not in the import file In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36159 Brendan Lawlor changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Needs Signoff |Signed Off -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 1 20:40:39 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 01 Mar 2024 19:40:39 +0000 Subject: [Koha-bugs] [Bug 36159] Patron imports record a change for non-text columns that are not in the import file In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36159 Brendan Lawlor changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #162672|0 |1 is obsolete| | --- Comment #4 from Brendan Lawlor --- Created attachment 162689 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162689&action=edit Bug 36159: Patron imports record a change for non-text columns that are not in the import file When importing patrons we assume a default of '' for borrower columns not supplied in the file. When saving we compare the new object we built to the one form the database - for columns are that are not text type we get undef from the db and '' in the object we make. This means we see a difference and log into the BorrowersLog: "date_renewed" : { "after" : "", "before" : null }, "dateofbirth" : { "after" : "", "before" : null }, "debarred" : { "after" : "", "before" : null }, "flags" : { "after" : "", "before" : null }, "gonenoaddress" : { "after" : "", "before" : null }, "lost" : { "after" : "", "before" : null }, "password_expiration_date" : { "after" : "", "before" : null }, "sms_provider_id" : { "after" : "", "before" : null } } This can mean a lot of useless logging in sites that do automated imports Test Plan: 1) Enable 'BorrowersLog' system preference 2) Import the borrowers file attach do this bug report file, matchig on cardnuber, and overwriting Contents of the borrowers file are : surname,firstname,branchcode,categorycode,cardnumber,dateenrolled,patron_attributes,lastseen Acosta,Ednb,CPL,PT,23529001000463,02/01/2013,, 3) Check the logs, note the modification of columns that have no date 4) Import the file again with the same settings 5) Note the new action log 6) Apply this patch 7) Restart all the things! 8) Import the file again with the same settings 9) Note no new action log was created! Signed-off-by: Brendan Lawlor -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 1 20:49:29 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 01 Mar 2024 19:49:29 +0000 Subject: [Koha-bugs] [Bug 29509] GET /patrons* routes permissions excessive In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29509 Victor Grousset/tuxayo changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #162579|0 |1 is obsolete| | --- Comment #26 from Victor Grousset/tuxayo --- Created attachment 162690 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162690&action=edit Bug 29509: Update swagger specification and add permissions to users This patch removes the 'edit_borrowers', 'manage_bookings', 'lable_creator', 'routing' and 'order_manage' permissions from the list of options in the patrons list endpoint. We then assign the new 'list_borrowers' permission to any users who have those removed permissions Test plan 1) Apply patch and run the database update 2) Users with any of the permissions listed above should now also have the 'list_borrowers' permission too. 3) Check that patron searching continues to work from the various locations in the UI for the above affected users Signed-off-by: Victor Grousset/tuxayo -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 1 20:49:32 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 01 Mar 2024 19:49:32 +0000 Subject: [Koha-bugs] [Bug 29509] GET /patrons* routes permissions excessive In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29509 Victor Grousset/tuxayo changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #162580|0 |1 is obsolete| | --- Comment #27 from Victor Grousset/tuxayo --- Created attachment 162691 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162691&action=edit Bug 29509: Correction to bitwise check I was using it wrong :( Signed-off-by: Victor Grousset/tuxayo -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 1 20:52:44 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 01 Mar 2024 19:52:44 +0000 Subject: [Koha-bugs] [Bug 29509] GET /patrons* routes permissions excessive In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29509 Victor Grousset/tuxayo changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Needs Signoff |Signed Off --- Comment #28 from Victor Grousset/tuxayo --- (In reply to Martin Renvoize from comment #25) > Thanks for testing Victor.. you did indeed highlight an issue with my > database update... (I always struggle with these bitwise ops) > > The follow-up corrects the DB update. > > No, don't remove those permissions from the users, they need to be left in > place else the features are disabled entirely for the user. Oh right, I won't be able to get to the view that uses the search. --- It works! :) Testing notes: - manage_bookings: search a patron to make a booking - edit_borrowers: search a guarantor when editing a patron - order_manage: search a patron in the form for new order - label_creator: search a patron when creating a new batch - routing: search a patron as a recipient in the "create routing list" form -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 1 20:52:46 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 01 Mar 2024 19:52:46 +0000 Subject: [Koha-bugs] [Bug 35897] Print barcode range does not allow for barcodes with a mix of alphanumeric characters In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35897 --- Comment #1 from Esther Melander --- Perhaps one way to deal with this is to add a box for a prefix. In the example above, THLS functions as more of a prefix than an incrementing character. -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 1 21:14:34 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 01 Mar 2024 20:14:34 +0000 Subject: [Koha-bugs] [Bug 34972] Canceling a waiting hold from the holds over tab can make the next hold unfillable In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=34972 Laura Escamilla changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |Laura.escamilla at bywatersolu | |tions.com -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 1 21:23:01 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 01 Mar 2024 20:23:01 +0000 Subject: [Koha-bugs] [Bug 36218] New: ITEM Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36218 Bug ID: 36218 Summary: ITEM Change sponsored?: --- Product: Koha Version: 23.11 Hardware: All OS: Windows Status: NEW Severity: major Priority: P5 - low Component: Cataloging Assignee: koha-bugs at lists.koha-community.org Reporter: bibliotecahigh at tae.edu.mx QA Contact: testopia at bugs.koha-community.org CC: m.de.rooy at rijksmuseum.nl Hello, I'm from CDMX and when I want to add or modify individual items to magazines or books it doesn't let me edit anything, it turns white and doesn't show anything. -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Fri Mar 1 21:24:33 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 01 Mar 2024 20:24:33 +0000 Subject: [Koha-bugs] [Bug 35659] OAI Harvester In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35659 Michal Denar changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Needs Signoff |Signed Off -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 1 21:24:36 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 01 Mar 2024 20:24:36 +0000 Subject: [Koha-bugs] [Bug 35659] OAI Harvester In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35659 --- Comment #34 from Michal Denar --- Created attachment 162692 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162692&action=edit DO NOT PUSH: Bug 35659 DBIC Update Signed-off-by: Michal Denar -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 1 21:24:40 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 01 Mar 2024 20:24:40 +0000 Subject: [Koha-bugs] [Bug 35659] OAI Harvester In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35659 Michal Denar changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #162011|0 |1 is obsolete| | --- Comment #35 from Michal Denar --- Created attachment 162693 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162693&action=edit Bug 35659: OAI Harvester Test plan: - Run updatedatabase.pl - Apply the DBIC update patch - Setup an OAI repository in Administration -> OAI repositories (admin/oaiservers.pl) If the repository dataformat is in oai_dc, you can use the sample XSLT files: For Unimarc: OAIDCtoUNIMARCXML.xsl for bibliographic records AuthOAIDCtoUNIMARCXML.xsl for authorities For Marc21: OAIDCtoMARC21XML.xsl for bibliographic records AuthOAIDCtoMARC21XML.xsl for authorities If the repository dataformat is in marc-xml, you can use OAIMarcxml2KohaMarcxml.xsl for both Unimarc and Marc21. - Some repositories to test with: Bibliographic records, oai_dc: Endpoint: http://staroai.theses.fr/OAIHandler Set: ddc:260 XSLT: /koha-tmpl/intranet-tmpl/prog/en/xslt/OAIDCtoUNIMARCXML.xsl or XSLT: /koha-tmpl/intranet-tmpl/prog/en/xslt/OAIDCtoMARC21XML.xsl Authorities, oai_dc: Endpoint: https://www.idref.fr/OAI/oai.jsp Set: a XSLT: /koha-tmpl/intranet-tmpl/prog/en/xslt/AuthOAIDCtoUNIMARCXML.xsl or XSLT: /koha-tmpl/intranet-tmpl/prog/en/xslt/AuthOAIDCtoMARC21XML.xsl Authorities, marc-xml, Unimarc: Endpoint: https://www.idref.fr/OAI/oai.jsp Set: a XSLT: /koha-tmpl/intranet-tmpl/prog/en/xslt/OAIMarcxml2KohaMarcxml.xsl - Note: marc-xml harvesting will not work with HTTP::OAI::Harvester version 3.xx Version 4.xx is needed. See Bug 17704 for updating Koha default version to 4.xx - If you want to receive a report email, fill the OAI-PMH:HarvestEmailReport syspref. The model used (OAI_HARVEST_REPORT) can be edited in tools -> Notices and slips. - start a harvest with the following command: misc/cronjobs/harvest_oai.pl This script starts an OAI Harvest This script has the following parameters : -h --help: this message -v --verbose (enable output to stdout) -r --repository: id of the OAI repository -d --days: number of days to harvest from (optional) -l --list: list the OAI repositories -f --force: force harvesting (ignore records datestamps) (optional) Example: misc/cronjobs/harvest_oai.pl -r 1 -d 10 -v -f - Check the logs in the Log Viewer (tools/viewlog.pl) (CronjobLog syspref must be activated) Sponsored-by: KohaLa Signed-off-by: John Doe Signed-off-by: Michal Signed-off-by: John Doe Signed-off-by: Michal Denar -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 1 21:24:43 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 01 Mar 2024 20:24:43 +0000 Subject: [Koha-bugs] [Bug 35659] OAI Harvester In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35659 Michal Denar changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #162528|0 |1 is obsolete| | --- Comment #36 from Michal Denar --- Created attachment 162694 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162694&action=edit Bug 35659: (follow-up) Better handling of accented characters If you try to harvest bibliographic records from a UNIMARC OAI repository (using oai_dc data format) in a MARC21 Koha instance and run the OAI harvester script in verbose mode, you may get lines similar to the following in the output: no mapping found for [0xC9] at position 0 in Économie politique g0=ASCII_DEFAULT g1=EXTENDED_LATIN at /usr/share/perl5/MARC/Charset.pm line 308. no mapping found for [0xC9] at position 0 in Église et société g0=ASCII_DEFAULT g1=EXTENDED_LATIN at /usr/share/perl5/MARC/Charset.pm line 308. When looking at the imported records' biblio details page in the OPAC, most words containing accented characters will not appear correctly. The fix is to apply Franck Theeten's solution from Bug 16488 (https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=16488#c24) and modify the value of the MARC leader's 10th character to 'a' in the XSLT that transforms the UNIMARC OAI records into MARC21 XML. Then, the accented characters get imported properly and the records appear correctly in the OPAC. Test plan: 0) Without this patch, running the OAI harvesting script in verbose mode produces many warnings, and garbled characters appear in the OPAC biblio details page wherever accented characters are in use. 1) Apply this patch. 2) Re-run the OAI harvesting script in verbose + force mode (force mode is required to ignore record datestamps from previous runs): misc/cronjobs/harvest_oai.pl -v -r -f This time there should be no warnings printed on your screen, and any characters with accents in the updated records should look OK in the OPAC. Thanks-to: Franck Theeten Signed-off-by: Michal Denar -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 1 21:29:04 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 01 Mar 2024 20:29:04 +0000 Subject: [Koha-bugs] [Bug 24125] Batch delete should not remove authorities that are still in use In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=24125 --- Comment #8 from Esther Melander --- I like having an option to unlink versus delete. Does the unlink here retain the authority record in the system? If so, won't the authority in the bibliographic record eventually relink if AutoLinkBiblios, CatalogModuleRelink, and LinkerRelink are enabled? If I wanted to batch delete authorities that are in use, the system should unlink and then delete, while retaining the authority in the bibliographic record. That retention step is perhaps the part that should be optional. I can see cases where the authority in the bibliographic record is retained and cases where it is not. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 1 21:36:36 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 01 Mar 2024 20:36:36 +0000 Subject: [Koha-bugs] [Bug 35773] Cannot create bookings without edit_borrowers, label_creator, routing or order_manage permissions In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35773 Victor Grousset/tuxayo changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #162249|0 |1 is obsolete| | --- Comment #6 from Victor Grousset/tuxayo --- Created attachment 162695 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162695&action=edit Bug 35773: Add manage_bookings subpermission to patron searching This quickly fixes the issue to allowing those who have the manage_bookings subpermission to also search for users. It's deliberately bare as I'm keen to subsequently remove it again in bug 29509 where we will deal with this properly. Signed-off-by: David Nind Signed-off-by: Victor Grousset/tuxayo -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 1 22:00:57 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 01 Mar 2024 21:00:57 +0000 Subject: [Koha-bugs] [Bug 35773] Cannot create bookings without edit_borrowers, label_creator, routing or order_manage permissions In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35773 Victor Grousset/tuxayo changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |victor at tuxayo.net Status|Signed Off |Passed QA --- Comment #7 from Victor Grousset/tuxayo --- Works, makes sense, QA script happy, code looks good, passing QA :) Should circulate_remaning_permissions be needed for bookings? It's the one necessary for the calendar to load in the booking form. Even if there is something to do about it, it's not really for this ticket so still passing QA. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 1 22:32:15 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 01 Mar 2024 21:32:15 +0000 Subject: [Koha-bugs] [Bug 32565] Holds placed when all libraries are closed do not get added to holds queue if HoldsQueueSkipClosed and RealTimeHoldsQueue are enabled In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=32565 --- Comment #25 from Victor Grousset/tuxayo --- (In reply to Pedro Amorim from comment #20) > Created attachment 162269 [details] [review] > Bug 32565: QA Follow-up: Fix tests > > Apply original tests patch + this follow-up. Run: > prove t/db_dependent/HoldsQueue.t > Notice tests fail. > Apply fix patch, run the above prove command again. > Notice tests pass. Confirmed :) -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 1 22:53:17 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 01 Mar 2024 21:53:17 +0000 Subject: [Koha-bugs] [Bug 12141] On Display Module In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=12141 Lucas Gass changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |lucas at bywatersolutions.com -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 1 22:59:21 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 01 Mar 2024 21:59:21 +0000 Subject: [Koha-bugs] [Bug 36187] Cannot set suggestedby when adding/editing a suggestion from the staff interface In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36187 Katrin Fischer changed: What |Removed |Added ---------------------------------------------------------------------------- Summary|Cannot set suggestedby when |Cannot set suggestedby when |adding/editing a suggestion |adding/editing a suggestion |from the staff client |from the staff interface -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 1 23:27:20 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 01 Mar 2024 22:27:20 +0000 Subject: [Koha-bugs] [Bug 36203] Authorised value's descriptions should not be NULL In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36203 --- Comment #2 from Katrin Fischer --- In the past it was sometimes necessary to add an empty entry manually, as the pull downs would not offer one otherwise. So such entries might exist in the existing databases for a reason. I am not sure if they are still needed. How would a fix with the atomicupdate look like? Would we aim for deleting such entries? I believe just removing them could cause issues: a pull down that does not offer an empty entry on its own, would jump to the first entry in list, which would result in saving/displaying wrong values in forms. -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sat Mar 2 16:33:33 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 02 Mar 2024 15:33:33 +0000 Subject: [Koha-bugs] [Bug 36218] ITEM In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36218 Owen Leonard changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution|--- |INVALID --- Comment #1 from Owen Leonard --- This sounds like a support request rather than a bug. Questions about Koha should be asked on the Koha mailing list (http://koha-community.org/support/koha-mailing-lists/) or in the #koha IRC channel (http://koha-community.org/get-involved/irc/). Hopefully you've already seen the Koha documentation: http://koha-community.org/documentation/ You can also find options for paid support here: https://koha-community.org/support/ -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sun Mar 3 01:10:02 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sun, 03 Mar 2024 00:10:02 +0000 Subject: [Koha-bugs] [Bug 35924] The 'checkin slip' button should not be available for patrons whose privacy is set to never In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35924 Victor Grousset/tuxayo changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #161734|0 |1 is obsolete| | --- Comment #6 from Victor Grousset/tuxayo --- Created attachment 162696 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162696&action=edit Bug 35924: Hide the print checkins button on the patron screens for patron's who always anonymize If a patron anonymizes their checkins, the checkin slip cannot retrieve any info to print the checkin slip. We should not show the button in this scenario Test Plan: 1) Set a patron's privacy to "Never" 2) Note the "Print checkin slip" option in the Print button on the patrons toolbar displays 3) Apply this patch 4) Reload the page 5) Note the option is now missing 6) Set the patron's privacy to "Forever" or "Default" 7) Reload the page 8) Note the print checkins option is back! Signed-off-by: Andrew Fuerste Henry Signed-off-by: Victor Grousset/tuxayo -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sun Mar 3 01:10:05 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sun, 03 Mar 2024 00:10:05 +0000 Subject: [Koha-bugs] [Bug 35924] The 'checkin slip' button should not be available for patrons whose privacy is set to never In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35924 Victor Grousset/tuxayo changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #161735|0 |1 is obsolete| | --- Comment #7 from Victor Grousset/tuxayo --- Created attachment 162697 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162697&action=edit Bug 35924: Hide the print checkins button on the checkin screen for patron's who always anonymize Test Plan: 1) Set a patron's privacy to "Never" 2) Check out a few items to a patron 3) Check in one item 4) Note the "Print checkin slip" diplays 3) Apply this patch 4) Check in an item 5) Note the option is now missing 6) Set the patron's privacy to "Forever" or "Default" 7) Check in an item 8) Note the print checkins option is back! Signed-off-by: Andrew Fuerste Henry Signed-off-by: Victor Grousset/tuxayo -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sun Mar 3 01:10:08 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sun, 03 Mar 2024 00:10:08 +0000 Subject: [Koha-bugs] [Bug 35924] The 'checkin slip' button should not be available for patrons whose privacy is set to never In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35924 --- Comment #8 from Victor Grousset/tuxayo --- Created attachment 162698 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162698&action=edit Bug 35924: (QA follow-up): Comment magic number (patron.privacy < 2) -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sun Mar 3 01:10:46 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sun, 03 Mar 2024 00:10:46 +0000 Subject: [Koha-bugs] [Bug 35924] The 'checkin slip' button should not be available for patrons whose privacy is set to never In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35924 Victor Grousset/tuxayo changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Signed Off |Passed QA --- Comment #9 from Victor Grousset/tuxayo --- Works, makes sense, QA script happy, code looks good, passing QA :) -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sun Mar 3 03:05:56 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sun, 03 Mar 2024 02:05:56 +0000 Subject: [Koha-bugs] [Bug 36049] Rounding prices sometimes leads to incorrect results In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36049 --- Comment #8 from Victor Grousset/tuxayo --- Created attachment 162699 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162699&action=edit Bug 36049: Add unit test Sponsored-by: Karlsruhe Institute of Technology (KIT) Signed-off-by: David Nind -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sun Mar 3 03:05:59 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sun, 03 Mar 2024 02:05:59 +0000 Subject: [Koha-bugs] [Bug 36049] Rounding prices sometimes leads to incorrect results In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36049 --- Comment #9 from Victor Grousset/tuxayo --- Created attachment 162700 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162700&action=edit Bug 36049: Fix price rounding This patch only fixes price rounding by using Math::BigFloat. To test: 1) Create an order line in acquisitions with vendor price 18.90 and a discount of 5 %. 2) Verify that the total (tax excl.) in the order table on the basket page is 17.95. 3) Apply the patch. 4) Reload the basket page. 5) Verify that the total (tax excl.) in the order table on the basket page now is 17.96, which is correct. 6) Run: prove t/Number/Price.t Sponsored-by: Karlsruhe Institute of Technology (KIT) Signed-off-by: David Nind -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sun Mar 3 03:06:21 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sun, 03 Mar 2024 02:06:21 +0000 Subject: [Koha-bugs] [Bug 36049] Rounding prices sometimes leads to incorrect results In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36049 Victor Grousset/tuxayo changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |victor at tuxayo.net Attachment #161951|0 |1 is obsolete| | -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sun Mar 3 03:07:35 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sun, 03 Mar 2024 02:07:35 +0000 Subject: [Koha-bugs] [Bug 36049] Rounding prices sometimes leads to incorrect results In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36049 Victor Grousset/tuxayo changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #162700|0 |1 is obsolete| | --- Comment #10 from Victor Grousset/tuxayo --- Created attachment 162701 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162701&action=edit Bug 36049: Fix price rounding This patch only fixes price rounding by using Math::BigFloat. To test: 0) Enable syspref OrderPriceRounding 1) Create an order line in acquisitions with vendor price 18.90 and a discount of 5 %. 2) Verify that the total (tax excl.) in the order table on the basket page is 17.95. 3) Apply the patch. 4) Reload the basket page. 5) Verify that the total (tax excl.) in the order table on the basket page now is 17.96, which is correct. 6) Run: prove t/Number/Price.t Sponsored-by: Karlsruhe Institute of Technology (KIT) Signed-off-by: David Nind -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sun Mar 3 03:36:53 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sun, 03 Mar 2024 02:36:53 +0000 Subject: [Koha-bugs] [Bug 36049] Rounding prices sometimes leads to incorrect results In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36049 Victor Grousset/tuxayo changed: What |Removed |Added ---------------------------------------------------------------------------- QA Contact|testopia at bugs.koha-communit |victor at tuxayo.net |y.org | Status|Signed Off |Failed QA --- Comment #11 from Victor Grousset/tuxayo --- In basket view, shouldn't "Budgeted cost tax exc." also honor OrderPriceRounding ? Same about "Budgeted cost tax inc" and "GST". In the new order form, "Total" (and "Budgeted cost:" depending on previous question) now aren't consistent with the basket view. It's the previous step and the same data should have the same value. So we would have basket's "total tax exc" honoring well OrderPriceRounding but there is still buggy rounding around. Either for the same data on the previous page or on the same page close to "total tax exc". --- Commit was split to confirm that the test fails without implementation. That shows the test does it's work :) -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sun Mar 3 22:16:36 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sun, 03 Mar 2024 21:16:36 +0000 Subject: [Koha-bugs] [Bug 35067] Allow authorised value parent category so categories can be linked and shown together In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35067 Aleisha Amohia changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #162355|0 |1 is obsolete| | --- Comment #10 from Aleisha Amohia --- Created attachment 162702 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162702&action=edit Bug 35067: Add authorised_value_categories.parent column -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sun Mar 3 22:16:39 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sun, 03 Mar 2024 21:16:39 +0000 Subject: [Koha-bugs] [Bug 35067] Allow authorised value parent category so categories can be linked and shown together In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35067 Aleisha Amohia changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #162356|0 |1 is obsolete| | --- Comment #11 from Aleisha Amohia --- Created attachment 162703 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162703&action=edit Bug 35067: Schema updates -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sun Mar 3 22:16:42 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sun, 03 Mar 2024 21:16:42 +0000 Subject: [Koha-bugs] [Bug 35067] Allow authorised value parent category so categories can be linked and shown together In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35067 Aleisha Amohia changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #162357|0 |1 is obsolete| | --- Comment #12 from Aleisha Amohia --- Created attachment 162704 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162704&action=edit Bug 35067: Save a parent category for authorised value category -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sun Mar 3 22:16:44 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sun, 03 Mar 2024 21:16:44 +0000 Subject: [Koha-bugs] [Bug 35067] Allow authorised value parent category so categories can be linked and shown together In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35067 Aleisha Amohia changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #162358|0 |1 is obsolete| | --- Comment #13 from Aleisha Amohia --- Created attachment 162705 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162705&action=edit Bug 35067: Show parent authorised value options in biblio editor This enhancement adds the option to link a parent authorised value category to a new authorised value category. When the authorised value category is allocated to a biblio framework subfield, its values, plus it's parent's values, will show as possible options for that subfield in the cataloguing biblio editor. To test: 1) Install database updates and restart services. You may also need to rebuild schema files to capture the change to the database. 2) Go to Koha Administration -> Authorised Values. Notice the table listing authorised values now has a 'Parent category' column. 3) Click the button to add a New category. Notice there is a 'Parent category' dropdown available to set, containing all of the existing authorised value categories. Give your new category a name (for eg, CHILD), and choose any parent category (perhaps LANG). Save. 4) Add a value or set of values to your new category CHILD. 5) Once saved, go back to the main Authorised Values page and confirm your new category CHILD is showing with the correct parent category in the 'Parent category' column. 6) Go to Koha Administration -> MARC bibliographic frameworks. 7) Click the Actions dropdown for the Default framework and click on MARC structure. 8) Search for a tag and click the Actions dropdown, then choose Edit subfields. For example if testing with the LANG authorised value category, choose the 041 tag and Edit its subfields. 9) Go to the 'a' subfield tab. Go down to 'Other options (choose one)' and assign your new category CHILD to the Authorised value setting. Save. 10) Go to Cataloguing and add a new record using the default framework. 11) Go to the tag your just edited, i.e. the 041 tag. Click the dropdown to open it. 12) Confirm a heading for your new category CHILD shows with its authorised value(s) listed below it as selectable options. Confirm that the parent category i.e. LANG shows underneath, with its authorised value(s) listed below as selectable options. 13) Confirm you are able to choose a value from either list and save the record as normal. Sponsored-by: Education Services Australia SCIS -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sun Mar 3 22:16:47 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sun, 03 Mar 2024 21:16:47 +0000 Subject: [Koha-bugs] [Bug 35067] Allow authorised value parent category so categories can be linked and shown together In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35067 --- Comment #14 from Aleisha Amohia --- Created attachment 162706 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162706&action=edit Bug 35067: No parent category selected by default -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sun Mar 3 23:30:19 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sun, 03 Mar 2024 22:30:19 +0000 Subject: [Koha-bugs] [Bug 36076] paycollect.tt is missing permission checks for manual credit and invoice In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36076 Victor Grousset/tuxayo changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #162252|0 |1 is obsolete| | --- Comment #4 from Victor Grousset/tuxayo --- Created attachment 162707 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162707&action=edit Bug 36076: paycollect.tt add permission checks for manual credit and invoice In members/pay.tt one can see permission checks for manual credit and invoice : CAN_user_updatecharges_manual_invoice CAN_user_updatecharges_manual_credit This is missing from members/paycollect.tt. HTML is also missing classes manualcredit and manualinvoice. Test plan : 1) Create a user with permissions to manage accounting (remaining_permissions under updatecharges) but without manual_invoice and manual_credit 2) Go to a patron account with an invoice 3) Click on "Make a payment", you dont see tabs manual credit/invoice 4) Click on "Pay" in "Actions" column => Without patch you see tabs manual credit/invoice => With patch you do not see them Signed-off-by: David Nind Signed-off-by: Victor Grousset/tuxayo -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sun Mar 3 23:31:16 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sun, 03 Mar 2024 22:31:16 +0000 Subject: [Koha-bugs] [Bug 36076] paycollect.tt is missing permission checks for manual credit and invoice In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36076 Victor Grousset/tuxayo changed: What |Removed |Added ---------------------------------------------------------------------------- QA Contact|testopia at bugs.koha-communit |victor at tuxayo.net |y.org | CC| |victor at tuxayo.net Status|Signed Off |Passed QA --- Comment #5 from Victor Grousset/tuxayo --- Works, makes sense, QA script happy, code looks good, passing QA :) -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sun Mar 3 23:37:40 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sun, 03 Mar 2024 22:37:40 +0000 Subject: [Koha-bugs] [Bug 36076] paycollect.tt is missing permission checks for manual credit and invoice In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36076 Victor Grousset/tuxayo changed: What |Removed |Added ---------------------------------------------------------------------------- Severity|major |normal --- Comment #6 from Victor Grousset/tuxayo --- (In reply to Fridolin Somers from comment #2) > I set major because it is a permission leak It's just displaying links which don't work because the server checks the permission before sending the page. And even if it did work, the post request for invoices and credit are also protected server side. (checked by loading the form, removing the permission and trying to make a manual invoice/credit) -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sun Mar 3 23:52:30 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sun, 03 Mar 2024 22:52:30 +0000 Subject: [Koha-bugs] [Bug 34755] Error authenticating to external OpenID Connect (OIDC) identity provider : wrong_csrf_token In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=34755 --- Comment #22 from David Cook --- (In reply to Olivier Hubert from comment #21) > Following a discussion on IRC with Jonathan, I waited until the commits for > 34478 were pushed to master. I then updated everything on my KTD and made > sure the commits were there before I started testing. > > When using SSO to login, I now get the "wrong_csrf_token" error message all > the time. This happens using both the OPAC and Intranet. Thanks for testing, Olivier. I'll take a look at this a little bit later today. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sun Mar 3 23:56:32 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sun, 03 Mar 2024 22:56:32 +0000 Subject: [Koha-bugs] [Bug 36192] [OMNIBUS] CSRF Protection for Koha In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36192 David Cook changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |dcook at prosentient.com.au -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 4 00:00:53 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sun, 03 Mar 2024 23:00:53 +0000 Subject: [Koha-bugs] [Bug 36203] Authorised value's descriptions should not be NULL In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36203 David Cook changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |dcook at prosentient.com.au -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 4 00:06:57 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sun, 03 Mar 2024 23:06:57 +0000 Subject: [Koha-bugs] [Bug 36193] CSRF - Code review missed In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36193 David Cook changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |dcook at prosentient.com.au -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 4 00:07:14 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sun, 03 Mar 2024 23:07:14 +0000 Subject: [Koha-bugs] [Bug 36195] CSRF - testing reports In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36195 David Cook changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |dcook at prosentient.com.au -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 4 00:08:20 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sun, 03 Mar 2024 23:08:20 +0000 Subject: [Koha-bugs] [Bug 36217] Jobs page include last hour filter does not work In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36217 David Cook changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |dcook at prosentient.com.au -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 4 00:09:18 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sun, 03 Mar 2024 23:09:18 +0000 Subject: [Koha-bugs] [Bug 36214] plugin install/update/removal should be logged In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36214 David Cook changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |dcook at prosentient.com.au --- Comment #1 from David Cook --- (In reply to Evelyn Hartline from comment #0) > Plugin installation/updates/removal should be action logged. User, > time/date, and what was changed should at least be included in the logs. Sounds like a good idea. We'd want some sort of default user or placeholder for when it's initiated by the CLI script. -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Mon Mar 4 01:07:48 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 04 Mar 2024 00:07:48 +0000 Subject: [Koha-bugs] [Bug 35565] Authority Linker not properly including subfields In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35565 Phil Ringnalda changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |phil at chetcolibrary.org --- Comment #2 from Phil Ringnalda --- (In reply to Esther Melander from comment #0) > LinkerOptions: broader_headings That's precisely what broader_headings does: if there's no match for a heading with more than one subfield, it removes the last one until it finds a match or runs out of subfields to remove. As the manual says, "This feature is experimental and shouldn’t be used in a production environment until further expanded upon." The feature has been untouched since it landed in 2012. It would be possible to fix this particular problem by teaching it to not remove subfields in the name portion and name-title portion of https://www.loc.gov/marc/authority/adx00.html but then doing the same for x10 and x11 will be complicated by the way that you can actually have more than one $d or $n, where one is part of the name and one is part of the title in a name-title heading. Perhaps a config file for what subfields may be removed from each bib field (since it would be reasonable to have different choices for 100/600/700/800)? Or, in far fewer lines of code, remove the feature which has been experimental and non-production and untouched for over 13 years. -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Mon Mar 4 01:24:35 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 04 Mar 2024 00:24:35 +0000 Subject: [Koha-bugs] [Bug 35067] Allow authorised value parent category so categories can be linked and shown together In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35067 Aleisha Amohia changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #162706|0 |1 is obsolete| | --- Comment #15 from Aleisha Amohia --- Created attachment 162708 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162708&action=edit Bug 35067: Fix for AV categories with no parent, and special AVs Test that item type, classification sources, and standard authorised values like YES_NO still work as normal. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 4 04:52:56 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 04 Mar 2024 03:52:56 +0000 Subject: [Koha-bugs] [Bug 34755] Error authenticating to external OpenID Connect (OIDC) identity provider : wrong_csrf_token In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=34755 --- Comment #23 from David Cook --- (In reply to Olivier Hubert from comment #21) > Following a discussion on IRC with Jonathan, I waited until the commits for > 34478 were pushed to master. I then updated everything on my KTD and made > sure the commits were there before I started testing. > > When using SSO to login, I now get the "wrong_csrf_token" error message all > the time. This happens using both the OPAC and Intranet. It looks like 34478 accidentally breaks the generation of the state parameter. I am going to fix that in a different bug report I think, so that we can keep this one for the userenv related issue. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 4 04:55:24 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 04 Mar 2024 03:55:24 +0000 Subject: [Koha-bugs] [Bug 36219] New: State parameter broken for OIDC/Oauth Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36219 Bug ID: 36219 Summary: State parameter broken for OIDC/Oauth Change sponsored?: --- Product: Koha Version: master Hardware: All OS: All Status: NEW Severity: blocker Priority: P5 - low Component: Authentication Assignee: koha-bugs at lists.koha-community.org Reporter: dcook at prosentient.com.au QA Contact: testopia at bugs.koha-community.org CC: dpavlin at rot13.org Bug 34478 accidentally removed the csrf token that functions as the state parameter in Koha/REST/V1/OAuth/Client.pm, which has broken the OIDC/Oauth SSO. Easy fix though, and should only be relevant for master at this point. -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 4 04:55:37 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 04 Mar 2024 03:55:37 +0000 Subject: [Koha-bugs] [Bug 36192] [OMNIBUS] CSRF Protection for Koha In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36192 David Cook changed: What |Removed |Added ---------------------------------------------------------------------------- Depends on| |36219 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36219 [Bug 36219] State parameter broken for OIDC/Oauth -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Mon Mar 4 04:55:37 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 04 Mar 2024 03:55:37 +0000 Subject: [Koha-bugs] [Bug 36219] State parameter broken for OIDC/Oauth In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36219 David Cook changed: What |Removed |Added ---------------------------------------------------------------------------- Blocks| |36192 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36192 [Bug 36192] [OMNIBUS] CSRF Protection for Koha -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Mon Mar 4 04:55:54 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 04 Mar 2024 03:55:54 +0000 Subject: [Koha-bugs] [Bug 34755] Error authenticating to external OpenID Connect (OIDC) identity provider : wrong_csrf_token In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=34755 David Cook changed: What |Removed |Added ---------------------------------------------------------------------------- See Also| |https://bugs.koha-community | |.org/bugzilla3/show_bug.cgi | |?id=36219 -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 4 04:55:54 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 04 Mar 2024 03:55:54 +0000 Subject: [Koha-bugs] [Bug 36219] State parameter broken for OIDC/Oauth In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36219 David Cook changed: What |Removed |Added ---------------------------------------------------------------------------- See Also| |https://bugs.koha-community | |.org/bugzilla3/show_bug.cgi | |?id=34755 -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 4 04:56:15 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 04 Mar 2024 03:56:15 +0000 Subject: [Koha-bugs] [Bug 36219] State parameter broken for OIDC/Oauth In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36219 David Cook changed: What |Removed |Added ---------------------------------------------------------------------------- Assignee|koha-bugs at lists.koha-commun |dcook at prosentient.com.au |ity.org | -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 4 05:01:04 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 04 Mar 2024 04:01:04 +0000 Subject: [Koha-bugs] [Bug 36219] State parameter broken for OIDC/Oauth In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36219 David Cook changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |Needs Signoff -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 4 05:01:06 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 04 Mar 2024 04:01:06 +0000 Subject: [Koha-bugs] [Bug 36219] State parameter broken for OIDC/Oauth In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36219 --- Comment #1 from David Cook --- Created attachment 162709 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162709&action=edit Bug 36219: Re-add missing state param for Oauth/OIDC client This change restores the csrf token added as the state param for the OAuth/OIDC client. Test plan: 0. Apply the patch and restart Starman 1. Test the SSO using the wiki guide -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 4 05:08:40 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 04 Mar 2024 04:08:40 +0000 Subject: [Koha-bugs] [Bug 34755] Error authenticating to external OpenID Connect (OIDC) identity provider : wrong_csrf_token In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=34755 --- Comment #24 from David Cook --- (In reply to Olivier Hubert from comment #21) > Following a discussion on IRC with Jonathan, I waited until the commits for > 34478 were pushed to master. I then updated everything on my KTD and made > sure the commits were there before I started testing. > > When using SSO to login, I now get the "wrong_csrf_token" error message all > the time. This happens using both the OPAC and Intranet. Ok, so I've fixed the breakage caused by 34478 with a patch on bug 36219. It's worth noting that bug 34478 + bug 36219 resolves the issue reported here in bug 34755, but only for the master branch. -- For stable branches like 23.05... we'll want to backport bug 36098 and bring over the changes from git hash d75f1df99d32ab615365ffb87b975d9a53c219f7 I'll look at that now... -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 4 05:22:22 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 04 Mar 2024 04:22:22 +0000 Subject: [Koha-bugs] [Bug 34755] Error authenticating to external OpenID Connect (OIDC) identity provider : wrong_csrf_token In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=34755 David Cook changed: What |Removed |Added ---------------------------------------------------------------------------- Assignee|maryse.simard at inlibro.com |dcook at prosentient.com.au -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 4 05:22:41 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 04 Mar 2024 04:22:41 +0000 Subject: [Koha-bugs] [Bug 34755] Error authenticating to external OpenID Connect (OIDC) identity provider : wrong_csrf_token In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=34755 David Cook changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Failed QA |Needs Signoff -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 4 05:22:45 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 04 Mar 2024 04:22:45 +0000 Subject: [Koha-bugs] [Bug 34755] Error authenticating to external OpenID Connect (OIDC) identity provider : wrong_csrf_token In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=34755 David Cook changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #161783|0 |1 is obsolete| | Attachment #161784|0 |1 is obsolete| | --- Comment #25 from David Cook --- Created attachment 162710 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162710&action=edit Bug 34755: Backport Koha::Token change from bug 34478 This change includes the Koha::Token changes which uses Koha::Session for generating and checking CSRF tokens. 0. Apply the patch and koha-plack --restart kohadev 1. Setup Keycloak OIDC SSO according to "Testing SSO" wiki guide 2. In a regular window go to http://localhost:8080 3. In a private window go to http://localhost:8080 and click the SSO "Log in with..." button, but don't log into Keycloak 4. In the regular window, login locally, and navigate to 5-6 pages 5. In the private window, log into Keycloak 6. Note that you are redirected back to Koha and logged in successfully (no wrong_csrf_token error). -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 4 05:23:42 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 04 Mar 2024 04:23:42 +0000 Subject: [Koha-bugs] [Bug 34755] Error authenticating to external OpenID Connect (OIDC) identity provider : wrong_csrf_token In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=34755 --- Comment #26 from David Cook --- I've just tested this on 23.11.03. Bug 36098 patches plus this patch should fix the problem. I'll comment on bug 36098 asking for folk to backport the Koha::Session change. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 4 05:30:16 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 04 Mar 2024 04:30:16 +0000 Subject: [Koha-bugs] [Bug 36098] Create Koha::Session module In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36098 David Cook changed: What |Removed |Added ---------------------------------------------------------------------------- Severity|enhancement |normal --- Comment #18 from David Cook --- I'm actually changing this from "enhancement" to "normal" (although maybe it should be more severe), since it's needed to fix bug 34755 which is a bug that was reported around 6 months ago. (It took me a while to reproduce the problem and figure out the root cause, so here we are.) It would be great to get this backported to the stable branches. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 4 05:36:30 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 04 Mar 2024 04:36:30 +0000 Subject: [Koha-bugs] [Bug 36193] CSRF - Code review missed In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36193 --- Comment #2 from David Cook --- I'm not sure if I fully understand. It looks like bug 34478 accidentally broke the Oauth/OIDC SSO, so I've fixed it on bug 36219. Should I have added that patch here instead? -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Mon Mar 4 07:11:07 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 04 Mar 2024 06:11:07 +0000 Subject: [Koha-bugs] [Bug 36206] Administrative plugins In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36206 --- Comment #7 from David Cook --- (In reply to Martin Renvoize from comment #6) > Currently this is easiest to test using the in-development crontab manager > plugin, admin_plugin branch: > https://github.com/PTFS-Europe/koha-plugin-crontab/tree/admin_plugin Can't locate Config/Crontab.pm in @INC (you may need to install the Config::Cron tab module) sudo apt-get install libconfig-crontab-perl sudo sh install_plugins.sh No crontab found, installing default at /var/lib/koha/kohadev/koha-plugin-crontab/Koha/Plugin/Com/PTFSEurope/Crontab.pm line 140. Writing crontab: # This crontab file is managed by the Koha Crontab manager plugin # BLOCKID: 0 PERL5LIB=/usr/share/koha/lib KOHA_CRON_PATH=/usr/share/koha/bin/cronjobs KOHA_CONF=/etc/koha/sites/kohadev/koha-conf.xml Installed Crontab version {VERSION} All plugins successfully re-initialised -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 4 07:16:13 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 04 Mar 2024 06:16:13 +0000 Subject: [Koha-bugs] [Bug 36206] Administrative plugins In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36206 David Cook changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Needs Signoff |Failed QA --- Comment #8 from David Cook --- Sorry, mate, but I couldn't get this to work. Might be that I wasn't testing it correctly. Can you add a rock-solid test plan for it? -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 4 08:15:48 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 04 Mar 2024 07:15:48 +0000 Subject: [Koha-bugs] [Bug 36206] Administrative plugins In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36206 Magnus Enger changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |magnus at libriotech.no -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 4 09:15:37 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 04 Mar 2024 08:15:37 +0000 Subject: [Koha-bugs] [Bug 36206] Administrative plugins In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36206 --- Comment #9 from Martin Renvoize --- (In reply to David Cook from comment #7) > (In reply to Martin Renvoize from comment #6) > > Currently this is easiest to test using the in-development crontab manager > > plugin, admin_plugin branch: > > https://github.com/PTFS-Europe/koha-plugin-crontab/tree/admin_plugin > > Can't locate Config/Crontab.pm in @INC (you may need to install the > Config::Cron > tab module) > > sudo apt-get install libconfig-crontab-perl > > sudo sh install_plugins.sh > > No crontab found, installing default at > /var/lib/koha/kohadev/koha-plugin-crontab/Koha/Plugin/Com/PTFSEurope/Crontab. > pm line 140. > Writing crontab: # This crontab file is managed by the Koha Crontab manager > plugin > > # BLOCKID: 0 > PERL5LIB=/usr/share/koha/lib > KOHA_CRON_PATH=/usr/share/koha/bin/cronjobs > KOHA_CONF=/etc/koha/sites/kohadev/koha-conf.xml > Installed Crontab version {VERSION} > All plugins successfully re-initialised Yeah, I also have a work-in-progress branch that attempts to use Module::Load::Conditional to output a nicer warning in the UI when the library is missing... that or I'm considering bundling Config::Crontab into the plugin itself.. so far I've not come up with a nice solution for plugins that have cpan dependencies.. any idea's on a nice way to handle such cases would be awesome. Anyway, it looks like you managed to get there on the install and the default template was installed (it'll check for local crontab and load that, or it'll load a very basic template if one isn't found.. local crontab = whatever you may have added to a crontab using koha-shell for example. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 4 10:42:47 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 04 Mar 2024 09:42:47 +0000 Subject: [Koha-bugs] [Bug 22514] Hardcoded value of 10 for return hour when calculating hourly loans affected by holidays In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=22514 --- Comment #2 from Ray Delahunty --- Lack of properly working hourly loans functionality in Koha is a major problem for us. To prevent items being due back on weekends, all of our 8 libraries have every weekend day set to be closed days even though the libaries are open, and loaning hundreds of 5 hourly loans daily (mainly laptops). A fix to this bug would help reduce patron confusion with loan periods. But fully working hourly loans needs other fixes including those discussed in bug 6796 and bug 9725. And I suspect others. -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Mon Mar 4 11:34:07 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 04 Mar 2024 10:34:07 +0000 Subject: [Koha-bugs] [Bug 29510] objects.find should call search_limited if present In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29510 Fridolin Somers changed: What |Removed |Added ---------------------------------------------------------------------------- Version|unspecified |master Group|Koha security | Component|Koha |Architecture, internals, | |and plumbing Product|Koha security |Koha -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 4 11:34:29 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 04 Mar 2024 10:34:29 +0000 Subject: [Koha-bugs] [Bug 34623] Update jQuery-validate plugin to 1.20.0 In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=34623 Fridolin Somers changed: What |Removed |Added ---------------------------------------------------------------------------- Component|Koha |Architecture, internals, | |and plumbing Group|Koha security | Product|Koha security |Koha -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 4 11:34:34 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 04 Mar 2024 10:34:34 +0000 Subject: [Koha-bugs] [Bug 34623] Update jQuery-validate plugin to 1.20.0 In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=34623 Fridolin Somers changed: What |Removed |Added ---------------------------------------------------------------------------- Version|unspecified |master -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 4 11:35:08 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 04 Mar 2024 10:35:08 +0000 Subject: [Koha-bugs] [Bug 34623] Update jQuery-validate plugin to 1.20.0 In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=34623 Fridolin Somers changed: What |Removed |Added ---------------------------------------------------------------------------- Version(s)|24.05.00 |24.05.00,23.11.03,23.05.09, released in| |22.11.15 -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 4 11:35:56 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 04 Mar 2024 10:35:56 +0000 Subject: [Koha-bugs] [Bug 35890] AutoLocation system preference + setting the library IP field - can still login and unexpected results In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35890 Fridolin Somers changed: What |Removed |Added ---------------------------------------------------------------------------- Version(s)|24.05.00 |24.05.00,23.11.03,23.05.09, released in| |22.11.15,22.05.19 -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 4 11:36:41 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 04 Mar 2024 10:36:41 +0000 Subject: [Koha-bugs] [Bug 35918] Incorrect library used when AutoLocation configured using the same IP In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35918 Fridolin Somers changed: What |Removed |Added ---------------------------------------------------------------------------- Version(s)|24.05.00 |24.05.00,23.11.03,23.05.09, released in| |22.11.15,22.05.19 -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 4 11:36:57 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 04 Mar 2024 10:36:57 +0000 Subject: [Koha-bugs] [Bug 29510] objects.find should call search_limited if present In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29510 Fridolin Somers changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Pushed to master |Pushed to stable -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 4 11:37:00 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 04 Mar 2024 10:37:00 +0000 Subject: [Koha-bugs] [Bug 34623] Update jQuery-validate plugin to 1.20.0 In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=34623 Fridolin Somers changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Pushed to master |Pushed to stable -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 4 11:37:04 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 04 Mar 2024 10:37:04 +0000 Subject: [Koha-bugs] [Bug 35890] AutoLocation system preference + setting the library IP field - can still login and unexpected results In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35890 Fridolin Somers changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Pushed to master |Pushed to stable -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 4 11:37:07 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 04 Mar 2024 10:37:07 +0000 Subject: [Koha-bugs] [Bug 35918] Incorrect library used when AutoLocation configured using the same IP In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35918 Fridolin Somers changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Pushed to master |Pushed to stable -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 4 11:37:12 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 04 Mar 2024 10:37:12 +0000 Subject: [Koha-bugs] [Bug 29510] objects.find should call search_limited if present In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29510 Fridolin Somers changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Pushed to stable |Pushed to oldstable -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 4 11:37:16 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 04 Mar 2024 10:37:16 +0000 Subject: [Koha-bugs] [Bug 34623] Update jQuery-validate plugin to 1.20.0 In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=34623 Fridolin Somers changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Pushed to stable |Pushed to oldstable -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 4 11:37:20 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 04 Mar 2024 10:37:20 +0000 Subject: [Koha-bugs] [Bug 35890] AutoLocation system preference + setting the library IP field - can still login and unexpected results In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35890 Fridolin Somers changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Pushed to stable |Pushed to oldstable -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 4 11:37:24 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 04 Mar 2024 10:37:24 +0000 Subject: [Koha-bugs] [Bug 35918] Incorrect library used when AutoLocation configured using the same IP In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35918 Fridolin Somers changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Pushed to stable |Pushed to oldstable -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 4 11:37:30 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 04 Mar 2024 10:37:30 +0000 Subject: [Koha-bugs] [Bug 29510] objects.find should call search_limited if present In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29510 Fridolin Somers changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Pushed to oldstable |Pushed to oldoldstable -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 4 11:37:34 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 04 Mar 2024 10:37:34 +0000 Subject: [Koha-bugs] [Bug 34623] Update jQuery-validate plugin to 1.20.0 In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=34623 Fridolin Somers changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Pushed to oldstable |Pushed to oldoldstable -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 4 11:37:38 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 04 Mar 2024 10:37:38 +0000 Subject: [Koha-bugs] [Bug 35890] AutoLocation system preference + setting the library IP field - can still login and unexpected results In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35890 Fridolin Somers changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Pushed to oldstable |Pushed to oldoldstable -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 4 11:37:43 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 04 Mar 2024 10:37:43 +0000 Subject: [Koha-bugs] [Bug 35918] Incorrect library used when AutoLocation configured using the same IP In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35918 Fridolin Somers changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Pushed to oldstable |Pushed to oldoldstable -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 4 11:38:00 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 04 Mar 2024 10:38:00 +0000 Subject: [Koha-bugs] [Bug 29510] objects.find should call search_limited if present In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29510 Fridolin Somers changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Pushed to oldoldstable |Pushed to oldoldoldstable -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 4 11:38:09 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 04 Mar 2024 10:38:09 +0000 Subject: [Koha-bugs] [Bug 35890] AutoLocation system preference + setting the library IP field - can still login and unexpected results In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35890 Fridolin Somers changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Pushed to oldoldstable |Pushed to oldoldoldstable -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 4 11:38:13 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 04 Mar 2024 10:38:13 +0000 Subject: [Koha-bugs] [Bug 35918] Incorrect library used when AutoLocation configured using the same IP In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35918 Fridolin Somers changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Pushed to oldoldstable |Pushed to oldoldoldstable -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 4 11:38:40 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 04 Mar 2024 10:38:40 +0000 Subject: [Koha-bugs] [Bug 35941] OPAC user can guess clubs of other users In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35941 Fridolin Somers changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |gmcharlt at gmail.com, | |kyle.m.hall at gmail.com Product|Koha security |Koha Group|Koha security | Component|Koha |Patrons -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 4 11:41:55 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 04 Mar 2024 10:41:55 +0000 Subject: [Koha-bugs] [Bug 35941] OPAC user can guess clubs of other users In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35941 --- Comment #9 from Fridolin Somers --- (In reply to Frédéric Demians from comment #8) > Complex to backport to 22.11 due to patch 33895 which changed a lot of code. > Is that bad if it's not backported? I see it in now in 22.11.15 -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 4 11:42:06 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 04 Mar 2024 10:42:06 +0000 Subject: [Koha-bugs] [Bug 35941] OPAC user can guess clubs of other users In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35941 Fridolin Somers changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Pushed to master |Pushed to stable Version(s)|24.05.00 |24.05.00,23.11.03 released in| | -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 4 11:43:00 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 04 Mar 2024 10:43:00 +0000 Subject: [Koha-bugs] [Bug 35941] OPAC user can guess clubs of other users In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35941 --- Comment #10 from Fridolin Somers --- @Lucas I don't see this in 23.05.09 -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 4 11:47:19 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 04 Mar 2024 10:47:19 +0000 Subject: [Koha-bugs] [Bug 36072] Can request articles even if ArticleRequests is off In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36072 Fridolin Somers changed: What |Removed |Added ---------------------------------------------------------------------------- Component|Koha |Architecture, internals, | |and plumbing Product|Koha security |Koha Version|unspecified |master Group|Koha security | -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 4 11:47:37 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 04 Mar 2024 10:47:37 +0000 Subject: [Koha-bugs] [Bug 36072] Can request articles even if ArticleRequests is off In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36072 Fridolin Somers changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Pushed to stable |Pushed to oldstable Version(s)|24.05.00,23.11.03 |24.05.00,23.11.03,23.05.09, released in| |22.11.15,22.05.19 -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 4 11:47:42 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 04 Mar 2024 10:47:42 +0000 Subject: [Koha-bugs] [Bug 36072] Can request articles even if ArticleRequests is off In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36072 Fridolin Somers changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Pushed to oldstable |Pushed to oldoldstable -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 4 11:48:04 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 04 Mar 2024 10:48:04 +0000 Subject: [Koha-bugs] [Bug 36072] Can request articles even if ArticleRequests is off In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36072 Fridolin Somers changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Pushed to oldoldstable |Pushed to oldoldoldstable -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 4 12:23:50 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 04 Mar 2024 11:23:50 +0000 Subject: [Koha-bugs] [Bug 36193] CSRF - Code review missed In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36193 --- Comment #3 from Nick Clemens --- (In reply to David Cook from comment #2) > I'm not sure if I fully understand. It looks like bug 34478 accidentally > broke the Oauth/OIDC SSO, so I've fixed it on bug 36219. Should I have added > that patch here instead? The idea was simply to reduce the number of bugs filed, for what will likely be similar patches - it is perfectly okay that you filed a new bug, and it is for a distinct issue, and you linked it to the others. This is going to be a bit messy, so we just do our best to keep things clear and simple, and I think you did. -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Mon Mar 4 12:59:02 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 04 Mar 2024 11:59:02 +0000 Subject: [Koha-bugs] [Bug 33237] If TranslateNotices is off, use the interface language includes in slips In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33237 Katrin Fischer changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |christian.stelzenmueller at bs | |z-bw.de -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 4 13:06:28 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 04 Mar 2024 12:06:28 +0000 Subject: [Koha-bugs] [Bug 35026] Refactor addorderiso2709.pl to use object methods In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35026 --- Comment #35 from Nick Clemens --- (In reply to Barbara Johnson from comment #34) > I tested this in a ByWater sandbox but am getting an error. I used the test > plan from comment 27. In step 9 I am getting an error when saving on > addorderiso2709.pl that says 'Some required item subfields are not set.' The > only field that displays required next to it is budget_code which is already > filled in from the xml file. I tried changing the budget_code to a different > value but still got the error. I tried globally changing the budget_code via > the 'Default accounting details' setting but am still getting the error > message. > > I also noticed that the price (949$g) and replacementprice (949$v) were not > populated on addorderiso2709.pl. I tried entering prices for those fields > but that also did not clear the error. > > In case it matters, I also saw that the data in the xml file contained > barcodes in the 949$p but those did not populate on addorderiso2709.pl. Hi Barbara, I think you might be seeing bug 32209 - can you try setting the itemtype field in the item information tab? -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 4 13:11:09 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 04 Mar 2024 12:11:09 +0000 Subject: [Koha-bugs] [Bug 36219] State parameter broken for OIDC/Oauth In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36219 Jonathan Druart changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |jonathan.druart at gmail.com --- Comment #2 from Jonathan Druart --- I confirm that the changes made to Koha/REST/V1/OAuth/Client.pm in the following commit were not expected! commit 7e7159bf58f2dd1172737d0abe4bcfa15237c88e Bug 34478: Remove generate_csrf from pl -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 4 13:14:11 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 04 Mar 2024 12:14:11 +0000 Subject: [Koha-bugs] [Bug 33675] Add CSRF protection to OAuth/OIDC authentication In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33675 --- Comment #13 from Jonathan Druart --- No tests => regression later! bug 36219. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 4 13:16:02 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 04 Mar 2024 12:16:02 +0000 Subject: [Koha-bugs] [Bug 36219] State parameter broken for OIDC/Oauth In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36219 Jonathan Druart changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Needs Signoff |Signed Off -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 4 13:16:05 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 04 Mar 2024 12:16:05 +0000 Subject: [Koha-bugs] [Bug 36219] State parameter broken for OIDC/Oauth In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36219 Jonathan Druart changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #162709|0 |1 is obsolete| | --- Comment #3 from Jonathan Druart --- Created attachment 162711 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162711&action=edit Bug 36219: Re-add missing state param for Oauth/OIDC client This change restores the csrf token added as the state param for the OAuth/OIDC client. Test plan: 0. Apply the patch and restart Starman 1. Test the SSO using the wiki guide Signed-off-by: Jonathan Druart -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 4 13:17:05 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 04 Mar 2024 12:17:05 +0000 Subject: [Koha-bugs] [Bug 34755] Error authenticating to external OpenID Connect (OIDC) identity provider : wrong_csrf_token In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=34755 --- Comment #27 from Jonathan Druart --- Olivier, please test this (with bug 36098) as soon as you can. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 4 13:17:26 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 04 Mar 2024 12:17:26 +0000 Subject: [Koha-bugs] [Bug 30353] Enhance BiblioItemtypeInfo so that item level itypes can be displayed in results In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30353 Katrin Fischer changed: What |Removed |Added ---------------------------------------------------------------------------- Version|20.11 |master -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 4 13:45:35 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 04 Mar 2024 12:45:35 +0000 Subject: [Koha-bugs] [Bug 33675] Add CSRF protection to OAuth/OIDC authentication In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33675 --- Comment #14 from Tomás Cohen Arazi --- (In reply to Jonathan Druart from comment #13) > No tests => regression later! > bug 36219. :-( -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 4 14:08:30 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 04 Mar 2024 13:08:30 +0000 Subject: [Koha-bugs] [Bug 35329] Move patron searches to a modal In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35329 --- Comment #161 from Jonathan Druart --- Same tests are still failing with those 2 patches, rescheduling another run to see if it's a random failure (I don't recreate locally). Also noted the following JS error in the log, which is not expected at all being superlibrarian: selenium_1 | JavaScript error: http://kohadev-intra.mydnsname.org:8081/cgi-bin/koha//members/members-home.pl, line 2756: TypeError: libraries_map[data] is undefined -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 4 14:27:13 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 04 Mar 2024 13:27:13 +0000 Subject: [Koha-bugs] [Bug 36084] Pass CSRF token to SVC scripts (1/2) In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36084 --- Comment #38 from Tomás Cohen Arazi --- Created attachment 162712 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162712&action=edit Bug 36084: Fix cookie domain for www/ tests This patch changes the hardcoded `koha.local` value on t::lib::Mocks::Zebra so tests don't fail when the domain is not `koha`. To test: 1. Run: $ ktd --shell k$ export KOHA_INTRANET_URL=http://kohadev-intra.myDNSname.org:8081 k$ prove t/db_dependent/www/batch.t => FAIL: Tests fail! 2. Apply this patch 3. Repeat 1 => SUCCESS: Tests pass! 4. Sign off :-D Signed-off-by: Tomas Cohen Arazi -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 4 14:29:24 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 04 Mar 2024 13:29:24 +0000 Subject: [Koha-bugs] [Bug 32928] Filters missing in SQL builder on Orders::filter_by_active In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=32928 --- Comment #4 from Fridolin Somers --- (In reply to Fridolin Somers from comment #3) > Oups there is a typo. > Backslash there : > + 'quantityreceived' => { '<' => \'me.quantity' } Forget that, it is a string ref, completely normal :D -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 4 14:33:33 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 04 Mar 2024 13:33:33 +0000 Subject: [Koha-bugs] [Bug 36084] Pass CSRF token to SVC scripts (1/2) In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36084 --- Comment #39 from Jonathan Druart --- Last patch pushed to master. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 4 14:38:49 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 04 Mar 2024 13:38:49 +0000 Subject: [Koha-bugs] [Bug 35329] Move patron searches to a modal In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35329 --- Comment #162 from Jonathan Druart --- Created attachment 162713 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162713&action=edit Bug 35329: Fix autocomplete when placing a hold There was a JS error Uncaught TypeError: node.autocomplete(...).data(...) is undefined -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 4 14:39:00 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 04 Mar 2024 13:39:00 +0000 Subject: [Koha-bugs] [Bug 35329] Move patron searches to a modal In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35329 Jonathan Druart changed: What |Removed |Added ---------------------------------------------------------------------------- Keywords| |additional_work_needed -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 4 14:40:34 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 04 Mar 2024 13:40:34 +0000 Subject: [Koha-bugs] [Bug 36193] CSRF - Code review missed In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36193 Jonathan Druart changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |jonathan.druart at gmail.com -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 4 14:41:01 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 04 Mar 2024 13:41:01 +0000 Subject: [Koha-bugs] [Bug 36195] CSRF - testing reports In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36195 Jonathan Druart changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |jonathan.druart at gmail.com -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 4 14:49:49 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 04 Mar 2024 13:49:49 +0000 Subject: [Koha-bugs] [Bug 36219] State parameter broken for OIDC/Oauth In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36219 Jonathan Druart changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Signed Off |Passed QA -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 4 14:49:56 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 04 Mar 2024 13:49:56 +0000 Subject: [Koha-bugs] [Bug 35329] Move patron searches to a modal In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35329 --- Comment #163 from Jonathan Druart --- Created attachment 162714 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162714&action=edit Bug 35329: Fix selenium tests if no fund exist -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 4 14:50:20 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 04 Mar 2024 13:50:20 +0000 Subject: [Koha-bugs] [Bug 36219] State parameter broken for OIDC/Oauth In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36219 Jonathan Druart changed: What |Removed |Added ---------------------------------------------------------------------------- Depends on| |34478 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=34478 [Bug 34478] Full CSRF protection -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 4 14:50:20 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 04 Mar 2024 13:50:20 +0000 Subject: [Koha-bugs] [Bug 34478] Full CSRF protection In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=34478 Jonathan Druart changed: What |Removed |Added ---------------------------------------------------------------------------- Blocks| |36219 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36219 [Bug 36219] State parameter broken for OIDC/Oauth -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 4 14:51:10 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 04 Mar 2024 13:51:10 +0000 Subject: [Koha-bugs] [Bug 36219] State parameter broken for OIDC/Oauth In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36219 Jonathan Druart changed: What |Removed |Added ---------------------------------------------------------------------------- Version(s)| |24.05.00 released in| | Status|Passed QA |Pushed to master --- Comment #4 from Jonathan Druart --- Pushed to master for 24.05.00 -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 4 14:51:39 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 04 Mar 2024 13:51:39 +0000 Subject: [Koha-bugs] [Bug 35329] Move patron searches to a modal In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35329 Jonathan Druart changed: What |Removed |Added ---------------------------------------------------------------------------- Keywords|additional_work_needed | --- Comment #164 from Jonathan Druart --- Last 2 patches pushed to master. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 4 15:07:36 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 04 Mar 2024 14:07:36 +0000 Subject: [Koha-bugs] [Bug 36220] New: Connect cover_images and uploaded_files Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36220 Bug ID: 36220 Summary: Connect cover_images and uploaded_files Change sponsored?: --- Product: Koha Version: master Hardware: All OS: All Status: NEW Severity: enhancement Priority: P5 - low Component: Architecture, internals, and plumbing Assignee: koha-bugs at lists.koha-community.org Reporter: magnus at libriotech.no QA Contact: testopia at bugs.koha-community.org When a local cover image is uploaded, the image ("full" and thumbnail) and the connection to the biblio record are stored in the "cover_images" table: https://schema.koha-community.org/23_11/tables/cover_images.html Some information is also stored in the "uploaded_files" table: https://schema.koha-community.org/23_11/tables/uploaded_files.html Would it not make sense to connect these to, so cover_images contained a reference to the relevant entry in uploaded_files? That way we could also make a connection from biblionumber to any existing files in "tmp_path" directories. -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 4 15:25:33 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 04 Mar 2024 14:25:33 +0000 Subject: [Koha-bugs] [Bug 36221] New: Improve styling of Standard backend create form Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36221 Bug ID: 36221 Summary: Improve styling of Standard backend create form Change sponsored?: --- Product: Koha Version: master Hardware: All OS: All Status: NEW Severity: enhancement Priority: P5 - low Component: ILL Assignee: koha-bugs at lists.koha-community.org Reporter: pedro.amorim at ptfs-europe.com CC: pedro.amorim at ptfs-europe.com Depends on: 35725 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35725 [Bug 35725] ILL - Generic master form does not keep patron and cardnumber when changing type -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Mon Mar 4 15:25:33 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 04 Mar 2024 14:25:33 +0000 Subject: [Koha-bugs] [Bug 35725] ILL - Generic master form does not keep patron and cardnumber when changing type In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35725 Pedro Amorim changed: What |Removed |Added ---------------------------------------------------------------------------- Blocks| |36221 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36221 [Bug 36221] Improve styling of Standard backend create form -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 4 15:27:17 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 04 Mar 2024 14:27:17 +0000 Subject: [Koha-bugs] [Bug 36221] Improve styling of Standard backend create form In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36221 Pedro Amorim changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |Needs Signoff -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 4 15:27:20 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 04 Mar 2024 14:27:20 +0000 Subject: [Koha-bugs] [Bug 36221] Improve styling of Standard backend create form In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36221 --- Comment #1 from Pedro Amorim --- Created attachment 162715 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162715&action=edit Bug 36221: Preparation This refactors the code for more DRY -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 4 15:27:22 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 04 Mar 2024 14:27:22 +0000 Subject: [Koha-bugs] [Bug 36221] Improve styling of Standard backend create form In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36221 --- Comment #2 from Pedro Amorim --- Created attachment 162716 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162716&action=edit Bug 36221: OPAC Styling Test plan, dont apply patches yet: 1) Enable ILLModule 2) Create a new OPAC ILL request, visit: /cgi-bin/koha/opac-illrequests.pl?method=create&backend=Standard 3) Notice the style. Apply patches. Repeat -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Mon Mar 4 15:32:07 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 04 Mar 2024 14:32:07 +0000 Subject: [Koha-bugs] [Bug 36197] Allow for OPAC unauthenticated ILL request In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36197 Pedro Amorim changed: What |Removed |Added ---------------------------------------------------------------------------- Depends on|35570 |36221 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35570 [Bug 35570] Add a generic master form in ILL https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36221 [Bug 36221] Improve styling of Standard backend create form -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Mon Mar 4 15:32:07 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 04 Mar 2024 14:32:07 +0000 Subject: [Koha-bugs] [Bug 35570] Add a generic master form in ILL In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35570 Pedro Amorim changed: What |Removed |Added ---------------------------------------------------------------------------- Blocks|36197 | Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36197 [Bug 36197] Allow for OPAC unauthenticated ILL request -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 4 15:32:07 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 04 Mar 2024 14:32:07 +0000 Subject: [Koha-bugs] [Bug 36221] Improve styling of Standard backend create form In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36221 Pedro Amorim changed: What |Removed |Added ---------------------------------------------------------------------------- Blocks| |36197 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36197 [Bug 36197] Allow for OPAC unauthenticated ILL request -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Mon Mar 4 15:40:10 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 04 Mar 2024 14:40:10 +0000 Subject: [Koha-bugs] [Bug 32142] Add HoldFeeMode option "if all items are checked out OR the record has at least one hold already" In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=32142 --- Comment #15 from Philip Orr --- Looks good now, thanks. Test plan is good, all tested OK for me. Running qa, all changes look good. However tests do not pass for GetReserveFee.t: ´´´ Running tests (1) * Proving /kohadevbox/koha/t/db_dependent/Reserves/GetReserveFee.t KO! # Failed test 'HoldFeeMode=not_always, Patron 2 should not be charged' # at /kohadevbox/koha/t/db_dependent/Reserves/GetReserveFee.t line 113. # got: '2' # expected: '0' # Looks like you failed 1 test of 8. # Failed test 'GetReserveFee' # at /kohadevbox/koha/t/db_dependent/Reserves/GetReserveFee.t line 138. # Looks like you failed 1 test of 3. /kohadevbox/koha/t/db_dependent/Reserves/GetReserveFee.t .. Dubious, test returned 1 (wstat 256, 0x100) Failed 1/3 subtests Test Summary Report ------------------- /kohadevbox/koha/t/db_dependent/Reserves/GetReserveFee.t (Wstat: 256 Tests: 3 Failed: 1) Failed test: 1 Non-zero exit status: 1 Files=1, Tests=3, 5 wallclock secs ( 0.02 usr 0.00 sys + 3.74 cusr 0.22 csys = 3.98 CPU) Result: FAIL ``` Also, I'm not sure about comma rules.. but I think the option in HoldFeeMode should be "either if all items are checked out or the record has at least one hold already." (that is, with no comma before the or) Maybe a QA person can clarify? :) -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 4 15:58:14 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 04 Mar 2024 14:58:14 +0000 Subject: [Koha-bugs] [Bug 36222] New: Add GET route for star ratings Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36222 Bug ID: 36222 Summary: Add GET route for star ratings Change sponsored?: --- Product: Koha Version: master Hardware: All OS: All Status: NEW Severity: enhancement Priority: P5 - low Component: REST API Assignee: koha-bugs at lists.koha-community.org Reporter: katrin.fischer at bsz-bw.de CC: tomascohen at gmail.com It should be possible to get the existing rating for a bibliographic record via the REST API. -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Mon Mar 4 16:01:39 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 04 Mar 2024 15:01:39 +0000 Subject: [Koha-bugs] [Bug 36223] New: Add GET route for local cover images (bibliographic records) Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36223 Bug ID: 36223 Summary: Add GET route for local cover images (bibliographic records) Change sponsored?: --- Product: Koha Version: master Hardware: All OS: All Status: NEW Severity: enhancement Priority: P5 - low Component: REST API Assignee: koha-bugs at lists.koha-community.org Reporter: katrin.fischer at bsz-bw.de CC: tomascohen at gmail.com Koha allows to store local cover images for books and items. It would be great if we could provide a route to get the local cover images for bibliographic records. That would allow embedding them in external discovery interfaces and catalog interfaces. -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Mon Mar 4 16:09:03 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 04 Mar 2024 15:09:03 +0000 Subject: [Koha-bugs] [Bug 30299] Create a Registration API to allow for use of email verification when outside systems are registering patrons In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30299 --- Comment #2 from Katrin Fischer --- +1 -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 4 16:11:03 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 04 Mar 2024 15:11:03 +0000 Subject: [Koha-bugs] [Bug 34755] Error authenticating to external OpenID Connect (OIDC) identity provider : wrong_csrf_token In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=34755 Olivier Hubert changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Needs Signoff |Patch doesn't apply --- Comment #28 from Olivier Hubert --- Neither this bug (34755) nor 36098 applies on a fresh master. Both have conflicts. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 4 16:15:09 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 04 Mar 2024 15:15:09 +0000 Subject: [Koha-bugs] [Bug 36012] ERM/Agreements_spec.ts is failing if run too slow (?) In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36012 --- Comment #8 from Jonathan Druart --- Koha_Master/2804 koha_1 | but never did. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 4 16:19:56 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 04 Mar 2024 15:19:56 +0000 Subject: [Koha-bugs] [Bug 34755] Error authenticating to external OpenID Connect (OIDC) identity provider : wrong_csrf_token In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=34755 Jonathan Druart changed: What |Removed |Added ---------------------------------------------------------------------------- Version|master |23.11 --- Comment #29 from Jonathan Druart --- (In reply to Olivier Hubert from comment #28) > Neither this bug (34755) nor 36098 applies on a fresh master. Both have > conflicts. Master already has this change. This bug is only for backport. You need 23.11.x to test this. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 4 16:20:29 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 04 Mar 2024 15:20:29 +0000 Subject: [Koha-bugs] [Bug 34755] Error authenticating to external OpenID Connect (OIDC) identity provider : wrong_csrf_token In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=34755 Jonathan Druart changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Patch doesn't apply |Needs Signoff -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 4 17:02:19 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 04 Mar 2024 16:02:19 +0000 Subject: [Koha-bugs] [Bug 35484] OPACShelfBrowser secondary sort should be biblio.title not item.itemnumber In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35484 Lucas Gass changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |Needs Signoff -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 4 17:02:21 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 04 Mar 2024 16:02:21 +0000 Subject: [Koha-bugs] [Bug 35484] OPACShelfBrowser secondary sort should be biblio.title not item.itemnumber In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35484 --- Comment #1 from Lucas Gass --- Created attachment 162717 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162717&action=edit Bug 35484: Make secondary sort use biblio.title To test: 1. In k-t-d, set all item itemcallnumbers to the same thing, ie: 'abcdefg'; 2. Touch all items to update the cn_sort values 3. Turn on OPACShelfBrowser and view a record detail page on the OPAC. 4. Browse the shelf and see that all items are organized by itemnumber. 5. APPLY PATCH and restart_services 6. Try again, now the secondary sort should be using biblio.title, not itemnumber. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 4 17:02:34 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 04 Mar 2024 16:02:34 +0000 Subject: [Koha-bugs] [Bug 35484] OPACShelfBrowser secondary sort should be biblio.title not item.itemnumber In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35484 Lucas Gass changed: What |Removed |Added ---------------------------------------------------------------------------- Patch complexity|--- |Trivial patch Assignee|oleonard at myacpl.org |lucas at bywatersolutions.com -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 4 17:22:29 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 04 Mar 2024 16:22:29 +0000 Subject: [Koha-bugs] [Bug 34755] Error authenticating to external OpenID Connect (OIDC) identity provider : wrong_csrf_token In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=34755 Olivier Hubert changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Needs Signoff |Signed Off --- Comment #30 from Olivier Hubert --- This looks like it's fixed, in 23.11.x. With the patches from this bug and 36098, I was not able to reproduce the issue. SSO works as it should. Thanks! -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 4 17:25:18 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 04 Mar 2024 16:25:18 +0000 Subject: [Koha-bugs] [Bug 36224] New: It looks like spsuggest functionality was removed years ago, but the templates still refer to it Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36224 Bug ID: 36224 Summary: It looks like spsuggest functionality was removed years ago, but the templates still refer to it Change sponsored?: --- Product: Koha Version: master Hardware: All OS: All Status: NEW Severity: enhancement Priority: P5 - low Component: Templates Assignee: oleonard at myacpl.org Reporter: martin.renvoize at ptfs-europe.com QA Contact: testopia at bugs.koha-community.org opac-search.tt still refers to spsuggest but the git logs suggest the functionality was never fully implimented and the system preferences were removed long ago.. but they missed the template block. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 4 17:25:25 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 04 Mar 2024 16:25:25 +0000 Subject: [Koha-bugs] [Bug 36224] It looks like spsuggest functionality was removed years ago, but the templates still refer to it In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36224 Martin Renvoize changed: What |Removed |Added ---------------------------------------------------------------------------- Severity|enhancement |minor -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 4 17:26:32 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 04 Mar 2024 16:26:32 +0000 Subject: [Koha-bugs] [Bug 36221] Improve styling of Standard backend create form In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36221 Lucas Gass changed: What |Removed |Added ---------------------------------------------------------------------------- Assignee|koha-bugs at lists.koha-commun |pedro.amorim at ptfs-europe.co |ity.org |m CC| |lucas at bywatersolutions.com -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 4 17:37:56 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 04 Mar 2024 16:37:56 +0000 Subject: [Koha-bugs] [Bug 35963] Problem using some filters in the bundled items table In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35963 Martin Renvoize changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #162521|0 |1 is obsolete| | --- Comment #6 from Martin Renvoize --- Created attachment 162718 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162718&action=edit Bug 35963: Add tests Signed-off-by: Victor Grousset/tuxayo Signed-off-by: Martin Renvoize -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 4 17:37:58 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 04 Mar 2024 16:37:58 +0000 Subject: [Koha-bugs] [Bug 35963] Problem using some filters in the bundled items table In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35963 Martin Renvoize changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #162522|0 |1 is obsolete| | --- Comment #7 from Martin Renvoize --- Created attachment 162719 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162719&action=edit Bug 35963: Fix bundled items table ordering and filtering Using the many-to-many relationship results in the table alias `me` to be used for table `item_bundles` instead of the expected table `items`. This causes ordering and filtering to fail for columns Callnumber and Barcode. Using Koha::Items->search does not have this problem. This patch also disables ordering by status because it does not work (error message is: "Cannot find Koha::Object class for return_claim'") Test plan: 1. Create an item bundle https://koha-community.org/manual/23.11/en/html/circulation.html#circulating-bundles 2. Add at least 2 items to this bundle 3. Verify that ordering/filtering by callnumber or barcode works 4. Run `prove t/db_dependent/api/v1/items/bundled_items.t` Signed-off-by: Victor Grousset/tuxayo Signed-off-by: Martin Renvoize -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 4 17:38:01 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 04 Mar 2024 16:38:01 +0000 Subject: [Koha-bugs] [Bug 35963] Problem using some filters in the bundled items table In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35963 Martin Renvoize changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #162523|0 |1 is obsolete| | --- Comment #8 from Martin Renvoize --- Created attachment 162720 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162720&action=edit Bug 35963: (QA follow-up): tidy up code and fix exec permission Signed-off-by: Martin Renvoize -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 4 17:38:16 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 04 Mar 2024 16:38:16 +0000 Subject: [Koha-bugs] [Bug 35568] Add a plugin hook to allow modification of notices created via GetPreparedLetter In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35568 Kyle M Hall changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #159932|0 |1 is obsolete| | --- Comment #4 from Kyle M Hall --- Created attachment 162721 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162721&action=edit Bug 35568: Add a transform_prepared_letter plugin hook to allow modification of notices created via GetPreparedLetter A plugin hook for GetPreparedLetter would be very useful. It could be used to add universal headers and/or footers to messages, attach news, and modify notices in other ways in whole or in part. It could even be used for call webhooks when certain types of notices are sent. For example, the MessageBee ( https://uniquelibrary.com/messagebee/ ) plugin for Koha generates YAML based notice content, which is then further processed by the before_send_messages hook. This process is unreliable due to the possible changes in data between the creation of the yaml and the reading of that yaml and transforming it into JSON with much more data. For example, the yaml may contain an issue_id, but that checkout may have been returned in the meantime. A hook like this would allow the MessageBee plugin to skip the yaml step and create the json data directly which is then sent to MessageBee for transmission to the patron. Test Plan: 1) Apply this patch 2) prove t/db_dependent/Koha/Plugins/Transform_prepared_letter_hook.t 3) Download and install the Kitchen Sink plugin v2.4.0 https://github.com/bywatersolutions/dev-koha-plugin-kitchen-sink/releases/tag/v2.4.0 4) Generate any notice or slip, such as a checkin or checkout notice 5) Note that all notices now end with "Thanks for using your local library!" Signed-off-by: David Nind -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 4 17:38:27 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 04 Mar 2024 16:38:27 +0000 Subject: [Koha-bugs] [Bug 35963] Problem using some filters in the bundled items table In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35963 Martin Renvoize changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Signed Off |Passed QA QA Contact|testopia at bugs.koha-communit |martin.renvoize at ptfs-europe |y.org |.com --- Comment #9 from Martin Renvoize --- Thanks chaps, Passing QA here. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 4 17:47:18 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 04 Mar 2024 16:47:18 +0000 Subject: [Koha-bugs] [Bug 36221] Improve styling of Standard backend create form In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36221 Pedro Amorim changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |martin.renvoize at ptfs-europe | |.com, nugged at gmail.com, | |tomascohen at gmail.com, | |victor at tuxayo.net -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 4 17:52:47 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 04 Mar 2024 16:52:47 +0000 Subject: [Koha-bugs] [Bug 24644] Hold not marked filled if item set to positive not for loan value In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=24644 Patrick Robitaille changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |patrick.robitaille at collecto | |.ca -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 4 18:17:44 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 04 Mar 2024 17:17:44 +0000 Subject: [Koha-bugs] [Bug 30123] On set library page, desk always defaults to last in list instead of desk user is signed in at In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30123 Brendan Lawlor changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |blawlor at clamsnet.org -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 4 19:06:11 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 04 Mar 2024 18:06:11 +0000 Subject: [Koha-bugs] [Bug 33703] Entering dates should be more flexible accepting different entry formats In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33703 --- Comment #41 from Lucas Gass --- Created attachment 162722 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162722&action=edit Bug 33703: Don't use Maskito when picking a range -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 4 19:19:58 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 04 Mar 2024 18:19:58 +0000 Subject: [Koha-bugs] [Bug 33703] Entering dates should be more flexible accepting different entry formats In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33703 --- Comment #42 from Lucas Gass --- Created attachment 162723 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162723&action=edit Bug 33703: Add Maskito to dateaccessioned.pl -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 4 19:40:06 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 04 Mar 2024 18:40:06 +0000 Subject: [Koha-bugs] [Bug 33703] Entering dates should be more flexible accepting different entry formats In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33703 Lucas Gass changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #156411|0 |1 is obsolete| | Attachment #156412|0 |1 is obsolete| | Attachment #156413|0 |1 is obsolete| | Attachment #157132|0 |1 is obsolete| | Attachment #157206|0 |1 is obsolete| | Attachment #157746|0 |1 is obsolete| | --- Comment #43 from Lucas Gass --- Created attachment 162724 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162724&action=edit Bug 33703: Add Maskito support for OPAC -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 4 19:47:04 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 04 Mar 2024 18:47:04 +0000 Subject: [Koha-bugs] [Bug 33703] Entering dates should be more flexible accepting different entry formats In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33703 --- Comment #44 from Lucas Gass --- Created attachment 162725 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162725&action=edit Bug 33703: Add Maskito to about.tt -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 4 19:47:47 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 04 Mar 2024 18:47:47 +0000 Subject: [Koha-bugs] [Bug 33703] Entering dates should be more flexible accepting different entry formats In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33703 Lucas Gass changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Failed QA |Needs Signoff -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 4 20:59:34 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 04 Mar 2024 19:59:34 +0000 Subject: [Koha-bugs] [Bug 36225] New: Koha should warn if item group has holds group is being deleted Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36225 Bug ID: 36225 Summary: Koha should warn if item group has holds group is being deleted Change sponsored?: --- Product: Koha Version: master Hardware: All OS: All Status: NEW Severity: enhancement Priority: P5 - low Component: Circulation Assignee: koha-bugs at lists.koha-community.org Reporter: hebah at bywatersolutions.com QA Contact: testopia at bugs.koha-community.org CC: gmcharlt at gmail.com, kyle.m.hall at gmail.com To recreate: 1. Have item hold groups enabled. 2. Have a hold on an item group on a record. 3. Delete the item group - no warning of existing holds. 4. Hold is now a bib-level hold. In some cases, this may be desirable behavior (like a library using one record for multiple year editions), but in others, like volumes of a work, this now-bib-level hold is not what the patron needs. Best solution would be a warning with option for the librarian to either cancel hold or transform into bib-level hold. -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Mon Mar 4 21:01:09 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 04 Mar 2024 20:01:09 +0000 Subject: [Koha-bugs] [Bug 36225] Koha should warn if item group with holds on that group is being deleted In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36225 hebah at bywatersolutions.com changed: What |Removed |Added ---------------------------------------------------------------------------- Summary|Koha should warn if item |Koha should warn if item |group has holds group is |group with holds on that |being deleted |group is being deleted -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Mon Mar 4 21:07:45 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 04 Mar 2024 20:07:45 +0000 Subject: [Koha-bugs] [Bug 36226] New: Large patron databases create difficult patron auto-complete searches Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36226 Bug ID: 36226 Summary: Large patron databases create difficult patron auto-complete searches Change sponsored?: --- Product: Koha Version: master Hardware: All OS: All Status: NEW Severity: normal Priority: P5 - low Component: Patrons Assignee: koha-bugs at lists.koha-community.org Reporter: Laura.escamilla at bywatersolutions.com QA Contact: testopia at bugs.koha-community.org CC: gmcharlt at gmail.com, kyle.m.hall at gmail.com Large library systems or consortium are seeing issues with patron name searches. For example, if staff look for a patron with the name of "John Smith" the autocomplete feature will show the first 10 results of patrons with the name "John Smith" or similar names like "Johnny Smith". However, if they search for a name such as "Mary Maryilyn" the search will not pull up the correct patron. The autocomplete will pull up names with "Mary" or "Maryilyn" but not the name itself. A regular patron search will also result in several pages of results instead of the one unique name. -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 4 21:10:23 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 04 Mar 2024 20:10:23 +0000 Subject: [Koha-bugs] [Bug 36226] Large patron databases create difficult patron auto-complete searches In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36226 Michelle Spinney changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |mspinney at clamsnet.org -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 4 21:15:51 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 04 Mar 2024 20:15:51 +0000 Subject: [Koha-bugs] [Bug 36227] New: No warning if placing hold on item group with no items Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36227 Bug ID: 36227 Summary: No warning if placing hold on item group with no items Change sponsored?: --- Product: Koha Version: master Hardware: All OS: All Status: NEW Severity: enhancement Priority: P5 - low Component: Hold requests Assignee: koha-bugs at lists.koha-community.org Reporter: hebah at bywatersolutions.com QA Contact: testopia at bugs.koha-community.org CC: gmcharlt at gmail.com It is currently possible to place a group-level hold on an item group with no items in it, both from the staff client and OPAC. This results in a hold that is not fillable unless the item group is deleted or an item is added into it. A warning would be helpful so patrons aren't left with an unfillable hold. -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 4 21:17:22 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 04 Mar 2024 20:17:22 +0000 Subject: [Koha-bugs] [Bug 33703] Entering dates should be more flexible accepting different entry formats In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33703 Lucas Gass changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #161619|0 |1 is obsolete| | --- Comment #45 from Lucas Gass --- Created attachment 162726 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162726&action=edit Bug 33703: Add Masikto core/kit for date masking To test: 1. Apply patch 2. Restart all, clear browser cache 3. In the staff interface start testing some flatpickr instances with direct inputs. 4. Try entering your dates without delimiters, '/' or '-', or '.'. 5. Make sure the dates are well formed. 6. Test with each of dateformat's Koha supports. ( system preference 'dateformat'). 7. Add/edit an item with the dateaccessioned.pl plugin loaded, making the dates are well formed. 8. Make an item bookable by going to the item tab of a record and setting at least 1 item to "Bookable:". 9. Now "Place booking", which should trigger a modal. 10. In the "Period" date picker, which is a range, the dates should NOT be formatted. 11. Log in to the OPAC and try some date pickers ( self reg/borrower mod/ect ) Some places to test: -Patron record date of birth -Patron record registration date -Patron record expiry date -Checkouts, manually set a due date -Patron category, enrollment period -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 4 21:17:24 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 04 Mar 2024 20:17:24 +0000 Subject: [Koha-bugs] [Bug 33703] Entering dates should be more flexible accepting different entry formats In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33703 Lucas Gass changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #161663|0 |1 is obsolete| | --- Comment #46 from Lucas Gass --- Created attachment 162727 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162727&action=edit Bug 33703: Add time support -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 4 21:17:27 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 04 Mar 2024 20:17:27 +0000 Subject: [Koha-bugs] [Bug 33703] Entering dates should be more flexible accepting different entry formats In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33703 Lucas Gass changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #162722|0 |1 is obsolete| | --- Comment #47 from Lucas Gass --- Created attachment 162728 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162728&action=edit Bug 33703: Don't use Maskito when picking a range -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 4 21:17:30 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 04 Mar 2024 20:17:30 +0000 Subject: [Koha-bugs] [Bug 33703] Entering dates should be more flexible accepting different entry formats In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33703 Lucas Gass changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #162723|0 |1 is obsolete| | --- Comment #48 from Lucas Gass --- Created attachment 162729 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162729&action=edit Bug 33703: Add Maskito to dateaccessioned.pl -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 4 21:17:32 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 04 Mar 2024 20:17:32 +0000 Subject: [Koha-bugs] [Bug 33703] Entering dates should be more flexible accepting different entry formats In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33703 Lucas Gass changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #162724|0 |1 is obsolete| | --- Comment #49 from Lucas Gass --- Created attachment 162730 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162730&action=edit Bug 33703: Add Maskito support for OPAC -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 4 21:17:35 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 04 Mar 2024 20:17:35 +0000 Subject: [Koha-bugs] [Bug 33703] Entering dates should be more flexible accepting different entry formats In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33703 Lucas Gass changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #162725|0 |1 is obsolete| | --- Comment #50 from Lucas Gass --- Created attachment 162731 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162731&action=edit Bug 33703: Add Maskito to about.tt -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 4 21:36:12 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 04 Mar 2024 20:36:12 +0000 Subject: [Koha-bugs] [Bug 36227] No warning if placing hold on item group with no items In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36227 Miranda Nero changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |mnero at oslri.net -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 4 21:36:20 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 04 Mar 2024 20:36:20 +0000 Subject: [Koha-bugs] [Bug 36225] Koha should warn if item group with holds on that group is being deleted In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36225 Miranda Nero changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |mnero at oslri.net -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 4 21:46:19 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 04 Mar 2024 20:46:19 +0000 Subject: [Koha-bugs] [Bug 36228] New: Dono XPLOIT Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36228 Bug ID: 36228 Summary: Dono XPLOIT Change sponsored?: --- Product: Koha Version: unspecified Hardware: All OS: All Status: NEW Severity: enhancement Priority: P5 - low Component: Database Assignee: koha-bugs at lists.koha-community.org Reporter: laraja7983 at xedutv.com QA Contact: testopia at bugs.koha-community.org Created attachment 162732 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162732&action=edit donospc Dono XPLOIT -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Mon Mar 4 21:51:51 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 04 Mar 2024 20:51:51 +0000 Subject: [Koha-bugs] [Bug 31391] Staff-side recalls In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31391 Aleisha Amohia changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Failed QA |ASSIGNED --- Comment #65 from Aleisha Amohia --- Thanks all I agree with your suggestions and am working on implementing these. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 4 21:52:28 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 04 Mar 2024 20:52:28 +0000 Subject: [Koha-bugs] [Bug 32142] Add HoldFeeMode option "if all items are checked out OR the record has at least one hold already" In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=32142 Aleisha Amohia changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Needs Signoff |Failed QA -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 4 22:00:25 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 04 Mar 2024 21:00:25 +0000 Subject: [Koha-bugs] [Bug 36193] CSRF - Code review missed In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36193 --- Comment #4 from Tomás Cohen Arazi --- Created attachment 162733 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162733&action=edit Bug 36193: Fix acq receiving This patch addresses the CSRF error when receiving in acquisitions. To test: 1. Have at least one order to receive 2. Follow the steps to receive them 3. Have the logs open: $ ktd --shell k$ tail -f /var/log/koha/kohadev/*.log 4. Click to confirm receipt => FAIL: An error modal is displayed => FAIL: There's an error about missing CSRF token in POST 5. Apply this patch 6. Reload everything: k$ restart_all 7. Repeat 1-4 => SUCCESS: Receipt works :-D => SUCCESS: No error log 8. Sign off :-D Signed-off-by: Tomas Cohen Arazi -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Mon Mar 4 23:38:39 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 04 Mar 2024 22:38:39 +0000 Subject: [Koha-bugs] [Bug 36193] CSRF - Code review missed In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36193 --- Comment #5 from Tomás Cohen Arazi --- Created attachment 162734 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162734&action=edit Bug 36193: cud- treatment for Acq order receipt cancelling Signed-off-by: Tomas Cohen Arazi -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Mon Mar 4 23:59:13 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 04 Mar 2024 22:59:13 +0000 Subject: [Koha-bugs] [Bug 36066] REST API: We should only allow deleting cancelled order lines In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36066 --- Comment #7 from Victor Grousset/tuxayo --- Created attachment 162735 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162735&action=edit Bug 36066: Add tests Signed-off-by: David Nind -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 4 23:59:16 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 04 Mar 2024 22:59:16 +0000 Subject: [Koha-bugs] [Bug 36066] REST API: We should only allow deleting cancelled order lines In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36066 Victor Grousset/tuxayo changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #162276|0 |1 is obsolete| | --- Comment #8 from Victor Grousset/tuxayo --- Created attachment 162736 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162736&action=edit Bug 36066: Only allow cancelled order deletion in API Note: I had trouble with listing orders in API without status, although formally not required according specs. Test plan: Run t/db_dependent/api/v1/acquisitions_orders.t Signed-off-by: David Nind -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 5 00:42:20 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 04 Mar 2024 23:42:20 +0000 Subject: [Koha-bugs] [Bug 34755] Error authenticating to external OpenID Connect (OIDC) identity provider : wrong_csrf_token In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=34755 --- Comment #31 from David Cook --- (In reply to Olivier Hubert from comment #30) > This looks like it's fixed, in 23.11.x. With the patches from this bug and > 36098, I was not able to reproduce the issue. SSO works as it should. > > Thanks! Great! Want to sign this one off? -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 5 01:32:39 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 05 Mar 2024 00:32:39 +0000 Subject: [Koha-bugs] [Bug 35799] Loading svc/cataloguing/framework bottlenecks advanced cataloging editor In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35799 --- Comment #1 from Phil Ringnalda --- Actually, since we die with an uncaught exception with no notification and nothing the user can do but reload or close the tab, there's no reason why we should be using "waitSeconds: 30" when 0 (== infinite) exists. -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Tue Mar 5 01:57:43 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 05 Mar 2024 00:57:43 +0000 Subject: [Koha-bugs] [Bug 35114] Calculation around basket details and basketgroup not correct In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35114 Myka Kennedy Stephens changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |mkstephens at fosgail.org --- Comment #16 from Myka Kennedy Stephens --- Hello. I'm not clearly seeing the issue that this bug attempts to address, so it is difficult to determine if the patch is doing what it is supposed to. To replicate the issue, I did the following (according to the proposed test plan): 1. Created a new vendor with a 9% discount 2. Created a new basket, added an item from a new record - No other details except Koha item type entered for the item - Under accounting details, I entered a vendor price of $15.90 - At this point, the auto calculated budgeted cost and total show $14.46 3. Save item and return to basket table. All columns in table for budgeted cost and total tax show $14.47 - The only way I can see the 1 cent difference is if I attempt to modify the item order details and return to the previous screen (neworderempty.pl) 4. When creating and viewing a basket group, I only see $14.47 as the cost When I applied the patch, the auto calculated cost in the accounting details on neworderempty.pl still showed $14.46 while the basket tables all show $14.47. Where I did find $14.46 listed was when I created an invoice and attempted to receive the shipment. On the pending orders table in parcel.pl, the unit cost and order cost show up as $14.46. When you click the link to receive, the accounting details on the right side of the pop-up show $14.47 as the budgeted cost. Applying the patch did not change this behavior. I hope these notes are helpful! -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 5 02:44:23 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 05 Mar 2024 01:44:23 +0000 Subject: [Koha-bugs] [Bug 34631] Independentbranches - Non-superuser should not be able to write Additional contents for other branches In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=34631 Myka Kennedy Stephens changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Needs Signoff |Patch doesn't apply CC| |mkstephens at fosgail.org --- Comment #3 from Myka Kennedy Stephens --- Attempted to test using git bz with Koha Testing Docker. Received following error: Applying: Bug 34631: Independentbranches - Non-superuser should not be able to write Additional contents for other branches Using index info to reconstruct a base tree... M koha-tmpl/intranet-tmpl/prog/en/modules/tools/additional-contents.tt M tools/additional-contents.pl Falling back to patching base and 3-way merge... Auto-merging tools/additional-contents.pl CONFLICT (content): Merge conflict in tools/additional-contents.pl Auto-merging koha-tmpl/intranet-tmpl/prog/en/modules/tools/additional-contents.tt CONFLICT (content): Merge conflict in koha-tmpl/intranet-tmpl/prog/en/modules/tools/additional-contents.tt error: Failed to merge in the changes. Patch failed at 0001 Bug 34631: Independentbranches - Non-superuser should not be able to write Additional contents for other branches -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 5 04:37:19 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 05 Mar 2024 03:37:19 +0000 Subject: [Koha-bugs] [Bug 36066] REST API: We should only allow deleting cancelled order lines In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36066 Victor Grousset/tuxayo changed: What |Removed |Added ---------------------------------------------------------------------------- QA Contact| |victor at tuxayo.net Status|Signed Off |Failed QA CC| |victor at tuxayo.net --- Comment #9 from Victor Grousset/tuxayo --- Hi :) After moving the tests to their own commit, I was able to run them without the implementation. And it turns out the tests pass :o > $t->delete_ok( "//$unauth_userid:$password@/api/v1/acquisitions/orders/" . $order->ordernumber )->status_is(403); It's likely because of $unauth_userid is used instead of $auth_userid. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 5 05:10:27 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 05 Mar 2024 04:10:27 +0000 Subject: [Koha-bugs] [Bug 36066] REST API: We should only allow deleting cancelled order lines In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36066 --- Comment #10 from Victor Grousset/tuxayo --- Another thing that made it slip unnoticed is the return code being the same for not having the right permission and trying to delete something not in the right state for deletion. This is totally out of this ticket: Isn't there any code to differential these two things? I'm just asking to know if I should open a ticket or if there is really nothing to do about this and just move on. https://en.wikipedia.org/wiki/List_of_HTTP_status_codes#4xx_client_errors - maybe moving permission failure response to 401? nope, 401 is super specific so out of our case: «The response must include a WWW-Authenticate header field containing a challenge applicable to the requested resource» - «403 [...] user not having the necessary permissions for a resource or needing an account of some sort, or attempting a prohibited action (e.g. creating a duplicate record where only one is allowed).» Ok it seems that's how 403 was made, grouping lack of permission and prohibited action by business rules :( -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 5 05:49:59 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 05 Mar 2024 04:49:59 +0000 Subject: [Koha-bugs] [Bug 36229] New: koha-run-backups should be first daily job Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36229 Bug ID: 36229 Summary: koha-run-backups should be first daily job Change sponsored?: --- Product: Koha Version: master Hardware: All OS: All Status: NEW Severity: minor Priority: P5 - low Component: Architecture, internals, and plumbing Assignee: koha-bugs at lists.koha-community.org Reporter: dcook at prosentient.com.au QA Contact: testopia at bugs.koha-community.org There's a couple of reasons why koha-run-backups should be the first job in /etc/cron.daily/koha-common. 1. It takes a backup before running scripts that change database contents. If there is a problem with those scripts, you'll have a very recent backup on which to fallback. 2. It's a resource intensive job. If you have a lot of Koha instances, this means you're running your most intensive job at the end of the job run, which might be a lot later in the day than you anticipate. (Of course, you can update /etc/crontab to change when /etc/cron.daily is run, but this will help reduce impact in the meantime.) -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 5 07:25:33 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 05 Mar 2024 06:25:33 +0000 Subject: [Koha-bugs] [Bug 36230] New: Search function does not work properly with sinhala in OPAC Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36230 Bug ID: 36230 Summary: Search function does not work properly with sinhala in OPAC Change sponsored?: --- Product: Koha Version: 23.05 Hardware: PC OS: Linux Status: NEW Severity: enhancement Priority: P5 - low Component: Searching Assignee: koha-bugs at lists.koha-community.org Reporter: padmathilakevinavi at gmail.com QA Contact: testopia at bugs.koha-community.org In the OPAC search function, If I search with an English title, the relevant books will display with the key word in red, by default 20 records per page. But if I search in sinhala title book, it will display wrong results though the book is there in the database. If I search for an unavailable book, without giving an error message, it display wrong search results. How to fix this issue? -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 5 07:26:17 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 05 Mar 2024 06:26:17 +0000 Subject: [Koha-bugs] [Bug 36230] Search function does not work properly with sinhala in OPAC In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36230 Vinavi changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |padmathilakevinavi at gmail.co | |m -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 5 07:43:35 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 05 Mar 2024 06:43:35 +0000 Subject: [Koha-bugs] [Bug 36231] New: Koha Not Calculating in Fine Amount Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36231 Bug ID: 36231 Summary: Koha Not Calculating in Fine Amount Change sponsored?: --- Product: Koha Version: 23.05 Hardware: All OS: Linux Status: NEW Severity: enhancement Priority: P5 - low Component: Circulation Assignee: koha-bugs at lists.koha-community.org Reporter: lalgim at gmail.com QA Contact: testopia at bugs.koha-community.org CC: gmcharlt at gmail.com, kyle.m.hall at gmail.com Koha Not Calculating in Fine Amount.Koha not calculating overdue despite showing item overdue and having calculate and charge policy activated and manually running fine.pl -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 5 07:52:03 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 05 Mar 2024 06:52:03 +0000 Subject: [Koha-bugs] [Bug 36130] ILL batches table not showing all batches In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36130 Victor Grousset/tuxayo changed: What |Removed |Added ---------------------------------------------------------------------------- QA Contact| |victor at tuxayo.net --- Comment #4 from Victor Grousset/tuxayo --- > - Visit ILL batches page: > /cgi-bin/koha/ill/ill-requests.pl?method=batch_list > - Notice only 20 batches show. hmm, I got a mostly empty page with just "new ILL request" and "List requests" Is that the right URL? ↓↓↓↓ http://localhost:8081/cgi-bin/koha/ill/ill-requests.pl?method=batch_list - no server log error - no JS error - illbatches table is populated with 21 rows - services where restarted after setting up ILL - ILL home looks about right (http://localhost:8081/cgi-bin/koha/ill/ill-requests.pl) Any hint of some implicit step that I would have missed? -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 5 08:12:09 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 05 Mar 2024 07:12:09 +0000 Subject: [Koha-bugs] [Bug 36111] 856$h should not appear as a link in detailed record In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36111 Victor Grousset/tuxayo changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |victor at tuxayo.net --- Comment #12 from Victor Grousset/tuxayo --- > For some reason, when I signed off the patch the test plan was not > included. I have amended the patch to include a description and > have added the (very good) test plan. Thanks David for the help :) @Matthias I think that happens when the test plan is not written in the commit message but written in bugzilla's UI/git-bz when attaching a patch. The test plan needs to be in the commit message to be preserved between signoffs and in the Koha commit history. --- If that can help someone to review this, here a git command to show the diff with additional colors for moved lines. To go more quickly and just checking that part of the stuff is just moved and not new or totally removed. git show --color-moved --color-moved-ws=allow-indentation-change That's was still not enough for me to be able to get a good grasp of this one, sorry ^^" -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 5 09:54:19 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 05 Mar 2024 08:54:19 +0000 Subject: [Koha-bugs] [Bug 32934] SIP checkouts using "no block" flag have a calculated due rather than the specified due date In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=32934 Lari Strand changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |lmstrand at gmail.com --- Comment #3 from Lari Strand --- Patch doesn't apply to master/23x. Applied it to 22.11 and seems to be working ok. -- You are receiving this mail because: You are watching all bug changes. From jops at riseup.net Tue Mar 5 10:20:54 2024 From: jops at riseup.net (jops) Date: Tue, 5 Mar 2024 10:20:54 +0100 Subject: [Koha-bugs] Field userid is not valid (probably not unique), after login In-Reply-To: <8c3d51a0-9bf7-45a3-bab6-e92c0e8075dc@riseup.net> References: <8c3d51a0-9bf7-45a3-bab6-e92c0e8075dc@riseup.net> Message-ID: <4ab8ded6-c7ca-42b3-937e-52cd0573b66e@riseup.net> On 3/1/24 11:27, jops via Koha-bugs wrote: > Hi, > we are migrating server from ola.bida.im (koha version 20.11.03-1) to > bib.bida.im (koha version 23.11.02-1). > The search seams ok, but when we enter in bib-intra.bida.im we have an > 500 internal server error with this message log in intranet-error.log > > [Fri Mar 01 10:17:37.076210 2024] [cgi:error] [pid 233068] [client > 46.255.84.17:65195] AH01215: [Field userid is not valid (probably not > unique)]: /usr/share/koha/intranet/cgi-bin/mainpage.pl, referer: > https://bib-intra.bida.im/cgi-bin/koha/mainpage.pl > [Fri Mar 01 10:17:37.223900 2024] [cgi:error] [pid 233068] [client > 46.255.84.17:65195] End of script output before headers: mainpage.pl, > referer: https://bib-intra.bida.im/cgi-bin/koha/mainpage.pl > > can you help us? The problem was the presence of an underscore char _ in the userid. By removing it, it works -- jops GPG keys available via keyservers https://keys.openpgp.org/search?q=jops%40riseup.net https://keys.openpgp.org/vks/v1/by-fingerprint/32D254CF0B219482E28909CDC2FF3AC90AFDD78A From bugzilla-daemon at bugs.koha-community.org Tue Mar 5 10:32:46 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 05 Mar 2024 09:32:46 +0000 Subject: [Koha-bugs] [Bug 36221] Improve styling of Standard backend create form In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36221 Martin Renvoize changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |oleonard at myacpl.org -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 5 10:44:55 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 05 Mar 2024 09:44:55 +0000 Subject: [Koha-bugs] [Bug 36232] New: Updating database structure Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36232 Bug ID: 36232 Summary: Updating database structure Change sponsored?: --- Product: Koha Version: 23.11 Hardware: All OS: All Status: NEW Severity: enhancement Priority: P5 - low Component: Installation and upgrade (web-based installer) Assignee: koha-bugs at lists.koha-community.org Reporter: mmagori at bugando.ac.tz QA Contact: testopia at bugs.koha-community.org CC: gmcharlt at gmail.com Upgrade to 23.11.02.002 [08:25:15]: Bug 34979 - Fix system preference discrepancies ERROR: {UNKNOWN}: DBI Exception: DBD::mysql::db do failed: Duplicate entry 'OAI-PMH:AutoUpdateSetsEmbedItemData' for key 'systempreferences.PRIMARY' at /usr/share/koha/lib/C4/Installer.pm line 741 Fix mistakes in system preferences, if necessary: ERROR: {UNKNOWN}: DBI Exception: DBD::mysql::db do failed: Duplicate entry 'OAI-PMH:AutoUpdateSetsEmbedItemData' for key 'systempreferences.PRIMARY' at /usr/share/koha/lib/C4/Installer.pm line 741 -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 5 11:08:15 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 05 Mar 2024 10:08:15 +0000 Subject: [Koha-bugs] [Bug 36228] SPAM In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36228 Katrin Fischer changed: What |Removed |Added ---------------------------------------------------------------------------- Summary|Dono XPLOIT |SPAM Status|NEW |RESOLVED Resolution|--- |INVALID -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 5 11:40:57 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 05 Mar 2024 10:40:57 +0000 Subject: [Koha-bugs] [Bug 32934] SIP checkouts using "no block" flag have a calculated due rather than the specified due date In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=32934 Kyle M Hall changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |Needs Signoff -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 5 11:40:59 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 05 Mar 2024 10:40:59 +0000 Subject: [Koha-bugs] [Bug 32934] SIP checkouts using "no block" flag have a calculated due rather than the specified due date In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=32934 Kyle M Hall changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #146467|0 |1 is obsolete| | --- Comment #4 from Kyle M Hall --- Created attachment 162737 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162737&action=edit Bug 32934: Correctly honor the no block due date for SIP checkout messages -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 5 12:08:34 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 05 Mar 2024 11:08:34 +0000 Subject: [Koha-bugs] [Bug 36066] REST API: We should only allow deleting cancelled order lines In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36066 --- Comment #11 from Tomás Cohen Arazi --- (In reply to Victor Grousset/tuxayo from comment #10) > Another thing that made it slip unnoticed is the return code being the same > for not having the right permission and trying to delete something not in > the right state for deletion. Good catch! > This is totally out of this ticket: Isn't there any code to differential > these two things? I'm just asking to know if I should open a ticket or if > there is really nothing to do about this and just move on. We use 409 (Conflict) for such cases: "Indicates that the request could not be processed because of conflict in the current state of the resource, such as an edit conflict between multiple simultaneous updates." Try ``` cd api/v1/swagger/paths git grep 409 ``` Best regards -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 5 13:13:56 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 05 Mar 2024 12:13:56 +0000 Subject: [Koha-bugs] [Bug 36066] REST API: We should only allow deleting cancelled order lines In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36066 Marcel de Rooy changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Failed QA |Signed Off -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 5 13:13:58 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 05 Mar 2024 12:13:58 +0000 Subject: [Koha-bugs] [Bug 36066] REST API: We should only allow deleting cancelled order lines In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36066 Marcel de Rooy changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #162735|0 |1 is obsolete| | --- Comment #12 from Marcel de Rooy --- Created attachment 162738 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162738&action=edit Bug 36066: Add tests Signed-off-by: David Nind Signed-off-by: Marcel de Rooy [EDIT] As Victor discovered, the test with status new in subtest 'delete' needed the authorised user now. Test plan: Run t/db_dependent/api/v1/acquisitions_orders.t Without the follow-up patch this should FAIL. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 5 13:14:01 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 05 Mar 2024 12:14:01 +0000 Subject: [Koha-bugs] [Bug 36066] REST API: We should only allow deleting cancelled order lines In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36066 Marcel de Rooy changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #162736|0 |1 is obsolete| | --- Comment #13 from Marcel de Rooy --- Created attachment 162739 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162739&action=edit Bug 36066: Only allow cancelled order deletion in API Note: I had trouble with listing orders in API without status, although formally not required according specs. Test plan: Run t/db_dependent/api/v1/acquisitions_orders.t Signed-off-by: Marcel de Rooy Signed-off-by: David Nind -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 5 13:14:45 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 05 Mar 2024 12:14:45 +0000 Subject: [Koha-bugs] [Bug 36066] REST API: We should only allow deleting cancelled order lines In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36066 --- Comment #14 from Marcel de Rooy --- (In reply to Victor Grousset/tuxayo from comment #9) > It's likely because of $unauth_userid is used instead of $auth_userid. Thanks for catching that. Fixed now. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 5 13:16:46 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 05 Mar 2024 12:16:46 +0000 Subject: [Koha-bugs] [Bug 36066] REST API: We should only allow deleting cancelled order lines In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36066 --- Comment #15 from Marcel de Rooy --- (In reply to Victor Grousset/tuxayo from comment #10) > Another thing that made it slip unnoticed is the return code being the same > for not having the right permission and trying to delete something not in > the right state for deletion. Yeah we also use 409 in the REST API. Mostly when trying to add a duplicate. In this case I have my doubts if we should go there now. I am just reading it like You are not authorized to delete a non-cancelled order line. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 5 13:29:00 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 05 Mar 2024 12:29:00 +0000 Subject: [Koha-bugs] [Bug 36066] REST API: We should only allow deleting cancelled order lines In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36066 --- Comment #16 from Tomás Cohen Arazi --- (In reply to Tomás Cohen Arazi from comment #11) > > We use 409 (Conflict) for such cases: > > "Indicates that the request could not be processed because of conflict in > the current state of the resource, such as an edit conflict between multiple > simultaneous updates." > (In reply to Marcel de Rooy from comment #15) > > Yeah we also use 409 in the REST API. Mostly when trying to add a duplicate. > In this case I have my doubts if we should go there now. I am just reading > it like You are not authorized to delete a non-cancelled order line. This is clearly a case for the 409, as the resource status is conflicting with the requested action. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 5 13:40:37 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 05 Mar 2024 12:40:37 +0000 Subject: [Koha-bugs] [Bug 35100] Items assigned to StockRotation do not advance if a reserve is triggered before the initial transfer In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35100 Nick Clemens changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Failed QA |Signed Off -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 5 13:40:39 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 05 Mar 2024 12:40:39 +0000 Subject: [Koha-bugs] [Bug 35100] Items assigned to StockRotation do not advance if a reserve is triggered before the initial transfer In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35100 --- Comment #24 from Nick Clemens --- Created attachment 162740 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162740&action=edit Bug 35100: (follow-up) Fix test Previous patches changed the return values, just needed to update expectations -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 5 13:40:41 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 05 Mar 2024 12:40:41 +0000 Subject: [Koha-bugs] [Bug 35100] Items assigned to StockRotation do not advance if a reserve is triggered before the initial transfer In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35100 --- Comment #25 from Nick Clemens --- Created attachment 162741 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162741&action=edit Bug 35100: (follow-up) Tidy -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 5 13:41:05 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 05 Mar 2024 12:41:05 +0000 Subject: [Koha-bugs] [Bug 35100] Items assigned to StockRotation do not advance if a reserve is triggered before the initial transfer In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35100 Nick Clemens changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #160687|0 |1 is obsolete| | Attachment #160688|0 |1 is obsolete| | Attachment #160689|0 |1 is obsolete| | Attachment #160690|0 |1 is obsolete| | Attachment #162740|0 |1 is obsolete| | Attachment #162741|0 |1 is obsolete| | --- Comment #26 from Nick Clemens --- Created attachment 162742 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162742&action=edit Bug 35100: Unit tests This patch adds a unit test to ensure StockrotationAdvance transfers are not cancelled from request_transfer when called with 'replace'. Signed-off-by: Nick Clemens -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 5 13:41:07 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 05 Mar 2024 12:41:07 +0000 Subject: [Koha-bugs] [Bug 35100] Items assigned to StockRotation do not advance if a reserve is triggered before the initial transfer In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35100 --- Comment #27 from Nick Clemens --- Created attachment 162743 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162743&action=edit Bug 35100: Prevent StockrotationAdvance transfers from being cancelled ModItemTransfer is still very heavy handed and outright overrules existing transfers in the queue. For StockrotationAdvance transfers it's important that they remain in the queue to get actioned later, even if a higher precident transfer is actions in the interim. This patch adds a clause to the cancellation call within request_transfer such that StockrationAdvance transfers are left in tact for the next time the item is checked in. Test plan 1) Item is added to stock rotation 2) The cronjob creates a 'StockRotationAdvance' transfer 3) The item is checked in, which initiates the transfer, however, a hold is triggered 4) The hold is confirmed, which replaces the StockRotationAdvance 5) The item is checked out 6) The item is checked in, which initiates the transfer again 7) The item is checked in at it's destination and the StockrotationAdvance transfer has the proper date arrived date set. Signed-off-by: Nick Clemens -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 5 13:41:10 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 05 Mar 2024 12:41:10 +0000 Subject: [Koha-bugs] [Bug 35100] Items assigned to StockRotation do not advance if a reserve is triggered before the initial transfer In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35100 --- Comment #28 from Nick Clemens --- Created attachment 162744 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162744&action=edit Bug 35100: Various fixes 1) Don't automagically always set a transfer to in transit on checkin.. wait for the user to actually confirm that's the case 2) New transfers triggered by a hold should take precidence, so hide transfers for any other reason from display 3) Update get_transfer and get_transfers to ensure ordering isn't lost when prefetch is used and add tests for this Signed-off-by: Nick Clemens -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 5 13:41:12 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 05 Mar 2024 12:41:12 +0000 Subject: [Koha-bugs] [Bug 35100] Items assigned to StockRotation do not advance if a reserve is triggered before the initial transfer In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35100 --- Comment #29 from Nick Clemens --- Created attachment 162745 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162745&action=edit Bug 35100: Revert change to request_transfer This patch reverts the change to request_transfer, opting to tackle the StockRotationAdvance requirement to stay in place in ModItemTransfer itself. We also add a FIXME to RotatingCollections.. I'll look to removing that on another bug to reduce the scope of this one. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 5 13:41:14 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 05 Mar 2024 12:41:14 +0000 Subject: [Koha-bugs] [Bug 35100] Items assigned to StockRotation do not advance if a reserve is triggered before the initial transfer In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35100 --- Comment #30 from Nick Clemens --- Created attachment 162746 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162746&action=edit Bug 35100: (follow-up) Fix test Previous patches changed the return values, just needed to update expectations -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 5 13:41:16 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 05 Mar 2024 12:41:16 +0000 Subject: [Koha-bugs] [Bug 35100] Items assigned to StockRotation do not advance if a reserve is triggered before the initial transfer In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35100 --- Comment #31 from Nick Clemens --- Created attachment 162747 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162747&action=edit Bug 35100: (follow-up) Tidy -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 5 13:41:58 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 05 Mar 2024 12:41:58 +0000 Subject: [Koha-bugs] [Bug 35100] Items assigned to StockRotation do not advance if a reserve is triggered before the initial transfer In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35100 --- Comment #32 from Nick Clemens --- (In reply to Marcel de Rooy from comment #23) > QA Comment: > I would recommend squashing here. Some changes are undone in followups. Fixed test and tidied, leaving squashing for Martin -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 5 14:18:37 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 05 Mar 2024 13:18:37 +0000 Subject: [Koha-bugs] [Bug 30047] Add a field to auth_header to record main heading as text string In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30047 Michelle Spinney changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |mspinney at clamsnet.org -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 5 14:31:07 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 05 Mar 2024 13:31:07 +0000 Subject: [Koha-bugs] [Bug 34755] Error authenticating to external OpenID Connect (OIDC) identity provider : wrong_csrf_token In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=34755 Olivier Hubert changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #162710|0 |1 is obsolete| | --- Comment #32 from Olivier Hubert --- Created attachment 162748 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162748&action=edit Bug 34755: Backport Koha::Token change from bug 34478 This change includes the Koha::Token changes which uses Koha::Session for generating and checking CSRF tokens. 0. Apply the patch and koha-plack --restart kohadev 1. Setup Keycloak OIDC SSO according to "Testing SSO" wiki guide 2. In a regular window go to http://localhost:8080 3. In a private window go to http://localhost:8080 and click the SSO "Log in with..." button, but don't log into Keycloak 4. In the regular window, login locally, and navigate to 5-6 pages 5. In the private window, log into Keycloak 6. Note that you are redirected back to Koha and logged in successfully (no wrong_csrf_token error). Signed-off-by: Olivier Hubert -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 5 15:10:11 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 05 Mar 2024 14:10:11 +0000 Subject: [Koha-bugs] [Bug 34972] Canceling a waiting hold from the holds over tab can make the next hold unfillable In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=34972 Christine changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |chlee at pascolibraries.org -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 5 15:24:04 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 05 Mar 2024 14:24:04 +0000 Subject: [Koha-bugs] [Bug 36193] CSRF - Code review missed In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36193 --- Comment #6 from Tomás Cohen Arazi --- Created attachment 162749 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162749&action=edit Bug 36193: cud- treatment for cash_registers.pl Signed-off-by: Tomas Cohen Arazi -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 5 15:30:13 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 05 Mar 2024 14:30:13 +0000 Subject: [Koha-bugs] [Bug 33268] Overlay rules don't work correctly when source is set to * In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33268 David Gustafsson changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Failed QA |Needs Signoff --- Comment #32 from David Gustafsson --- @Katrin Fischer Sorry about the late reply. 1) I don't know if I can summarize it better than the current commit message, perhaps I could add "instead of falling back to the default rule (overwrite), which was the previous behavior. Previously the wildcard filter rules where only applied if no other filter value would match. The added tests should also be equivalent to performing manual testing, so don't really see why we would need both, but I guess I could add some simple case to be performed in the staff interface. 2) Gave this some thought and I think there is a relatively simple way to add rules depending on existing rules that would result in this patch not at all affecting behavior for current used defined rules. Will add a database migration for this. 3) Haven't done this for any other patch, so a little bit uncertain what it should contain. About your rules the wildcard filter rule will be merged in to the rule-sets of both the other rules. If the filter value is z3950 rule 2 and 4 will be applied, if batchmod 4 and five. If instead of 245 you had *, the wildcard filter rule (for tag 300) would not be included since the rule for z3950 and batchmod would always match, and rules with a specific filter value take precedence over wildcard filter rules if they match. (As summarized with "Fallback to overlay rules with wildcard filter if no match found for exact filter match." in the commit message. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 5 15:33:29 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 05 Mar 2024 14:33:29 +0000 Subject: [Koha-bugs] [Bug 36193] CSRF - Code review missed In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36193 --- Comment #7 from Tomás Cohen Arazi --- Created attachment 162750 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162750&action=edit Bug 36193: cud- treatment for credit_types.pl Signed-off-by: Tomas Cohen Arazi -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Tue Mar 5 15:41:04 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 05 Mar 2024 14:41:04 +0000 Subject: [Koha-bugs] [Bug 36193] CSRF - Code review missed In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36193 --- Comment #8 from Tomás Cohen Arazi --- Created attachment 162751 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162751&action=edit Bug 36193: cud- treatment for dedit_types.pl Signed-off-by: Tomas Cohen Arazi -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Tue Mar 5 15:47:05 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 05 Mar 2024 14:47:05 +0000 Subject: [Koha-bugs] [Bug 36193] CSRF - Code review missed In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36193 --- Comment #9 from Tomás Cohen Arazi --- Created attachment 162752 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162752&action=edit Bug 36193: cud- treatment for reset_confirmed on mappings.pl Signed-off-by: Tomas Cohen Arazi -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Tue Mar 5 15:52:10 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 05 Mar 2024 14:52:10 +0000 Subject: [Koha-bugs] [Bug 36233] New: Cannot search invoices if too many vendors Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36233 Bug ID: 36233 Summary: Cannot search invoices if too many vendors Change sponsored?: --- Product: Koha Version: master Hardware: All OS: All Status: NEW Severity: major Priority: P5 - low Component: Acquisitions Assignee: koha-bugs at lists.koha-community.org Reporter: nick at bywatersolutions.com QA Contact: testopia at bugs.koha-community.org When loading invoices.pl we get all vendors and build a dropdown for searching. In a system with many vendors this can cause slowness or crashes. -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Tue Mar 5 15:55:58 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 05 Mar 2024 14:55:58 +0000 Subject: [Koha-bugs] [Bug 36233] Cannot search invoices if too many vendors In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36233 Nick Clemens changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |Needs Signoff -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Tue Mar 5 15:55:59 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 05 Mar 2024 14:55:59 +0000 Subject: [Koha-bugs] [Bug 36233] Cannot search invoices if too many vendors In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36233 --- Comment #1 from Nick Clemens --- Created attachment 162753 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162753&action=edit Bug 36233: Use select2 to load vendors on invoice search This patch moves the dropdown to use select2 and avoids loading all vendors at page load. To test: 1 - Create some extra vendors in your system, ideally over 20 2 - Search for a vendor in acquisitions 3 - Click 'Invoices' 4 - Note the dropdown of all vendors 'Vendor:' in search bar on left 5 - The vendor you came from shoudl eb selected 6 - Apply patch 7 - Repeat 8 - Note only a partial list of vendors is loaded, confirm current vendor still selected 9 - Search in the dropdown and confirm vendors are returned 10 - Select a vendor and search 11 - confirm selection is retained -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Tue Mar 5 15:56:11 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 05 Mar 2024 14:56:11 +0000 Subject: [Koha-bugs] [Bug 36066] REST API: We should only allow deleting cancelled order lines In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36066 --- Comment #17 from Marcel de Rooy --- Created attachment 162754 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162754&action=edit Bug 36066: (follow-up) Move 403 to 409 when status ne cancelled Test plan: Run t/db_dependent/api/v1/acquisitions_orders.t Signed-off-by: Marcel de Rooy -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 5 15:56:57 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 05 Mar 2024 14:56:57 +0000 Subject: [Koha-bugs] [Bug 36066] REST API: We should only allow deleting cancelled order lines In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36066 --- Comment #18 from Marcel de Rooy --- (In reply to Tomás Cohen Arazi from comment #16) > This is clearly a case for the 409, as the resource status is conflicting > with the requested action. It wasnt so clear to me. But fixed now. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 5 15:59:20 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 05 Mar 2024 14:59:20 +0000 Subject: [Koha-bugs] [Bug 36193] CSRF - Code review missed In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36193 --- Comment #10 from Tomás Cohen Arazi --- Created attachment 162755 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162755&action=edit Bug 36193: cud- treatment for restrictions.pl Signed-off-by: Tomas Cohen Arazi -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Tue Mar 5 16:04:01 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 05 Mar 2024 15:04:01 +0000 Subject: [Koha-bugs] [Bug 36234] New: Language prefs cannot be modified Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36234 Bug ID: 36234 Summary: Language prefs cannot be modified Change sponsored?: --- Product: Koha Version: unspecified Hardware: All OS: All Status: ASSIGNED Severity: critical Priority: P5 - low Component: Staff interface Assignee: jonathan.druart at gmail.com Reporter: jonathan.druart at gmail.com QA Contact: testopia at bugs.koha-community.org CC: gmcharlt at gmail.com Depends on: 36084 commit d322494ef687f226b955f3c1b9212f4c48e62571 Bug 36084: svc - config/systempreferences Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36084 [Bug 36084] Pass CSRF token to SVC scripts (1/2) -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 5 16:04:01 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 05 Mar 2024 15:04:01 +0000 Subject: [Koha-bugs] [Bug 36084] Pass CSRF token to SVC scripts (1/2) In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36084 Jonathan Druart changed: What |Removed |Added ---------------------------------------------------------------------------- Blocks| |36234 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36234 [Bug 36234] Language prefs cannot be modified -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 5 16:05:56 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 05 Mar 2024 15:05:56 +0000 Subject: [Koha-bugs] [Bug 36234] Language prefs cannot be modified In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36234 Jonathan Druart changed: What |Removed |Added ---------------------------------------------------------------------------- Status|ASSIGNED |Needs Signoff -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 5 16:05:58 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 05 Mar 2024 15:05:58 +0000 Subject: [Koha-bugs] [Bug 36234] Language prefs cannot be modified In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36234 --- Comment #1 from Jonathan Druart --- Created attachment 162756 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162756&action=edit Bug 36234: Fix 'languages' prefs selection Test plan: Edit and save several types of sysprefs, reload the page to confirm they are correctly saved, or check their values in DB -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 5 16:09:18 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 05 Mar 2024 15:09:18 +0000 Subject: [Koha-bugs] [Bug 35100] Items assigned to StockRotation do not advance if a reserve is triggered before the initial transfer In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35100 Martin Renvoize changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #162742|0 |1 is obsolete| | --- Comment #33 from Martin Renvoize --- Created attachment 162757 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162757&action=edit Bug 35100: Unit tests This patch adds a unit test to ensure StockrotationAdvance transfers are not cancelled from request_transfer when called with 'replace'. Signed-off-by: Nick Clemens Signed-off-by: Martin Renvoize -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 5 16:09:20 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 05 Mar 2024 15:09:20 +0000 Subject: [Koha-bugs] [Bug 35100] Items assigned to StockRotation do not advance if a reserve is triggered before the initial transfer In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35100 Martin Renvoize changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #162743|0 |1 is obsolete| | --- Comment #34 from Martin Renvoize --- Created attachment 162758 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162758&action=edit Bug 35100: Prevent StockrotationAdvance transfers from being cancelled ModItemTransfer is still very heavy handed and outright overrules existing transfers in the queue. For StockrotationAdvance transfers it's important that they remain in the queue to get actioned later, even if a higher precident transfer is actions in the interim. This patch adds a clause to the cancellation call within request_transfer such that StockrationAdvance transfers are left in tact for the next time the item is checked in. Test plan 1) Item is added to stock rotation 2) The cronjob creates a 'StockRotationAdvance' transfer 3) The item is checked in, which initiates the transfer, however, a hold is triggered 4) The hold is confirmed, which replaces the StockRotationAdvance 5) The item is checked out 6) The item is checked in, which initiates the transfer again 7) The item is checked in at it's destination and the StockrotationAdvance transfer has the proper date arrived date set. Signed-off-by: Nick Clemens Signed-off-by: Martin Renvoize -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 5 16:09:23 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 05 Mar 2024 15:09:23 +0000 Subject: [Koha-bugs] [Bug 35100] Items assigned to StockRotation do not advance if a reserve is triggered before the initial transfer In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35100 Martin Renvoize changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #162744|0 |1 is obsolete| | --- Comment #35 from Martin Renvoize --- Created attachment 162759 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162759&action=edit Bug 35100: Various fixes 1) Don't automagically always set a transfer to in transit on checkin.. wait for the user to actually confirm that's the case 2) New transfers triggered by a hold should take precidence, so hide transfers for any other reason from display 3) Update get_transfer and get_transfers to ensure ordering isn't lost when prefetch is used and add tests for this Signed-off-by: Nick Clemens Signed-off-by: Martin Renvoize -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 5 16:09:26 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 05 Mar 2024 15:09:26 +0000 Subject: [Koha-bugs] [Bug 35100] Items assigned to StockRotation do not advance if a reserve is triggered before the initial transfer In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35100 Martin Renvoize changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #162745|0 |1 is obsolete| | --- Comment #36 from Martin Renvoize --- Created attachment 162760 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162760&action=edit Bug 35100: Revert change to request_transfer This patch reverts the change to request_transfer, opting to tackle the StockRotationAdvance requirement to stay in place in ModItemTransfer itself. We also add a FIXME to RotatingCollections.. I'll look to removing that on another bug to reduce the scope of this one. Signed-off-by: Martin Renvoize -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 5 16:09:29 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 05 Mar 2024 15:09:29 +0000 Subject: [Koha-bugs] [Bug 35100] Items assigned to StockRotation do not advance if a reserve is triggered before the initial transfer In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35100 Martin Renvoize changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #162746|0 |1 is obsolete| | --- Comment #37 from Martin Renvoize --- Created attachment 162761 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162761&action=edit Bug 35100: (follow-up) Fix test Previous patches changed the return values, just needed to update expectations Signed-off-by: Martin Renvoize -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 5 16:09:32 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 05 Mar 2024 15:09:32 +0000 Subject: [Koha-bugs] [Bug 35100] Items assigned to StockRotation do not advance if a reserve is triggered before the initial transfer In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35100 Martin Renvoize changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #162747|0 |1 is obsolete| | --- Comment #38 from Martin Renvoize --- Created attachment 162762 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162762&action=edit Bug 35100: (follow-up) Tidy Signed-off-by: Martin Renvoize -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 5 16:10:15 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 05 Mar 2024 15:10:15 +0000 Subject: [Koha-bugs] [Bug 35100] Items assigned to StockRotation do not advance if a reserve is triggered before the initial transfer In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35100 --- Comment #39 from Martin Renvoize --- Rebase is good, I tested.. Thanks for the follow-ups too which get the QA scripts happy again. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 5 16:15:08 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 05 Mar 2024 15:15:08 +0000 Subject: [Koha-bugs] [Bug 36234] Language prefs cannot be modified In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36234 PTFS Europe Sandboxes changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #162756|0 |1 is obsolete| | --- Comment #2 from PTFS Europe Sandboxes --- Created attachment 162763 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162763&action=edit Bug 36234: Fix 'languages' prefs selection Test plan: Edit and save several types of sysprefs, reload the page to confirm they are correctly saved, or check their values in DB Signed-off-by: Christian -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 5 16:15:44 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 05 Mar 2024 15:15:44 +0000 Subject: [Koha-bugs] [Bug 36234] Language prefs cannot be modified In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36234 Christian Stelzenmüller changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |christian.stelzenmueller at bs | |z-bw.de Status|Needs Signoff |Signed Off -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 5 16:21:40 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 05 Mar 2024 15:21:40 +0000 Subject: [Koha-bugs] [Bug 36235] New: System preferences chopping everything after a semicolon. Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36235 Bug ID: 36235 Summary: System preferences chopping everything after a semicolon. Change sponsored?: --- Product: Koha Version: master Hardware: All OS: All Status: NEW Severity: critical Priority: P5 - low Component: System Administration Assignee: koha-bugs at lists.koha-community.org Reporter: lucas at bywatersolutions.com QA Contact: testopia at bugs.koha-community.org CC: gmcharlt at gmail.com I noticed this with IntranetUserJS. To recreate: 1. Add some JS that includes a semicolon to IntranetUserJS: $(document).ready(function() { let my_old_cat = $('#categorycode_entry').val(); console.log(my_old_cat); $('#categorycode_entry').on('change' , function() { let my_new_cat = $('#categorycode_entry').val(); console.log( my_old_cat ); console.log( my_new_cat ); }); }); 2. Save and reload, or check in DB and you'll see this value: $(document).ready(function() { let my_old_cat = $('#categorycode_entry').val() To see in DB you can use: select value from systempreferences where variable = 'IntranetUserJS'; -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 5 16:28:31 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 05 Mar 2024 15:28:31 +0000 Subject: [Koha-bugs] [Bug 36235] System preferences chopping everything after a semicolon. In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36235 --- Comment #1 from Lucas Gass --- This doesn't effect only CodeMirror system preference but all that allow free text: I tested with AdditionalFieldsInZ3950ResultAuthSearch -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Tue Mar 5 16:28:59 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 05 Mar 2024 15:28:59 +0000 Subject: [Koha-bugs] [Bug 36159] Patron imports record a change for non-text columns that are not in the import file In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36159 Martin Renvoize changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |martin.renvoize at ptfs-europe | |.com --- Comment #5 from Martin Renvoize --- I think the defined check is there so we don't trigger warnings in the comparison... shouldn't we attempt to fix this at the import script level? -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 5 16:49:21 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 05 Mar 2024 15:49:21 +0000 Subject: [Koha-bugs] [Bug 33268] Overlay rules don't work correctly when source is set to * In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33268 --- Comment #33 from David Gustafsson --- Created attachment 162764 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162764&action=edit Bug 33268: If rules exists add rules sure to preserve current behaviour -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 5 16:49:43 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 05 Mar 2024 15:49:43 +0000 Subject: [Koha-bugs] [Bug 36236] New: minimum initial configuration Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36236 Bug ID: 36236 Summary: minimum initial configuration Change sponsored?: --- Product: Koha Version: 23.11 Hardware: All OS: Linux Status: NEW Severity: enhancement Priority: P5 - low Component: Installation and upgrade (web-based installer) Assignee: koha-bugs at lists.koha-community.org Reporter: giurassico at libero.it QA Contact: testopia at bugs.koha-community.org CC: gmcharlt at gmail.com Created attachment 162765 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162765&action=edit support I installed Koha latest release on a new VM, the operating system is UBUNTU 23.10 I carried out all the steps on the OS side and arrived at the WEB configuration http://192.168.116.11:8001/cgi-bin/koha/installer/install.pl I have carried out all the configuration steps with positive results When I attempted to run the last task: Initial Minimum Configuration I received the message an error occurred Error 500 Having not completed the step, I cannot log in and proceed with the construction of the new library If I try to relaunch http://192.168.116.11:8001/cgi-bin/koha/installer/install.pl I get two update database screens and by continuing through the requests I get to the login page but as I don't have the users I'm blocked -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 5 16:51:39 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 05 Mar 2024 15:51:39 +0000 Subject: [Koha-bugs] [Bug 33268] Overlay rules don't work correctly when source is set to * In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33268 David Gustafsson changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #162764|0 |1 is obsolete| | --- Comment #34 from David Gustafsson --- Created attachment 162766 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162766&action=edit Bug 33268: If rules exists add rules sure to preserve current behaviour -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 5 16:56:29 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 05 Mar 2024 15:56:29 +0000 Subject: [Koha-bugs] [Bug 36235] System preferences chopping everything after a semicolon. In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36235 --- Comment #2 from Jonathan Druart --- diff --git a/koha-tmpl/intranet-tmpl/prog/js/fetch/system-preferences-api-client.js b/koha-tmpl/intranet-tmpl/prog/js/fetch/system-preferences-api-client.js index 1b8634951b6..e2b9bcbac8a 100644 --- a/koha-tmpl/intranet-tmpl/prog/js/fetch/system-preferences-api-client.js +++ b/koha-tmpl/intranet-tmpl/prog/js/fetch/system-preferences-api-client.js @@ -32,7 +32,7 @@ export class SysprefAPIClient extends HttpClient { .map(variable => sysprefs[variable].length ? sysprefs[variable].map(value => - "%s=%s".format(variable, value) + "%s=%s".format(variable, encodeURIComponent(value)) ) : "%s=".format(variable) ) -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Tue Mar 5 16:56:58 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 05 Mar 2024 15:56:58 +0000 Subject: [Koha-bugs] [Bug 36224] It looks like spsuggest functionality was removed years ago, but the templates still refer to it In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36224 Lucas Gass changed: What |Removed |Added ---------------------------------------------------------------------------- Depends on| |2539 CC| |lucas at bywatersolutions.com Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=2539 [Bug 2539] kohaspsuggest is deprecated, notes outmoded -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 5 16:56:58 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 05 Mar 2024 15:56:58 +0000 Subject: [Koha-bugs] [Bug 2539] kohaspsuggest is deprecated, notes outmoded In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=2539 Lucas Gass changed: What |Removed |Added ---------------------------------------------------------------------------- Blocks| |36224 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36224 [Bug 36224] It looks like spsuggest functionality was removed years ago, but the templates still refer to it -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 5 16:57:44 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 05 Mar 2024 15:57:44 +0000 Subject: [Koha-bugs] [Bug 33296] Linker should search for authority records with an appropriate 008/14, 15, 16 value In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33296 --- Comment #2 from Phil Ringnalda --- But we do have the virtually unused LinkerOptions to let people opt in. -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Tue Mar 5 16:57:47 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 05 Mar 2024 15:57:47 +0000 Subject: [Koha-bugs] [Bug 36235] System preferences chopping everything after a semicolon. In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36235 Jonathan Druart changed: What |Removed |Added ---------------------------------------------------------------------------- Depends on| |36084 CC| |jonathan.druart at gmail.com Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36084 [Bug 36084] Pass CSRF token to SVC scripts (1/2) -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 5 16:57:47 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 05 Mar 2024 15:57:47 +0000 Subject: [Koha-bugs] [Bug 36084] Pass CSRF token to SVC scripts (1/2) In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36084 Jonathan Druart changed: What |Removed |Added ---------------------------------------------------------------------------- Blocks| |36235 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36235 [Bug 36235] System preferences chopping everything after a semicolon. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 5 16:58:39 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 05 Mar 2024 15:58:39 +0000 Subject: [Koha-bugs] [Bug 33268] Overlay rules don't work correctly when source is set to * In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33268 David Gustafsson changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #162766|0 |1 is obsolete| | --- Comment #35 from David Gustafsson --- Created attachment 162767 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162767&action=edit Bug 33268: If rules exists add rules to preserve current behaviour -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 5 16:59:02 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 05 Mar 2024 15:59:02 +0000 Subject: [Koha-bugs] [Bug 33268] Overlay rules don't work correctly when source is set to * In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33268 --- Comment #36 from David Gustafsson --- 2) Should now be fixed -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 5 17:03:08 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 05 Mar 2024 16:03:08 +0000 Subject: [Koha-bugs] [Bug 36224] It looks like spsuggest functionality was removed years ago, but the templates still refer to it In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36224 Lucas Gass changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |Needs Signoff -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 5 17:03:10 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 05 Mar 2024 16:03:10 +0000 Subject: [Koha-bugs] [Bug 36224] It looks like spsuggest functionality was removed years ago, but the templates still refer to it In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36224 --- Comment #1 from Lucas Gass --- Created attachment 162768 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162768&action=edit Bug 36224: Remove unused spsuggest from templates To test: -APPLY PATCH -Review the OPAC results and staff interface results pages. -Nothing should change, it would be impossible to end up inside of the [% IF koha_spsuggest %] condition because there is nothing like that in the scripts! -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 5 17:03:18 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 05 Mar 2024 16:03:18 +0000 Subject: [Koha-bugs] [Bug 36224] It looks like spsuggest functionality was removed years ago, but the templates still refer to it In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36224 Lucas Gass changed: What |Removed |Added ---------------------------------------------------------------------------- Assignee|oleonard at myacpl.org |lucas at bywatersolutions.com Patch complexity|--- |Trivial patch -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 5 17:09:11 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 05 Mar 2024 16:09:11 +0000 Subject: [Koha-bugs] [Bug 36222] Add GET route for star ratings In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36222 Lucas Gass changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |lucas at bywatersolutions.com -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 5 17:09:20 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 05 Mar 2024 16:09:20 +0000 Subject: [Koha-bugs] [Bug 36223] Add GET route for local cover images (bibliographic records) In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36223 Lucas Gass changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |lucas at bywatersolutions.com -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 5 17:24:29 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 05 Mar 2024 16:24:29 +0000 Subject: [Koha-bugs] [Bug 36193] CSRF - Code review missed In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36193 Nick Clemens changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #162684|0 |1 is obsolete| | Attachment #162733|0 |1 is obsolete| | Attachment #162734|0 |1 is obsolete| | Attachment #162749|0 |1 is obsolete| | Attachment #162750|0 |1 is obsolete| | Attachment #162751|0 |1 is obsolete| | Attachment #162752|0 |1 is obsolete| | Attachment #162755|0 |1 is obsolete| | --- Comment #11 from Nick Clemens --- Created attachment 162769 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162769&action=edit Bug 36193: Add more request information on Koha::Middleware::CSRF output Signed-off-by: Tomas Cohen Arazi Signed-off-by: Nick Clemens -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Tue Mar 5 17:24:31 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 05 Mar 2024 16:24:31 +0000 Subject: [Koha-bugs] [Bug 36193] CSRF - Code review missed In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36193 --- Comment #12 from Nick Clemens --- Created attachment 162770 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162770&action=edit Bug 36193: Fix acq receiving This patch addresses the CSRF error when receiving in acquisitions. To test: 1. Have at least one order to receive 2. Follow the steps to receive them 3. Have the logs open: $ ktd --shell k$ tail -f /var/log/koha/kohadev/*.log 4. Click to confirm receipt => FAIL: An error modal is displayed => FAIL: There's an error about missing CSRF token in POST 5. Apply this patch 6. Reload everything: k$ restart_all 7. Repeat 1-4 => SUCCESS: Receipt works :-D => SUCCESS: No error log 8. Sign off :-D Signed-off-by: Tomas Cohen Arazi Signed-off-by: Nick Clemens -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Tue Mar 5 17:24:33 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 05 Mar 2024 16:24:33 +0000 Subject: [Koha-bugs] [Bug 36193] CSRF - Code review missed In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36193 --- Comment #13 from Nick Clemens --- Created attachment 162771 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162771&action=edit Bug 36193: cud- treatment for Acq order receipt cancelling Signed-off-by: Tomas Cohen Arazi Signed-off-by: Nick Clemens -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Tue Mar 5 17:24:35 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 05 Mar 2024 16:24:35 +0000 Subject: [Koha-bugs] [Bug 36193] CSRF - Code review missed In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36193 --- Comment #14 from Nick Clemens --- Created attachment 162772 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162772&action=edit Bug 36193: cud- treatment for cash_registers.pl Signed-off-by: Tomas Cohen Arazi Signed-off-by: Nick Clemens -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Tue Mar 5 17:24:37 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 05 Mar 2024 16:24:37 +0000 Subject: [Koha-bugs] [Bug 36193] CSRF - Code review missed In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36193 --- Comment #15 from Nick Clemens --- Created attachment 162773 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162773&action=edit Bug 36193: cud- treatment for credit_types.pl Signed-off-by: Tomas Cohen Arazi Signed-off-by: Nick Clemens -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Tue Mar 5 17:24:40 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 05 Mar 2024 16:24:40 +0000 Subject: [Koha-bugs] [Bug 36193] CSRF - Code review missed In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36193 --- Comment #16 from Nick Clemens --- Created attachment 162774 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162774&action=edit Bug 36193: cud- treatment for dedit_types.pl Signed-off-by: Tomas Cohen Arazi Signed-off-by: Nick Clemens -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Tue Mar 5 17:24:42 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 05 Mar 2024 16:24:42 +0000 Subject: [Koha-bugs] [Bug 36193] CSRF - Code review missed In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36193 --- Comment #17 from Nick Clemens --- Created attachment 162775 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162775&action=edit Bug 36193: cud- treatment for reset_confirmed on mappings.pl Signed-off-by: Tomas Cohen Arazi Signed-off-by: Nick Clemens -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 5 17:24:44 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 05 Mar 2024 16:24:44 +0000 Subject: [Koha-bugs] [Bug 36193] CSRF - Code review missed In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36193 --- Comment #18 from Nick Clemens --- Created attachment 162776 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162776&action=edit Bug 36193: cud- treatment for restrictions.pl Signed-off-by: Tomas Cohen Arazi Signed-off-by: Nick Clemens -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Tue Mar 5 17:24:46 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 05 Mar 2024 16:24:46 +0000 Subject: [Koha-bugs] [Bug 36193] CSRF - Code review missed In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36193 --- Comment #19 from Nick Clemens --- Created attachment 162777 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162777&action=edit Bug 36193: (follow-up) Use buttons and don't nest forms When changing action links into forms, we should use a submit button rather than JS to submit Receipt cancelling needed a form embedded in the page as we cannot nest forms Fixed searching on invoice.pl Fixed resetting mappings (original button did not need cud-) Signed-off-by: Nick Clemens -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 5 17:26:02 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 05 Mar 2024 16:26:02 +0000 Subject: [Koha-bugs] [Bug 36235] System preferences chopping everything after a semicolon. In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36235 Lucas Gass changed: What |Removed |Added ---------------------------------------------------------------------------- Assignee|koha-bugs at lists.koha-commun |lucas at bywatersolutions.com |ity.org | Patch complexity|--- |Trivial patch -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 5 17:28:13 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 05 Mar 2024 16:28:13 +0000 Subject: [Koha-bugs] [Bug 36235] System preferences chopping everything after a semicolon. In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36235 Lucas Gass changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |Needs Signoff -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 5 17:28:15 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 05 Mar 2024 16:28:15 +0000 Subject: [Koha-bugs] [Bug 36235] System preferences chopping everything after a semicolon. In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36235 --- Comment #3 from Lucas Gass --- Created attachment 162778 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162778&action=edit Bug 36235: Encode system preference data with encodeURIComponent To test: 1. Add some data to a freetext system preference like IntranetUserJS or AdditionalFieldsInZ3950ResultAuthSearch that includes a semicolon; 2. Save the pref and reload the page or check the DB. Everything after the semicolon is removed. 3. Apply patch, try again. Data should remain as is. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 5 17:28:48 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 05 Mar 2024 16:28:48 +0000 Subject: [Koha-bugs] [Bug 36235] System preferences chopping everything after a semicolon. In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36235 --- Comment #4 from Lucas Gass --- I just converted Jonathan's diff into a patch. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 5 17:35:39 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 05 Mar 2024 16:35:39 +0000 Subject: [Koha-bugs] [Bug 36206] Administrative plugins In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36206 Martin Renvoize changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Failed QA |Needs Signoff -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 5 17:38:00 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 05 Mar 2024 16:38:00 +0000 Subject: [Koha-bugs] [Bug 36206] Administrative plugins In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36206 --- Comment #10 from Martin Renvoize --- Grr... attaching a plugin here is too large for Bugzilla! -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 5 17:42:25 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 05 Mar 2024 16:42:25 +0000 Subject: [Koha-bugs] [Bug 36206] Administrative plugins In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36206 --- Comment #11 from Martin Renvoize --- Please use : https://github.com/PTFS-Europe/dev-koha-plugin-kitchen-sink/blob/admin/build/koha-plugin-kitchen-sink.kpz to test. The plugin can be installed as usual with this patchset applied to Koha. Once installed, it will appear on the administration page under 'Plugins' with the plugin name as the definition list title and the plugin description as the definition list definition. You should also be able to access the example admin page via the 'Manage plugins' page, from the 'actions' menu at the right side of the plugins table. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 5 17:43:43 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 05 Mar 2024 16:43:43 +0000 Subject: [Koha-bugs] [Bug 36206] Administrative plugins In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36206 Martin Renvoize changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |nick at bywatersolutions.com, | |tomascohen at gmail.com -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 5 17:43:54 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 05 Mar 2024 16:43:54 +0000 Subject: [Koha-bugs] [Bug 36206] Administrative plugins In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36206 Martin Renvoize changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |liz at bywatersolutions.com -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 5 18:01:49 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 05 Mar 2024 17:01:49 +0000 Subject: [Koha-bugs] [Bug 36206] Administrative plugins In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36206 --- Comment #12 from Lucas Gass --- Created attachment 162779 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162779&action=edit Bug 36206: (follow-up) Change file permission -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 5 18:02:33 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 05 Mar 2024 17:02:33 +0000 Subject: [Koha-bugs] [Bug 36206] Administrative plugins In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36206 Lucas Gass changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Needs Signoff |Signed Off -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 5 18:02:35 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 05 Mar 2024 17:02:35 +0000 Subject: [Koha-bugs] [Bug 36206] Administrative plugins In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36206 Lucas Gass changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #162615|0 |1 is obsolete| | --- Comment #13 from Lucas Gass --- Created attachment 162780 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162780&action=edit Bug 36206: Add 'admin' plugins option This patch adds an admin plugins class to the plugins system and displays such plugins under the 'Plugins' section in the Administration page. Signed-off-by: Lucas Gass -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 5 18:02:38 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 05 Mar 2024 17:02:38 +0000 Subject: [Koha-bugs] [Bug 36206] Administrative plugins In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36206 Lucas Gass changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #162639|0 |1 is obsolete| | --- Comment #14 from Lucas Gass --- Created attachment 162781 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162781&action=edit Bug 36206: Expose administration page to users with plugins_admin permission This patch updates the intranet home page logic such that the administration button appears for those users with just the 'admin' subpermission of plugins to allow them to access such plugins. We also update the display logic found inside the admin-home page so that user see plugin management appropriately. Signed-off-by: Lucas Gass -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 5 18:02:40 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 05 Mar 2024 17:02:40 +0000 Subject: [Koha-bugs] [Bug 36206] Administrative plugins In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36206 Lucas Gass changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #162641|0 |1 is obsolete| | --- Comment #15 from Lucas Gass --- Created attachment 162782 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162782&action=edit Bug 36206: Add 'Run administration tool' to plugin actions This patch adds the new 'Run administration tool' option to the plugin actions dropdown menu for plugins with such a function. Signed-off-by: Lucas Gass -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 5 18:02:42 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 05 Mar 2024 17:02:42 +0000 Subject: [Koha-bugs] [Bug 36206] Administrative plugins In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36206 Lucas Gass changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #162779|0 |1 is obsolete| | --- Comment #16 from Lucas Gass --- Created attachment 162783 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162783&action=edit Bug 36206: (follow-up) Change file permission Signed-off-by: Lucas Gass -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 5 18:03:03 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 05 Mar 2024 17:03:03 +0000 Subject: [Koha-bugs] [Bug 36111] 856$h should not appear as a link in detailed record In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36111 --- Comment #13 from Matthias Le Gac --- (In reply to Victor Grousset/tuxayo from comment #12) > > For some reason, when I signed off the patch the test plan was not > > included. I have amended the patch to include a description and > > have added the (very good) test plan. > > Thanks David for the help :) > > @Matthias I think that happens when the test plan is not written in the > commit message but written in bugzilla's UI/git-bz when attaching a patch. > The test plan needs to be in the commit message to be preserved between > signoffs and in the Koha commit history. > > --- > > If that can help someone to review this, here a git command to show the diff > with additional colors for moved lines. To go more quickly and just checking > that part of the stuff is just moved and not new or totally removed. > > git show --color-moved --color-moved-ws=allow-indentation-change > > That's was still not enough for me to be able to get a good grasp of this > one, sorry ^^" thank for the help, I need to amend the commit to attach the test plan ? -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 5 18:05:29 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 05 Mar 2024 17:05:29 +0000 Subject: [Koha-bugs] [Bug 36233] Cannot search invoices if too many vendors In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36233 Lucas Gass changed: What |Removed |Added ---------------------------------------------------------------------------- Assignee|koha-bugs at lists.koha-commun |nick at bywatersolutions.com |ity.org | CC| |lucas at bywatersolutions.com -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 5 18:10:16 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 05 Mar 2024 17:10:16 +0000 Subject: [Koha-bugs] [Bug 36193] CSRF - Code review missed In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36193 Tomás Cohen Arazi changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #162777|0 |1 is obsolete| | --- Comment #20 from Tomás Cohen Arazi --- Created attachment 162784 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162784&action=edit Bug 36193: (follow-up) Use buttons and don't nest forms When changing action links into forms, we should use a submit button rather than JS to submit Receipt cancelling needed a form embedded in the page as we cannot nest forms Fixed searching on invoice.pl Fixed resetting mappings (original button did not need cud-) Signed-off-by: Nick Clemens Signed-off-by: Tomas Cohen Arazi -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 5 18:19:15 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 05 Mar 2024 17:19:15 +0000 Subject: [Koha-bugs] [Bug 33268] Overlay rules don't work correctly when source is set to * In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33268 --- Comment #37 from David Gustafsson --- Discovered an issue with the previous version of the update script which should now be fixed. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 5 18:19:38 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 05 Mar 2024 17:19:38 +0000 Subject: [Koha-bugs] [Bug 33268] Overlay rules don't work correctly when source is set to * In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33268 David Gustafsson changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #162767|0 |1 is obsolete| | --- Comment #38 from David Gustafsson --- Created attachment 162785 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162785&action=edit Bug 33268: If rules exists add rules to preserve current behaviour -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 5 18:20:38 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 05 Mar 2024 17:20:38 +0000 Subject: [Koha-bugs] [Bug 33268] Overlay rules don't work correctly when source is set to * In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33268 David Gustafsson changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #162785|0 |1 is obsolete| | --- Comment #39 from David Gustafsson --- Created attachment 162786 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162786&action=edit Bug 33268: If rules exists add rules to preserve current behavior -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 5 18:20:39 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 05 Mar 2024 17:20:39 +0000 Subject: [Koha-bugs] [Bug 34631] Independentbranches - Non-superuser should not be able to write Additional contents for other branches In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=34631 Matthias Le Gac changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Patch doesn't apply |Needs Signoff -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 5 18:20:41 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 05 Mar 2024 17:20:41 +0000 Subject: [Koha-bugs] [Bug 34631] Independentbranches - Non-superuser should not be able to write Additional contents for other branches In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=34631 Matthias Le Gac changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #154890|0 |1 is obsolete| | --- Comment #4 from Matthias Le Gac --- Created attachment 162787 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162787&action=edit Bug 34631: Independentbranches - rebase to master When syspref Independentbranches is enabled Non-superuser should not be able to write Additional contents for other branches To reproduce: 1- Connect to staff interface as superlibrarian 2- Enable IndependentBranches preference 3- Go to Tools -> HTML customizations 4- Crete an additional content for all libraries 5- Create or edit a borrower 5-1- Set permission for the borrower - catalogue - edit_additional_contents 4- Log in to the staff interface with the non-superlibrarian staff user 5- Go to Tools -> HTML customizations --> you can delete or edit the additional contents created by superlibrarian for All libraries 6- Click on New entry --> you can add additional content for other branches 7- Apply the patch 8- Repeat step 5 --> you cannot delete or edit the additional contents create by superlibrarian for All libraries 9- Repeat step 6 --> you cannot add additional content for other branches 10- submit the form --> the branch of the created additional content is the current user branch -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 5 18:27:30 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 05 Mar 2024 17:27:30 +0000 Subject: [Koha-bugs] [Bug 34631] Independentbranches - Non-superuser should not be able to write Additional contents for other branches In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=34631 Matthias Le Gac changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |matthias.le-gac at inlibro.com --- Comment #5 from Matthias Le Gac --- rebase to master -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 5 18:33:42 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 05 Mar 2024 17:33:42 +0000 Subject: [Koha-bugs] [Bug 36197] Allow for OPAC unauthenticated ILL request In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36197 Pedro Amorim changed: What |Removed |Added ---------------------------------------------------------------------------- URL| |https://github.com/PTFS-Eur | |ope/koha/commits/36197 -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 5 18:34:09 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 05 Mar 2024 17:34:09 +0000 Subject: [Koha-bugs] [Bug 36197] Allow for OPAC unauthenticated ILL request In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36197 Pedro Amorim changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |katrin.fischer at bsz-bw.de, | |martin.renvoize at ptfs-europe | |.com, nugged at gmail.com, | |tomascohen at gmail.com -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 5 18:37:58 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 05 Mar 2024 17:37:58 +0000 Subject: [Koha-bugs] [Bug 36166] Disable select to add to list if opacuserlogin is disabled In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36166 Blou changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |philippe.blouin at inlibro.com -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 5 18:42:51 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 05 Mar 2024 17:42:51 +0000 Subject: [Koha-bugs] [Bug 36166] Disable select to add to list if opacuserlogin is disabled In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36166 Matthias Le Gac changed: What |Removed |Added ---------------------------------------------------------------------------- Assignee|oleonard at myacpl.org |matthias.le-gac at inlibro.com CC| |matthias.le-gac at inlibro.com -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 5 18:43:27 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 05 Mar 2024 17:43:27 +0000 Subject: [Koha-bugs] [Bug 34693] Add 035$a as Other-control-number index in authorities search indexes (MARC21, Elasticsearch) In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=34693 Caroline Cyr La Rose changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |philippe.blouin at inlibro.com -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 5 18:44:24 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 05 Mar 2024 17:44:24 +0000 Subject: [Koha-bugs] [Bug 33237] If TranslateNotices is off, use the interface language includes in slips In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33237 Caroline Cyr La Rose changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |philippe.blouin at inlibro.com -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 5 18:44:40 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 05 Mar 2024 17:44:40 +0000 Subject: [Koha-bugs] [Bug 36216] Hide Show checkouts/charges to guarantor when not necessary In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36216 Caroline Cyr La Rose changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |philippe.blouin at inlibro.com -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 5 18:45:27 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 05 Mar 2024 17:45:27 +0000 Subject: [Koha-bugs] [Bug 24035] When recording local use, holds should be captured In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=24035 Caroline Cyr La Rose changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |philippe.blouin at inlibro.com -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 5 18:46:01 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 05 Mar 2024 17:46:01 +0000 Subject: [Koha-bugs] [Bug 35911] Archived suggestions show in patron's account In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35911 Caroline Cyr La Rose changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |philippe.blouin at inlibro.com -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 5 18:46:24 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 05 Mar 2024 17:46:24 +0000 Subject: [Koha-bugs] [Bug 31736] Context for translation: "All" In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31736 Caroline Cyr La Rose changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |philippe.blouin at inlibro.com -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 5 18:46:40 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 05 Mar 2024 17:46:40 +0000 Subject: [Koha-bugs] [Bug 33494] Catalog concerns - Toggle 'Hide resolved' and 'Show all' In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33494 Caroline Cyr La Rose changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |philippe.blouin at inlibro.com -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 5 18:47:01 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 05 Mar 2024 17:47:01 +0000 Subject: [Koha-bugs] [Bug 36122] NEW_SUGGESTION is sent for every modification to the suggestion In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36122 Caroline Cyr La Rose changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |philippe.blouin at inlibro.com -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 5 18:47:30 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 05 Mar 2024 17:47:30 +0000 Subject: [Koha-bugs] [Bug 35392] HTML in translatable string In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35392 Caroline Cyr La Rose changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |philippe.blouin at inlibro.com -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 5 18:47:49 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 05 Mar 2024 17:47:49 +0000 Subject: [Koha-bugs] [Bug 36116] Link to suggestion leads to undefined suggestion in parcel.pl In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36116 Caroline Cyr La Rose changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |philippe.blouin at inlibro.com -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 5 18:48:04 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 05 Mar 2024 17:48:04 +0000 Subject: [Koha-bugs] [Bug 34077] writeoff_debts without --confirm doesn't show which accountline records it would have been written off In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=34077 Caroline Cyr La Rose changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |philippe.blouin at inlibro.com -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 5 18:48:19 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 05 Mar 2024 17:48:19 +0000 Subject: [Koha-bugs] [Bug 36108] Update MARC21 default framework to Update 37 (December 2023) In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36108 Caroline Cyr La Rose changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |philippe.blouin at inlibro.com -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 5 18:48:59 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 05 Mar 2024 17:48:59 +0000 Subject: [Koha-bugs] [Bug 36055] Simplify MARC21 Fast Add framework In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36055 Caroline Cyr La Rose changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |philippe.blouin at inlibro.com -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 5 18:51:02 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 05 Mar 2024 17:51:02 +0000 Subject: [Koha-bugs] [Bug 35945] Expand OverduesBlockCirc to guarantees and guarantors In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35945 Caroline Cyr La Rose changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |philippe.blouin at inlibro.com -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 5 18:52:10 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 05 Mar 2024 17:52:10 +0000 Subject: [Koha-bugs] [Bug 23981] Inconsistencies with the different prices In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=23981 Caroline Cyr La Rose changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |philippe.blouin at inlibro.com -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 5 18:52:59 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 05 Mar 2024 17:52:59 +0000 Subject: [Koha-bugs] [Bug 35886] FindDuplicate only checks first ISBN In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35886 Caroline Cyr La Rose changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |philippe.blouin at inlibro.com -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 5 18:53:18 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 05 Mar 2024 17:53:18 +0000 Subject: [Koha-bugs] [Bug 35923] Add a permission to transfer items In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35923 Caroline Cyr La Rose changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |philippe.blouin at inlibro.com -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 5 18:53:58 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 05 Mar 2024 17:53:58 +0000 Subject: [Koha-bugs] [Bug 35915] Add URL encoding to status tabs in purchase suggestions management In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35915 Caroline Cyr La Rose changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |philippe.blouin at inlibro.com -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 5 18:54:19 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 05 Mar 2024 17:54:19 +0000 Subject: [Koha-bugs] [Bug 35866] Filter in parcels.pl only checks 20 first results In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35866 Caroline Cyr La Rose changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |philippe.blouin at inlibro.com -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 5 18:54:48 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 05 Mar 2024 17:54:48 +0000 Subject: [Koha-bugs] [Bug 35863] Title display in basket.pl in wrong order (part number and part name should be right after title) In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35863 Caroline Cyr La Rose changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |philippe.blouin at inlibro.com -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 5 18:56:00 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 05 Mar 2024 17:56:00 +0000 Subject: [Koha-bugs] [Bug 35859] Add part_name and part_number to addorderiso2709.pl In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35859 Caroline Cyr La Rose changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |philippe.blouin at inlibro.com -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 5 18:56:17 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 05 Mar 2024 17:56:17 +0000 Subject: [Koha-bugs] [Bug 35095] Bibliographic record from local title only has 245$a In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35095 Caroline Cyr La Rose changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |philippe.blouin at inlibro.com -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 5 18:57:00 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 05 Mar 2024 17:57:00 +0000 Subject: [Koha-bugs] [Bug 21631] No warning when placing a hold with current location/pick-up location combination forbidden by Transport cost matrix In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=21631 Caroline Cyr La Rose changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |philippe.blouin at inlibro.com -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 5 18:57:29 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 05 Mar 2024 17:57:29 +0000 Subject: [Koha-bugs] [Bug 35814] Add information about MARC modification template used in staged MARC batch page In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35814 Caroline Cyr La Rose changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |philippe.blouin at inlibro.com -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 5 19:08:41 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 05 Mar 2024 18:08:41 +0000 Subject: [Koha-bugs] [Bug 35536] Improve removal of Koha plugins in unit tests In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35536 --- Comment #59 from Tomás Cohen Arazi --- I love this. Thank Marcel -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 5 19:20:29 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 05 Mar 2024 18:20:29 +0000 Subject: [Koha-bugs] [Bug 34631] Independentbranches - Non-superuser should not be able to write Additional contents for other branches In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=34631 Myka Kennedy Stephens changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Needs Signoff |Patch doesn't apply --- Comment #6 from Myka Kennedy Stephens --- Applied patch and received an error when returning to the HTML Customizations tool in the non-superlibrarian login (additional-contents.pl) A PDF of the full error trace is available here: https://drive.google.com/file/d/1GNaNWN-sMIKQcYvdns5i5406qZ2iGw23/view?usp=sharing The same error persists across News and Pages for both a superlibrarian login and a non-superlibrarian login. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 5 19:40:56 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 05 Mar 2024 18:40:56 +0000 Subject: [Koha-bugs] [Bug 36159] Patron imports record a change for non-text columns that are not in the import file In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36159 --- Comment #6 from Nick Clemens --- (In reply to Martin Renvoize from comment #5) > I think the defined check is there so we don't trigger warnings in the > comparison... shouldn't we attempt to fix this at the import script level? I think they will both always have all of the columns: - the db object has them because of schema - the incoming object has them all because we fill everything found in set_column_keys Testing I don't see errors from this new code I do get an unrelated warn before and after the patch: [2024/03/05 18:40:18] [WARN] Use of uninitialized value within %csvkeycol in array element at /kohadevbox/koha/Koha/Patrons/Import.pm line 288, <$fh> line 2. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 5 20:01:15 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 05 Mar 2024 19:01:15 +0000 Subject: [Koha-bugs] [Bug 34631] Independentbranches - Non-superuser should not be able to write Additional contents for other branches In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=34631 Matthias Le Gac changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Patch doesn't apply |Needs Signoff -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 5 20:01:17 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 05 Mar 2024 19:01:17 +0000 Subject: [Koha-bugs] [Bug 34631] Independentbranches - Non-superuser should not be able to write Additional contents for other branches In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=34631 --- Comment #7 from Matthias Le Gac --- Created attachment 162788 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162788&action=edit Bug 34631: Independentbranches - Non-superuser should not be able to write Additional contents for other branches When syspref Independentbranches is enabled Non-superuser should not be able to write Additional contents for other branches To reproduce: 1- Connect to staff interface as superlibrarian 2- Enable IndependentBranches preference 3- Go to Tools -> HTML customizations 4- Crete an additional content for all libraries 5- Create or edit a borrower 5-1- Set permission for the borrower - catalogue - edit_additional_contents 4- Log in to the staff interface with the non-superlibrarian staff user 5- Go to Tools -> HTML customizations --> you can delete or edit the additional contents created by superlibrarian for All libraries 6- Click on New entry --> you can add additional content for other branches 7- Apply the patch 8- Repeat step 5 --> you cannot delete or edit the additional contents create by superlibrarian for All libraries 9- Repeat step 6 --> you cannot add additional content for other branches 10- submit the form --> the branch of the created additional content is the current user branch -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 5 20:18:50 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 05 Mar 2024 19:18:50 +0000 Subject: [Koha-bugs] [Bug 36122] NEW_SUGGESTION is sent for every modification to the suggestion In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36122 Marie-Luce Laflamme changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |marie-luce.laflamme at inlibro | |.com --- Comment #5 from Marie-Luce Laflamme --- +1 -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 5 20:36:40 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 05 Mar 2024 19:36:40 +0000 Subject: [Koha-bugs] [Bug 31376] Input type email in system preferences prevents multiple addresses In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31376 Caroline Cyr La Rose changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |philippe.blouin at inlibro.com -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 5 20:37:22 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 05 Mar 2024 19:37:22 +0000 Subject: [Koha-bugs] [Bug 26573] Limit patron attribute types to more than one patron category In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=26573 Caroline Cyr La Rose changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |philippe.blouin at inlibro.com -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 5 20:37:56 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 05 Mar 2024 19:37:56 +0000 Subject: [Koha-bugs] [Bug 35500] Remove Summary and Matrix options in the guided reports wizard In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35500 Caroline Cyr La Rose changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |philippe.blouin at inlibro.com -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 5 20:38:34 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 05 Mar 2024 19:38:34 +0000 Subject: [Koha-bugs] [Bug 35499] Lost item blocked at checkin still logs a return in action logs In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35499 Caroline Cyr La Rose changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |philippe.blouin at inlibro.com -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 5 20:39:31 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 05 Mar 2024 19:39:31 +0000 Subject: [Koha-bugs] [Bug 34991] Collapsed 245 subfields still show by default in Fast Add Framework In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=34991 Caroline Cyr La Rose changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |philippe.blouin at inlibro.com -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 5 21:56:06 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 05 Mar 2024 20:56:06 +0000 Subject: [Koha-bugs] [Bug 36166] Disable select to add to list if opacuserlogin is disabled In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36166 Matthias Le Gac changed: What |Removed |Added ---------------------------------------------------------------------------- Status|ASSIGNED |Needs Signoff -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 5 21:56:08 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 05 Mar 2024 20:56:08 +0000 Subject: [Koha-bugs] [Bug 36166] Disable select to add to list if opacuserlogin is disabled In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36166 --- Comment #2 from Matthias Le Gac --- Created attachment 162789 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162789&action=edit Bug 36166: Disable select to add to list if opacuserlogin is disabled Test Plan : For the [new list] option : To recreate: 1. Disable opacuserlogin 1.1. Go to Administration > System preferences 1.2. Search for opacuserlogin 1.3. Switch to Don't allow 1.4. Click on Save all OPAC preferences 2. Do a search in the OPAC and try to add to a list 2.1. Go to the OPAC 2.2. Enter a search term and press enter (or click the magnifying glass) --> Notice that in the search results, there is an option to Select titles to: [New list] 2.3. Select a title by checking the box 2.4. Choose With selected titles: [New list] --> Message saying you need to be logged in (but you can't) To add in a list : To recreate: 1. Create a public list that anyone can change 1.1. Go to Lists 1.2. Click on New list 1.3. Fill out the form: - Name: enter a name for the list - Public: Public - Allow changes to contents from: Anyone seeing this list 1.4. Click Save 2. Do a search in the OPAC and try to add to the public list 2.1. Go to the OPAC 2.2. Enter a search term and press enter (or click the magnifying glass) 2.3. Select a title by checking the box 2.4. Choose With selected titles: Name of list --> Pop up window saying logging on to the catalog has not been enabled by the library. 1. Apply the patch 1.1. Go to the OPAC 1.2. Enter a search term and press enter (or click the magnifying glass) 1.3. now you don't see the lists option and [New list] option For information : - if the virtualshelves option is deactivated, this will also remove the display of the above options - if opacbookbag and opacuserlogin are not allow this hide the selector, button and label. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 5 22:00:00 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 05 Mar 2024 21:00:00 +0000 Subject: [Koha-bugs] [Bug 34078] Add --branchcode to writeoff_debts.pl In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=34078 --- Comment #2 from Caroline Cyr La Rose --- (In reply to Martin Renvoize from comment #1) > So.. for clarification.. you mean the library the charge was recorded at.. > not the patrons library or the checkouts library or... right? > > It would be simple enough to filter on the branchcode as recorded in the > accountlines table.. I just wanted to clarify that's what you want.. not the > branchcodes from various related tables? In my specific case, with independentbranches, I think all branchcodes would be the same since patrons and items can't travel between branches. I was going to say that using the branchcode from accountlines would be fine, but it seems it's not recorded for overdue fines? Unless I'm doing something wrong... I added fines in the circ rules, issues an item to a patron with a due date in the past, ran fines.pl, checked accountlines.branchcode and it's NULL. -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 5 22:00:10 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 05 Mar 2024 21:00:10 +0000 Subject: [Koha-bugs] [Bug 34078] Add --branchcode to writeoff_debts.pl In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=34078 Caroline Cyr La Rose changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |philippe.blouin at inlibro.com -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 5 22:40:18 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 05 Mar 2024 21:40:18 +0000 Subject: [Koha-bugs] [Bug 36066] REST API: We should only allow deleting cancelled order lines In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36066 --- Comment #19 from Victor Grousset/tuxayo --- (In reply to Tomás Cohen Arazi from comment #16) > This is clearly a case for the 409, as the resource status is conflicting > with the requested action. The description of 409 was way to abstract for me to make the connection with our case but ok good, 409 then :D -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 5 22:40:23 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 05 Mar 2024 21:40:23 +0000 Subject: [Koha-bugs] [Bug 36066] REST API: We should only allow deleting cancelled order lines In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36066 Victor Grousset/tuxayo changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #162738|0 |1 is obsolete| | --- Comment #20 from Victor Grousset/tuxayo --- Created attachment 162790 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162790&action=edit Bug 36066: Add tests Signed-off-by: David Nind Signed-off-by: Marcel de Rooy [EDIT] As Victor discovered, the test with status new in subtest 'delete' needed the authorised user now. Test plan: Run t/db_dependent/api/v1/acquisitions_orders.t Without the follow-up patch this should FAIL. Signed-off-by: Victor Grousset/tuxayo -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 5 22:40:26 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 05 Mar 2024 21:40:26 +0000 Subject: [Koha-bugs] [Bug 36066] REST API: We should only allow deleting cancelled order lines In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36066 Victor Grousset/tuxayo changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #162739|0 |1 is obsolete| | --- Comment #21 from Victor Grousset/tuxayo --- Created attachment 162791 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162791&action=edit Bug 36066: Only allow cancelled order deletion in API Note: I had trouble with listing orders in API without status, although formally not required according specs. Test plan: Run t/db_dependent/api/v1/acquisitions_orders.t Signed-off-by: Marcel de Rooy Signed-off-by: David Nind Signed-off-by: Victor Grousset/tuxayo -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 5 22:40:29 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 05 Mar 2024 21:40:29 +0000 Subject: [Koha-bugs] [Bug 36066] REST API: We should only allow deleting cancelled order lines In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36066 Victor Grousset/tuxayo changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #162754|0 |1 is obsolete| | --- Comment #22 from Victor Grousset/tuxayo --- Created attachment 162792 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162792&action=edit Bug 36066: (follow-up) Move 403 to 409 when status ne cancelled Test plan: Run t/db_dependent/api/v1/acquisitions_orders.t Signed-off-by: Marcel de Rooy Signed-off-by: Victor Grousset/tuxayo -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 5 22:40:54 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 05 Mar 2024 21:40:54 +0000 Subject: [Koha-bugs] [Bug 36066] REST API: We should only allow deleting cancelled order lines In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36066 Victor Grousset/tuxayo changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Signed Off |Passed QA --- Comment #23 from Victor Grousset/tuxayo --- Works, makes sense, QA script happy, code looks good, passing QA :) -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 5 22:50:27 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 05 Mar 2024 21:50:27 +0000 Subject: [Koha-bugs] [Bug 31656] Expand TT access for CHECKOUT notice In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31656 Caroline Cyr La Rose changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |philippe.blouin at inlibro.com -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 5 22:52:05 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 05 Mar 2024 21:52:05 +0000 Subject: [Koha-bugs] [Bug 35049] Add ability to choose which status is included in MaxOpenSuggestions In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35049 Caroline Cyr La Rose changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |philippe.blouin at inlibro.com -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 5 22:52:25 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 05 Mar 2024 21:52:25 +0000 Subject: [Koha-bugs] [Bug 27572] Move OpacLocationBranchToDisplay system preference into table settings In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=27572 Caroline Cyr La Rose changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |philippe.blouin at inlibro.com -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 5 22:53:47 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 05 Mar 2024 21:53:47 +0000 Subject: [Koha-bugs] [Bug 21302] Link in 780/785 should search for $t in title and $a in author In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=21302 Caroline Cyr La Rose changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |philippe.blouin at inlibro.com -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 5 22:54:20 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 05 Mar 2024 21:54:20 +0000 Subject: [Koha-bugs] [Bug 34856] Move strings in messages.po back into their original file (or move everything into messages.po) In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=34856 Caroline Cyr La Rose changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |philippe.blouin at inlibro.com -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 5 22:54:42 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 05 Mar 2024 21:54:42 +0000 Subject: [Koha-bugs] [Bug 34823] Do not show item group drop-down if there are no item groups In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=34823 Caroline Cyr La Rose changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |philippe.blouin at inlibro.com -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 5 22:55:30 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 05 Mar 2024 21:55:30 +0000 Subject: [Koha-bugs] [Bug 25917] Table settings for OPAC are all under biblio-detail In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=25917 Caroline Cyr La Rose changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |philippe.blouin at inlibro.com -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 5 22:56:11 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 05 Mar 2024 21:56:11 +0000 Subject: [Koha-bugs] [Bug 32423] Allow guarantor to renew guarantee's checkouts In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=32423 Caroline Cyr La Rose changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |philippe.blouin at inlibro.com -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 5 22:56:59 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 05 Mar 2024 21:56:59 +0000 Subject: [Koha-bugs] [Bug 34563] Move IntranetCirculationHomeHTML to HTML customizations In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=34563 Caroline Cyr La Rose changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |philippe.blouin at inlibro.com -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 5 22:57:24 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 05 Mar 2024 21:57:24 +0000 Subject: [Koha-bugs] [Bug 34561] Move IntranetReportsHomeHTML to HTML customizations In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=34561 Caroline Cyr La Rose changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |philippe.blouin at inlibro.com -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 5 22:58:18 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 05 Mar 2024 21:58:18 +0000 Subject: [Koha-bugs] [Bug 36237] New: Improve set-library UI after 34478 Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36237 Bug ID: 36237 Summary: Improve set-library UI after 34478 Change sponsored?: --- Product: Koha Version: master Hardware: All OS: All Status: NEW Severity: enhancement Priority: P5 - low Component: Staff interface Assignee: koha-bugs at lists.koha-community.org Reporter: lucas at bywatersolutions.com QA Contact: testopia at bugs.koha-community.org CC: gmcharlt at gmail.com Bug 34478 added a new step when setting a library, desk, or register. I could use a few UI improvements. To recreate: 1. Enable UseCirculationDesks, make some desks via UseCashRegisters > Circulation desks 2. Enable UseCashRegisters, make some registers via UseCashRegisters > Registers 3. Go to set library page. Try changing the branch, desk, or register. 4. See that UI could use some improvements. -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Tue Mar 5 23:00:07 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 05 Mar 2024 22:00:07 +0000 Subject: [Koha-bugs] [Bug 36237] Improve set-library UI after 34478 In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36237 Lucas Gass changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |Needs Signoff -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 5 23:00:09 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 05 Mar 2024 22:00:09 +0000 Subject: [Koha-bugs] [Bug 36237] Improve set-library UI after 34478 In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36237 --- Comment #1 from Lucas Gass --- Created attachment 162793 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162793&action=edit Bug 36237: UI improvments for set-library page To test: 1. Enable UseCirculationDesks, make some desks via UseCashRegisters > Circulation desks 2. Enable UseCashRegisters, make some registers via UseCashRegisters > Registers 3. Go to set library page. Try changing the branch, desk, or register. 4. See that UI could use some improvements. 5. APPLY patch 6. Try 3 again, making sure everything works right. -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 5 23:00:30 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 05 Mar 2024 22:00:30 +0000 Subject: [Koha-bugs] [Bug 34631] Independentbranches - Non-superuser should not be able to write Additional contents for other branches In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=34631 --- Comment #8 from Myka Kennedy Stephens --- @Matthias, I'm still getting the same error when applying. Git bz applied both patches that are attached here. Either one of them is still producing the error or I'm doing something wrong with Koha Testing Docker. Please advise. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 5 23:01:15 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 05 Mar 2024 22:01:15 +0000 Subject: [Koha-bugs] [Bug 36237] Improve set-library UI after 34478 In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36237 Lucas Gass changed: What |Removed |Added ---------------------------------------------------------------------------- Depends on| |34478 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=34478 [Bug 34478] Full CSRF protection -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Tue Mar 5 23:01:15 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 05 Mar 2024 22:01:15 +0000 Subject: [Koha-bugs] [Bug 34478] Full CSRF protection In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=34478 Lucas Gass changed: What |Removed |Added ---------------------------------------------------------------------------- Blocks| |36237 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36237 [Bug 36237] Improve set-library UI after 34478 -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 5 23:04:52 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 05 Mar 2024 22:04:52 +0000 Subject: [Koha-bugs] [Bug 36237] Improve set-library UI after 34478 In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36237 Lucas Gass changed: What |Removed |Added ---------------------------------------------------------------------------- Assignee|koha-bugs at lists.koha-commun |lucas at bywatersolutions.com |ity.org | Patch complexity|--- |Trivial patch -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 5 23:07:49 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 05 Mar 2024 22:07:49 +0000 Subject: [Koha-bugs] [Bug 34631] Independentbranches - Non-superuser should not be able to write Additional contents for other branches In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=34631 Lucas Gass changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Needs Signoff |Failed QA CC| |lucas at bywatersolutions.com --- Comment #9 from Lucas Gass --- Matthias, your patch sets now include merge markers. Please use the QA tool! -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 5 23:08:12 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 05 Mar 2024 22:08:12 +0000 Subject: [Koha-bugs] [Bug 36195] CSRF - testing reports In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36195 Caroline Cyr La Rose changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |caroline.cyr-la-rose at inlibr | |o.com --- Comment #2 from Caroline Cyr La Rose --- Hi, I'm not sure if this is where I should report this. I added it to the framapad, too... I can't search for items using the item search. It returns a 403: Forbidden message. To recreate: 1. Go to Item search 2. Click Search --> 403: Forbidden plack-intranet-error.log says [2024/03/05 22:06:45] [WARN] Programming error - op 'like' must start with 'cud-' for POST at /kohadevbox/koha/Koha/Middleware/CSRF.pm line 78. -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Tue Mar 5 23:20:42 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 05 Mar 2024 22:20:42 +0000 Subject: [Koha-bugs] [Bug 36166] Disable select to add to list if opacuserlogin is disabled In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36166 Lucas Gass changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Needs Signoff |Signed Off -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 5 23:20:44 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 05 Mar 2024 22:20:44 +0000 Subject: [Koha-bugs] [Bug 36166] Disable select to add to list if opacuserlogin is disabled In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36166 Lucas Gass changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #162789|0 |1 is obsolete| | --- Comment #3 from Lucas Gass --- Created attachment 162794 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162794&action=edit Bug 36166: Disable select to add to list if opacuserlogin is disabled Signed-off-by: Lucas Gass -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 5 23:23:20 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 05 Mar 2024 22:23:20 +0000 Subject: [Koha-bugs] [Bug 34693] Add 035$a as Other-control-number index in authorities search indexes (MARC21, Elasticsearch) In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=34693 Lucas Gass changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Needs Signoff |Signed Off -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 5 23:23:21 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 05 Mar 2024 22:23:21 +0000 Subject: [Koha-bugs] [Bug 34693] Add 035$a as Other-control-number index in authorities search indexes (MARC21, Elasticsearch) In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=34693 Lucas Gass changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #155152|0 |1 is obsolete| | --- Comment #3 from Lucas Gass --- Created attachment 162795 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162795&action=edit Bug 34693: Add 035$a as Other-control-number index in default authorities search indexes This patch adds a new index for authorities, Other-control-number, and maps it to 035$a. This will help when trying to match authority records when importing external records. Test 1: 0. Make sure Elasticsearch is set as the search engine 1. Apply patch and restart 2. Import the attached record 2.1. Go to Cataloging > Stage records for import 2.2. Choose the file 2.3. Click Upload file 2.4. Choose Record type: Authority 2.5. Click Stage for import (wait until the job is finished...) 2.6. Click View batch 2.7. Click Import this batch into the catalog (wait until the job is finished...) 2.8. Click Manage imported batch 2.9. Click View next to the record 2.10. Note the auth id number 3. Examine the ES entry for the record (replace INDEX_NAME with the index name (found in koha-conf.xml and XX with the auth_id) curl -XGET 'http://localhost:9200/INDEX_NAME_authorities/data/XX?_source_includes=other-control-number&pretty' --> It should give you the value of 035$a Test 2 (optional): 1. Steps 1 and 2 as above 2. Add a matching rule to match on 035$a for authority records 2.1. Go to Administration > Record matching rules 2.2. Click New record matching rule 2.3. Fill out the form - Matching rule code: enter a code (for example AUTCONTROL) - Description: enter a description (for example 035$a for authorities) - Match threshold: 100 - Record type: Authority record - Search index: Other-control-number - Score: 100 - Tag: 035 - Subfields: a 2.4. Click Save 3. Import the same record again, checking for matches using the new rule 3.1. Go to Cataloging > Stage records for import 3.2. Choose the file 3.3. Click Upload file 3.4. Choose Record type: Authority 3.5. Choose Record matching rule: rule created above 2.6. Click Stage for import (wait until the job is finished...) --> It should say that 1 record was found using the rule Signed-off-by: Lucas Gass -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 5 23:33:26 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 05 Mar 2024 22:33:26 +0000 Subject: [Koha-bugs] [Bug 33268] Overlay rules don't work correctly when source is set to * In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33268 --- Comment #40 from Victor Grousset/tuxayo --- Created attachment 162796 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162796&action=edit Bug 33268: Add tests Sponsored-by: Gothenburg University Library Signed-off-by: David Nind Signed-off-by: Tomas Cohen Arazi Signed-off-by: Martin Renvoize Signed-off-by: Victor Grousset/tuxayo -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 5 23:33:29 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 05 Mar 2024 22:33:29 +0000 Subject: [Koha-bugs] [Bug 33268] Overlay rules don't work correctly when source is set to * In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33268 Victor Grousset/tuxayo changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #160018|0 |1 is obsolete| | --- Comment #41 from Victor Grousset/tuxayo --- Created attachment 162797 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162797&action=edit Bug 33268: Add tests for context module priority Signed-off-by: David Nind Signed-off-by: Tomas Cohen Arazi Edit: tidied inline (tcohen) Signed-off-by: Martin Renvoize Signed-off-by: Victor Grousset/tuxayo -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 5 23:33:32 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 05 Mar 2024 22:33:32 +0000 Subject: [Koha-bugs] [Bug 33268] Overlay rules don't work correctly when source is set to * In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33268 Victor Grousset/tuxayo changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #160017|0 |1 is obsolete| | --- Comment #42 from Victor Grousset/tuxayo --- Created attachment 162798 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162798&action=edit Bug 33268: Overlay rules don't work correctly when source is set to * Fallback to overlay rules with wildcard filter if no match found for exact filter match. To test: 1) Run tests t/db_dependent/Biblio/MarcOverlayRules.t Sponsored-by: Gothenburg University Library Signed-off-by: David Nind Signed-off-by: Tomas Cohen Arazi Edit: tidied inline (tcohen) Signed-off-by: Martin Renvoize Signed-off-by: Victor Grousset/tuxayo -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 5 23:33:35 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 05 Mar 2024 22:33:35 +0000 Subject: [Koha-bugs] [Bug 33268] Overlay rules don't work correctly when source is set to * In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33268 Victor Grousset/tuxayo changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #162786|0 |1 is obsolete| | --- Comment #43 from Victor Grousset/tuxayo --- Created attachment 162799 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162799&action=edit Bug 33268: If rules exists add rules to preserve current behavior Signed-off-by: Victor Grousset/tuxayo -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 5 23:33:38 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 05 Mar 2024 22:33:38 +0000 Subject: [Koha-bugs] [Bug 33268] Overlay rules don't work correctly when source is set to * In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33268 --- Comment #44 from Victor Grousset/tuxayo --- Created attachment 162800 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162800&action=edit Bug 33268: (QA follow-up): tidy up code -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 5 23:50:20 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 05 Mar 2024 22:50:20 +0000 Subject: [Koha-bugs] [Bug 36195] CSRF - testing reports In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36195 --- Comment #3 from David Cook --- (In reply to Caroline Cyr La Rose from comment #2) > I can't search for items using the item search. It returns a 403: Forbidden > message. I've looked into this one a bit (as I noticed on framapad), and I think itemsearch.pl is going to require some refactoring to fix its usage of "op". Basically, the "op" in the GET is fine, but it gets used for the POST to the API too. Could maybe convert that second POST to a GET, although it would be a long URL... -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Mar 6 00:20:49 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 05 Mar 2024 23:20:49 +0000 Subject: [Koha-bugs] [Bug 29824] Allow for quick spine labels to be editable for printing In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29824 Myka Kennedy Stephens changed: What |Removed |Added ---------------------------------------------------------------------------- Documentation| |Myka Kennedy Stephens contact| | CC| |mkstephens at fosgail.org -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Mar 6 00:27:11 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 05 Mar 2024 23:27:11 +0000 Subject: [Koha-bugs] [Bug 29824] Allow for quick spine labels to be editable for printing In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29824 Myka Kennedy Stephens changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Needs documenting |RESOLVED Resolution|--- |FIXED --- Comment #7 from Myka Kennedy Stephens --- This appears to have been added to the manual in the appropriate location with screenshots: https://koha-community.org/manual/latest/en/html/cataloging.html#quick-spine-label-creator -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Mar 6 00:33:45 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 05 Mar 2024 23:33:45 +0000 Subject: [Koha-bugs] [Bug 33268] Overlay rules don't work correctly when source is set to * In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33268 --- Comment #45 from Victor Grousset/tuxayo --- Thanks for the follow-up David. I moved the tests to their own commit (with a generic commit message that would benefit some completion) and reordered so we have all the test changes first. That allowed to run the test without implementation to confirm that they indeed fail without it. So that's great :) -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Mar 6 00:33:51 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 05 Mar 2024 23:33:51 +0000 Subject: [Koha-bugs] [Bug 33268] Overlay rules don't work correctly when source is set to * In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33268 Victor Grousset/tuxayo changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #162796|0 |1 is obsolete| | --- Comment #46 from Victor Grousset/tuxayo --- Created attachment 162801 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162801&action=edit Bug 33268: Add tests Sponsored-by: Gothenburg University Library Signed-off-by: David Nind Signed-off-by: Tomas Cohen Arazi Signed-off-by: Martin Renvoize -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Mar 6 00:33:55 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 05 Mar 2024 23:33:55 +0000 Subject: [Koha-bugs] [Bug 33268] Overlay rules don't work correctly when source is set to * In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33268 Victor Grousset/tuxayo changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #162797|0 |1 is obsolete| | --- Comment #47 from Victor Grousset/tuxayo --- Created attachment 162802 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162802&action=edit Bug 33268: Add tests for context module priority Signed-off-by: David Nind Signed-off-by: Tomas Cohen Arazi Edit: tidied inline (tcohen) Signed-off-by: Martin Renvoize -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Mar 6 00:33:58 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 05 Mar 2024 23:33:58 +0000 Subject: [Koha-bugs] [Bug 33268] Overlay rules don't work correctly when source is set to * In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33268 Victor Grousset/tuxayo changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #162798|0 |1 is obsolete| | --- Comment #48 from Victor Grousset/tuxayo --- Created attachment 162803 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162803&action=edit Bug 33268: Overlay rules don't work correctly when source is set to * Fallback to overlay rules with wildcard filter if no match found for exact filter match. To test: 1) Run tests t/db_dependent/Biblio/MarcOverlayRules.t Sponsored-by: Gothenburg University Library Signed-off-by: David Nind Signed-off-by: Tomas Cohen Arazi Edit: tidied inline (tcohen) Signed-off-by: Martin Renvoize -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Mar 6 00:34:01 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 05 Mar 2024 23:34:01 +0000 Subject: [Koha-bugs] [Bug 33268] Overlay rules don't work correctly when source is set to * In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33268 Victor Grousset/tuxayo changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #162799|0 |1 is obsolete| | --- Comment #49 from Victor Grousset/tuxayo --- Created attachment 162804 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162804&action=edit Bug 33268: If rules exists add rules to preserve current behavior -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Mar 6 00:34:06 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 05 Mar 2024 23:34:06 +0000 Subject: [Koha-bugs] [Bug 33268] Overlay rules don't work correctly when source is set to * In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33268 Victor Grousset/tuxayo changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #162800|0 |1 is obsolete| | --- Comment #50 from Victor Grousset/tuxayo --- Created attachment 162805 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162805&action=edit Bug 33268: (QA follow-up): tidy up code -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Mar 6 00:52:36 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 05 Mar 2024 23:52:36 +0000 Subject: [Koha-bugs] [Bug 33268] Overlay rules don't work correctly when source is set to * In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33268 Victor Grousset/tuxayo changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Needs Signoff |Failed QA --- Comment #51 from Victor Grousset/tuxayo --- I was a bit too quick to signoff the patches. That indeed doesn't look like a change that can only have automated tests (thanks for these though) without some basic manual testing. So I tried something based on comment 0 1. Administration => record overlay rules 2. Add this: Module Filter Tag Preset Added Appended Removed Deleted Source Z39.50 245 Protect Skip Skip Skip Skip Source * 300 Protect Skip Skip Skip Skip Source Batch record modification 245 Protect Skip Skip Skip Skip 3. Add MARC modification templates: Update existing or add new field 245$a with value CATSCATSCATSCATS Update existing or add new field 300$a with value CATSCATSCATSCATS 4. Find a record that has those field (likely any record would) 5. Use batch record modification on the record 6. 300$a should have been catified (expected, that's the bug) 7. 245$a is preserved 8. Change the values of the two subfields to something else 9. Apply the patch, restart services 10. Use batch record modification on the record 11. 300$a should be preserved, cat protection should have worked But no it still got changed :( It's the first time I'm using record overlay rules so there is likely a mistake there. Either that or there is still a bug. So in the end, test plan needed or bug found. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Mar 6 00:54:29 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 05 Mar 2024 23:54:29 +0000 Subject: [Koha-bugs] [Bug 36111] 856$h should not appear as a link in detailed record In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36111 --- Comment #14 from Victor Grousset/tuxayo --- No need, David did it when signing off :) -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Mar 6 01:07:42 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 06 Mar 2024 00:07:42 +0000 Subject: [Koha-bugs] [Bug 36227] No warning if placing hold on item group with no items In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36227 --- Comment #1 from Lucas Gass --- Created attachment 162806 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162806&action=edit Bug 36227: Add warning when item group has no holdable items To test: 1. Enable EnableItemGroups and EnableItemGroupHolds 2. Find a bib and add an item group but do not attach any items to the item group. 3. Place a hold from the staff interface. 4. Under Hold next available item from an item group you see the option for your item group, select it and place the hold. 5. It's a hold that can not be filled 6. APPLY PATCH 7. How on the hold page under Hold next available item from an item group there is a 3rd column called 'Holdable items'. 8. Your item group, without any items, should have a disabled radio button and a warning "No holdable items in this item group." 9. Add items to your item group. 10. Now on the hold page in the new 'Holdable items' you should see links for each item, make sure those links work. -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Wed Mar 6 01:08:44 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 06 Mar 2024 00:08:44 +0000 Subject: [Koha-bugs] [Bug 36227] No warning if placing hold on item group with no items In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36227 Lucas Gass changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |lucas at bywatersolutions.com Patch complexity|--- |String patch Assignee|koha-bugs at lists.koha-commun |lucas at bywatersolutions.com |ity.org | -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Mar 6 01:34:07 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 06 Mar 2024 00:34:07 +0000 Subject: [Koha-bugs] [Bug 36227] No warning if placing hold on item group with no items In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36227 Lucas Gass changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |Needs Signoff -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Mar 6 01:34:09 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 06 Mar 2024 00:34:09 +0000 Subject: [Koha-bugs] [Bug 36227] No warning if placing hold on item group with no items In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36227 --- Comment #2 from Lucas Gass --- Created attachment 162807 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162807&action=edit Bug 36227: Remove item group option if there are no items To test: 1. Test from OPAC. Any item group without items in it should not display as an option in the "Request specific item group:" dropdown -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Mar 6 01:35:03 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 06 Mar 2024 00:35:03 +0000 Subject: [Koha-bugs] [Bug 36225] Koha should warn if item group with holds on that group is being deleted In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36225 Lucas Gass changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |lucas at bywatersolutions.com -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Mar 6 01:37:15 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 06 Mar 2024 00:37:15 +0000 Subject: [Koha-bugs] [Bug 36227] No warning if placing hold on item group with no items In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36227 Lucas Gass changed: What |Removed |Added ---------------------------------------------------------------------------- Severity|enhancement |normal -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Mar 6 02:28:39 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 06 Mar 2024 01:28:39 +0000 Subject: [Koha-bugs] [Bug 36238] New: C4::Context->preference doesn't cache values for non-existent sysprefs Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36238 Bug ID: 36238 Summary: C4::Context->preference doesn't cache values for non-existent sysprefs Change sponsored?: --- Product: Koha Version: master Hardware: All OS: All Status: NEW Severity: minor Priority: P5 - low Component: Architecture, internals, and plumbing Assignee: koha-bugs at lists.koha-community.org Reporter: dcook at prosentient.com.au QA Contact: testopia at bugs.koha-community.org If you try to look up a system preference that doesn't exist, C4::Context won't cache a value for it. Overall, it is logical not to cache a system preference that doesn't exist in the systempreferences database table. However, maybe you distribute a plugin or template which uses a local system preference, and it only exists in some systems. On the systems missing the preference, you'll be doing a database call every time instead of using the cached value of nothing. This is suboptimal from a performance perspective. -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Mar 6 02:55:14 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 06 Mar 2024 01:55:14 +0000 Subject: [Koha-bugs] [Bug 36239] New: Availability calculation in OPAC Results XSLT is too slow Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36239 Bug ID: 36239 Summary: Availability calculation in OPAC Results XSLT is too slow Change sponsored?: --- Product: Koha Version: master Hardware: All OS: All Status: NEW Severity: enhancement Priority: P5 - low Component: Architecture, internals, and plumbing Assignee: koha-bugs at lists.koha-community.org Reporter: dcook at prosentient.com.au QA Contact: testopia at bugs.koha-community.org buildKohaItemsNamespace is really slow in XSLTParse4Display when there is a record with a large number of items. On one system, we notice a search on the staff interface is 12 seconds whereas it's 1-2 minutes in the OPAC. I'm slowly tweaking things to improve the speed, but one of the big killers is buildKohaItemsNamespace. I think there are many use cases for having a Real Time Availability API endpoint, and this would be one of them. We could have a little loading CSS-driven graphic, send a list of biblionumbers to the endpoint asynchronously, and then render the availability. If we handle the availability through that endpoint (or at least a singular model method), we should be able to make further optimizations to availability calculation as well... -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Mar 6 03:22:43 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 06 Mar 2024 02:22:43 +0000 Subject: [Koha-bugs] [Bug 36239] Availability calculation in OPAC Results XSLT is too slow In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36239 --- Comment #1 from David Cook --- That said, when I actually break it down a bit more, it looks like out of 60 seconds for my example, 20 seconds are availability and 40 seconds is the rest. If it's 10 seconds in the staff interface, then it's probably 30 seconds on OpacHiddenItems which happens before buildKohaItemsNamespace. That's an overgeneralization of course. But if we got rid of OpacHiddenItemsHidesRecord and required people to use OpacSuppression instead then we'd be able to bring OPAC and Staff Interface back to similar times... -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Wed Mar 6 08:40:39 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 06 Mar 2024 07:40:39 +0000 Subject: [Koha-bugs] [Bug 33244] Do not show lists in OPAC if OpacPublic is disabled In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33244 M changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |schodkowy.omegi-0r at icloud.c | |om --- Comment #16 from M --- Hello, this patch seems to have a side effect of the "Language" dropdown now being awkwardly placed on center-right (regardless of whether user is logged in our out). This is caused by the below CSS rules whose blame traces back to this patch, and removing them fixes the issue. #members { + flex-grow: 1; + justify-content: flex-end; Is this intentional change? I can only assume it's not, since I don't see any mention of this in the discussion. Screenshots of the problem: https://imgur.com/a/hDZvn7B It looks like this patch conditionally hides cart+lists. The CSS above then makes only language shown on the left, and the login on the right. But when things aren't hidden, it changes the original position. Should I create a new bug about this? -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Mar 6 09:43:31 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 06 Mar 2024 08:43:31 +0000 Subject: [Koha-bugs] [Bug 36240] New: Add links to "System information" warnings Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36240 Bug ID: 36240 Summary: Add links to "System information" warnings Change sponsored?: --- Product: Koha Version: master Hardware: All OS: All Status: NEW Severity: enhancement Priority: P5 - low Component: About Assignee: koha-bugs at lists.koha-community.org Reporter: magnus at libriotech.no QA Contact: testopia at bugs.koha-community.org The example that made me think of this is: Warning The patron used for the self checkout module at the OPAC does not have the self_check => self_checkout_module permission. That tells me there is a problem with some patron, but then I have to either search for that patron by name (did I call it "self check" or "sco"?), or remember to look up the borrowernumber in the AutoSelfCheckID syspref, and then find the patron with that borrowernumber. It would be much more user friendly if there was a link directly to the patron in question, from the warning. The way this works today is that about.pl checks for the problem and if there is a problem it sets a variable that is passed along to the template, which renders the warning. So we need to find a way to also pass the borrowernumber (or other relevant information for other warnings.) -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Mar 6 10:45:00 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 06 Mar 2024 09:45:00 +0000 Subject: [Koha-bugs] [Bug 34478] Full CSRF protection In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=34478 Pedro Amorim changed: What |Removed |Added ---------------------------------------------------------------------------- Blocks| |36241 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36241 [Bug 36241] ILL Batches are broken -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Mar 6 10:45:00 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 06 Mar 2024 09:45:00 +0000 Subject: [Koha-bugs] [Bug 36241] New: ILL Batches are broken Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36241 Bug ID: 36241 Summary: ILL Batches are broken Change sponsored?: --- Product: Koha Version: master Hardware: All OS: All Status: NEW Severity: enhancement Priority: P5 - low Component: ILL Assignee: koha-bugs at lists.koha-community.org Reporter: pedro.amorim at ptfs-europe.com CC: pedro.amorim at ptfs-europe.com Depends on: 34478 Caused by bash op_must_start_with_cud-perl.sh Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=34478 [Bug 34478] Full CSRF protection -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Mar 6 10:50:03 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 06 Mar 2024 09:50:03 +0000 Subject: [Koha-bugs] [Bug 36242] New: Zebra not indexing CDU authorities Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36242 Bug ID: 36242 Summary: Zebra not indexing CDU authorities Change sponsored?: --- Product: Koha Version: 23.05 Hardware: All OS: Linux Status: NEW Severity: major Priority: P5 - low Component: MARC Authority data support Assignee: koha-bugs at lists.koha-community.org Reporter: miguel.soares at cm-evora.pt QA Contact: testopia at bugs.koha-community.org When I search for authorities, the CDU authority is not used by any registry. However, records associated with this authority were created. -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Mar 6 10:57:28 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 06 Mar 2024 09:57:28 +0000 Subject: [Koha-bugs] [Bug 36241] ILL Batches are broken In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36241 Pedro Amorim changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |Needs Signoff Patch complexity|--- |Trivial patch -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Wed Mar 6 10:57:32 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 06 Mar 2024 09:57:32 +0000 Subject: [Koha-bugs] [Bug 36241] ILL Batches are broken In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36241 --- Comment #1 from Pedro Amorim --- Created attachment 162808 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162808&action=edit Bug 36241: Fix wrong cud-search This line is supposed to searhc for plugins with the method 'provides_api' which returns a {type => 'search'} entry among others. This has nothing to do with search vs cud-search from in forms -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Mar 6 10:57:36 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 06 Mar 2024 09:57:36 +0000 Subject: [Koha-bugs] [Bug 36241] ILL Batches are broken In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36241 --- Comment #2 from Pedro Amorim --- Created attachment 162809 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162809&action=edit Bug 36241: Update missing query_type => op in ill-batch.inc Test plan: - Add 'FreeForm' backend and enable ILLModule, run: bash <(curl -s https://raw.githubusercontent.com/ammopt/koha-ill-dev/master/start-ill-dev.sh) - Install a metadata enrichment plugin, e.g.: https://github.com/PTFS-Europe/koha-plugin-api-pubmed/releases - Add 5 batches, run the following command in kshell: for x in {1..5}; do echo "INSERT INTO illbatches (name, backend, library_id, status_code, patron_id) VALUES ('$x', 'FreeForm', 'CPL', 'NEW', 52);"; done | koha-mysql kohadev - Visit ILL batches page: /cgi-bin/koha/ill/ill-requests.pl?method=batch_list - Confirm no batches are shown. Apply patch. Repeat. -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Wed Mar 6 10:58:32 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 06 Mar 2024 09:58:32 +0000 Subject: [Koha-bugs] [Bug 36241] ILL Batches are broken In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36241 Pedro Amorim changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |david at davidnind.com, | |martin.renvoize at ptfs-europe | |.com, nugged at gmail.com, | |victor at tuxayo.net -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Mar 6 10:58:43 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 06 Mar 2024 09:58:43 +0000 Subject: [Koha-bugs] [Bug 36241] ILL Batches are broken In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36241 Pedro Amorim changed: What |Removed |Added ---------------------------------------------------------------------------- Keywords| |regression Severity|enhancement |normal -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Wed Mar 6 10:59:08 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 06 Mar 2024 09:59:08 +0000 Subject: [Koha-bugs] [Bug 36130] ILL batches table not showing all batches In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36130 Pedro Amorim changed: What |Removed |Added ---------------------------------------------------------------------------- Depends on|30719 |36241 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30719 [Bug 30719] ILL should provide the ability to create batch requests https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36241 [Bug 36241] ILL Batches are broken -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Mar 6 10:59:08 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 06 Mar 2024 09:59:08 +0000 Subject: [Koha-bugs] [Bug 30719] ILL should provide the ability to create batch requests In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30719 Pedro Amorim changed: What |Removed |Added ---------------------------------------------------------------------------- Blocks|36130 | Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36130 [Bug 36130] ILL batches table not showing all batches -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Mar 6 10:59:08 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 06 Mar 2024 09:59:08 +0000 Subject: [Koha-bugs] [Bug 36241] ILL Batches are broken In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36241 Pedro Amorim changed: What |Removed |Added ---------------------------------------------------------------------------- Blocks| |36130 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36130 [Bug 36130] ILL batches table not showing all batches -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Mar 6 10:59:22 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 06 Mar 2024 09:59:22 +0000 Subject: [Koha-bugs] [Bug 36130] ILL batches table not showing all batches In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36130 Pedro Amorim changed: What |Removed |Added ---------------------------------------------------------------------------- Depends on| |30719 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30719 [Bug 30719] ILL should provide the ability to create batch requests -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Mar 6 10:59:22 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 06 Mar 2024 09:59:22 +0000 Subject: [Koha-bugs] [Bug 30719] ILL should provide the ability to create batch requests In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30719 Pedro Amorim changed: What |Removed |Added ---------------------------------------------------------------------------- Blocks| |36130 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36130 [Bug 36130] ILL batches table not showing all batches -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Mar 6 11:01:04 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 06 Mar 2024 10:01:04 +0000 Subject: [Koha-bugs] [Bug 36130] ILL batches table not showing all batches In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36130 Pedro Amorim changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #162319|0 |1 is obsolete| | --- Comment #5 from Pedro Amorim --- Created attachment 162810 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162810&action=edit Bug 36130: Fetch all batches for the table Test plan, ktd: - Add 'FreeForm' backend and enable ILLModule, run: bash <(curl -s https://raw.githubusercontent.com/ammopt/koha-ill-dev/master/start-ill-dev.sh) - Install a metadata enrichment plugin, e.g.: https://github.com/PTFS-Europe/koha-plugin-api-pubmed/releases - Add 21 batches, run the following command in kshell: for x in {1..21}; do echo "INSERT INTO illbatches (name, backend, library_id, status_code, patron_id) VALUES ('$x', 'FreeForm', 'CPL', 'NEW', 52);"; done | koha-mysql kohadev - Visit ILL batches page: /cgi-bin/koha/ill/ill-requests.pl?method=batch_list - Notice only 20 batches show. - Apply patch. Notice 20 batches show but now there is a page 2 link. - Test page 2 works as expected, delete a batch, notice only 1 page with 20 batches shows again. Signed-off-by: David Nind Signed-off-by: Edith Speller -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Mar 6 11:02:44 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 06 Mar 2024 10:02:44 +0000 Subject: [Koha-bugs] [Bug 36130] ILL batches table not showing all batches In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36130 --- Comment #6 from Pedro Amorim --- (In reply to Victor Grousset/tuxayo from comment #4) > Any hint of some implicit step that I would have missed? Thank you Victor, couple things were happening here: 1) I was missing a step in the test plan (the metadata enrichment plugin step is required) 2) The base ILL batches functionality broke after bug 34478. This current bug now depends on bug 36241 in order to work properly. Thank you. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Mar 6 11:03:55 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 06 Mar 2024 10:03:55 +0000 Subject: [Koha-bugs] [Bug 36242] Zebra not indexing CDU authorities In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36242 --- Comment #1 from Miguel --- Created attachment 162811 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162811&action=edit Print screen -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Wed Mar 6 11:26:10 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 06 Mar 2024 10:26:10 +0000 Subject: [Koha-bugs] [Bug 35331] Add an ILL table actions plugin hook In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35331 Pedro Amorim changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #160634|0 |1 is obsolete| | --- Comment #27 from Pedro Amorim --- Created attachment 162812 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162812&action=edit Bug 35331: Add table actions hook to ILL table Test plan, k-t-d, apply patches: 1) Install FreeForm backend, enable ILLModule sys pref, run: bash <(curl -s https://raw.githubusercontent.com/ammopt/koha-ill-dev/master/start-ill-dev.sh) 2) Navigate to ILL requests, visit: /cgi-bin/koha/ill/ill-requests.pl 3) Click '+New ILL request', select a type, enter an existing cardnumber (e.g. '42') and pick a library. Click 'Create'. 4) Visit ILL requests again, repeat 2) 5) Notice the row for the created request has the already existing action button 'Manage request' 6) Install the ILL actions plugin, located at: https://github.com/PTFS-Europe/koha-plugin-ill-actions/releases/tag/v1.0.0 7) Restart plack, run: koha-plack --restart kohadev 8) Repeat 4) and 5). Notice the row for the created request now has a new custom action in addition to the already existing core one. Signed-off-by: David Nind Signed-off-by: Kyle M Hall -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Mar 6 11:26:14 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 06 Mar 2024 10:26:14 +0000 Subject: [Koha-bugs] [Bug 35331] Add an ILL table actions plugin hook In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35331 --- Comment #28 from Pedro Amorim --- Created attachment 162813 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162813&action=edit Bug 35331: CSRF follow-up Update method to op -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Mar 6 11:26:17 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 06 Mar 2024 10:26:17 +0000 Subject: [Koha-bugs] [Bug 35331] Add an ILL table actions plugin hook In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35331 Pedro Amorim changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #160635|0 |1 is obsolete| | --- Comment #29 from Pedro Amorim --- Created attachment 162814 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162814&action=edit Bug 35331: Add plugin hook tests prove t/db_dependent/Koha/Plugins/Ill_hooks.t Signed-off-by: David Nind Signed-off-by: Kyle M Hall -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Mar 6 11:26:19 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 06 Mar 2024 10:26:19 +0000 Subject: [Koha-bugs] [Bug 35331] Add an ILL table actions plugin hook In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35331 Pedro Amorim changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #160636|0 |1 is obsolete| | --- Comment #30 from Pedro Amorim --- Created attachment 162815 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162815&action=edit Bug 35331: (QA follow-up): Avoid code pattern iterating on plugin responses (see bug 28010) Use plugin call pattern established in bug 28211. Please utilize version 1.0.1 of the plugin to test this follow-up: https://github.com/PTFS-Europe/koha-plugin-ill-actions/releases/tag/v1.0.1 Signed-off-by: David Nind Signed-off-by: Kyle M Hall -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Mar 6 11:26:22 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 06 Mar 2024 10:26:22 +0000 Subject: [Koha-bugs] [Bug 35331] Add an ILL table actions plugin hook In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35331 Pedro Amorim changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #160637|0 |1 is obsolete| | --- Comment #31 from Pedro Amorim --- Created attachment 162816 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162816&action=edit Bug 35331: (QA follow-up): Patron ILL history With the previous patches applied and successfull test plans, access the users ILL history page, visit: /cgi-bin/koha/members/ill-requests.pl?borrowernumber=51 Notice you get an error. Apply this patch, and try again, notice the error is gone and the custom plugin action is also in the patron's ILL history table Signed-off-by: David Nind Signed-off-by: Kyle M Hall -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Mar 6 11:27:40 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 06 Mar 2024 10:27:40 +0000 Subject: [Koha-bugs] [Bug 35331] Add an ILL table actions plugin hook In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35331 --- Comment #32 from Pedro Amorim --- Rebased on bug 34478 -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Mar 6 11:44:22 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 06 Mar 2024 10:44:22 +0000 Subject: [Koha-bugs] [Bug 35581] ILL Koha classes are not consistent In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35581 Pedro Amorim changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #162020|0 |1 is obsolete| | --- Comment #40 from Pedro Amorim --- Created attachment 162817 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162817&action=edit Bug 35581: Illbackend.pm -> ILL/Backend.pm Signed-off-by: David Nind -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Mar 6 11:44:28 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 06 Mar 2024 10:44:28 +0000 Subject: [Koha-bugs] [Bug 35581] ILL Koha classes are not consistent In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35581 Pedro Amorim changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #162021|0 |1 is obsolete| | --- Comment #41 from Pedro Amorim --- Created attachment 162818 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162818&action=edit Bug 35581: Illbatch.pm -> ILL/Batch.pm Illbatches.pm -> ILL/Batches.pm Signed-off-by: David Nind -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Mar 6 11:44:32 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 06 Mar 2024 10:44:32 +0000 Subject: [Koha-bugs] [Bug 35581] ILL Koha classes are not consistent In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35581 Pedro Amorim changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #162022|0 |1 is obsolete| | --- Comment #42 from Pedro Amorim --- Created attachment 162819 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162819&action=edit Bug 35581: Illbatchstatus.pm -> ILL/Batch/status.pm Illbatchstatuses.pm -> ILL/Batch/Statuses.pm Signed-off-by: David Nind -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Mar 6 11:44:38 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 06 Mar 2024 10:44:38 +0000 Subject: [Koha-bugs] [Bug 35581] ILL Koha classes are not consistent In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35581 Pedro Amorim changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #162023|0 |1 is obsolete| | --- Comment #43 from Pedro Amorim --- Created attachment 162820 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162820&action=edit Bug 35581: Illcomment.pm -> ILL/Comment.pm Illcomments.pm -> ILL/Comments.pm Signed-off-by: David Nind -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Mar 6 11:44:41 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 06 Mar 2024 10:44:41 +0000 Subject: [Koha-bugs] [Bug 35581] ILL Koha classes are not consistent In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35581 Pedro Amorim changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #162024|0 |1 is obsolete| | --- Comment #44 from Pedro Amorim --- Created attachment 162821 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162821&action=edit Bug 35581: Illrequestattribute.pm -> ILL/Request/Attribute.pm Illrequestattributes.pm -> ILL/Request/Attributes.pm Signed-off-by: David Nind -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Mar 6 11:44:47 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 06 Mar 2024 10:44:47 +0000 Subject: [Koha-bugs] [Bug 35581] ILL Koha classes are not consistent In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35581 Pedro Amorim changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #162025|0 |1 is obsolete| | --- Comment #45 from Pedro Amorim --- Created attachment 162822 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162822&action=edit Bug 35581: Koha/Illrequest/Workflow.pm -> Koha/ILL/Request/Workflow.pm Koha/Illrequest/Workflow/Availability.pm -> Koha/ILL/Request/Workflow/Availability.pm Koha/Illrequest/Workflow/TypeDisclaimer.pm -> Koha/ILL/Request/Workflow/TypeDisclaimer.pm Signed-off-by: David Nind -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Mar 6 11:44:51 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 06 Mar 2024 10:44:51 +0000 Subject: [Koha-bugs] [Bug 35581] ILL Koha classes are not consistent In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35581 Pedro Amorim changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #162026|0 |1 is obsolete| | --- Comment #46 from Pedro Amorim --- Created attachment 162823 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162823&action=edit Bug 35581: Koha/Illrequest/Config.pm -> Koha/ILL/Request/Config.pm Signed-off-by: David Nind -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Mar 6 11:44:55 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 06 Mar 2024 10:44:55 +0000 Subject: [Koha-bugs] [Bug 35581] ILL Koha classes are not consistent In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35581 Pedro Amorim changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #162027|0 |1 is obsolete| | --- Comment #47 from Pedro Amorim --- Created attachment 162824 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162824&action=edit Bug 35581: Koha/Illrequest/Logger.pm -> Koha/ILL/Request/Logger.pm Signed-off-by: David Nind -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Mar 6 11:45:03 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 06 Mar 2024 10:45:03 +0000 Subject: [Koha-bugs] [Bug 35581] ILL Koha classes are not consistent In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35581 Pedro Amorim changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #162028|0 |1 is obsolete| | --- Comment #48 from Pedro Amorim --- Created attachment 162825 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162825&action=edit Bug 35581: Koha/Illrequest/SupplierUpdate.pm -> Koha/ILL/Request/SupplierUpdate.pm Koha/Illrequest/SupplierUpdateProcessor.pm -> Koha/ILL/Request/SupplierUpdateProcessor.pm Signed-off-by: David Nind -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Mar 6 11:45:08 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 06 Mar 2024 10:45:08 +0000 Subject: [Koha-bugs] [Bug 35581] ILL Koha classes are not consistent In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35581 Pedro Amorim changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #162029|0 |1 is obsolete| | --- Comment #49 from Pedro Amorim --- Created attachment 162826 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162826&action=edit Bug 35581: Koha/Illrequest.pm -> Koha/ILL/Request.pm Koha/Illrequests.pm -> Koha/ILL/Requests.pm Merged: t/db_dependent/Koha/Illrequests.t t/db_dependent/Illrequests.t Into: t/db_dependent/Koha/ILL/Requests.t ILL classes file structure is, for the most part, around 7 years old and doesn't follow a strict logic. It's so confusing that some test files exist redundantly. This housekeeping should help future work in regards to ISO18626 to add Koha as a supplying agency instead of just requesting agency, as is now. It should also help future housekeeping of moving backend related logic out of the Illrequest.pm into Illbackend.pm (now ILL/Request.pm and ILL/Backend.pm as of this patchset). It should also help in structuring the addition of a master generic form (see bug 35570) This patchset will require existing backends to be updated to match the new class names and structure, if they invoke them. Test plan, k-t-d, run tests: prove t/db_dependent/api/v1/ill_* prove t/db_dependent/Koha/ILL/* Test plan, k-t-d, manual: 1) Install FreeForm, enable ILL module, run: bash <(curl -s https://raw.githubusercontent.com/ammopt/koha-ill-dev/master/start-ill-dev.sh) 2) You'll have to switch the FreeForm repo to the one compatible with this work, like: cd /kohadevbox/koha/Koha/Illbackends/FreeForm git checkout reorganize_ILL 3) Do some generic ILL testing: 3.1) Create a request 3.2) Add a comment to a request 3.3) Edit a request 3.4) Edit a request's item metadata 3.5) Confirm a request 3.6) List requests 3.7) Filter requests list using left side filters 4) Install a metadata enrichment plugin: https://github.com/PTFS-Europe/koha-plugin-api-pubmed 4.1) Create an ILL batch and insert a pubmedid like 123 4.2) Add the request and finish batch 5) Verify all of the above works as expected Signed-off-by: David Nind -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Mar 6 11:45:16 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 06 Mar 2024 10:45:16 +0000 Subject: [Koha-bugs] [Bug 35581] ILL Koha classes are not consistent In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35581 Pedro Amorim changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #162030|0 |1 is obsolete| | --- Comment #50 from Pedro Amorim --- Created attachment 162827 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162827&action=edit Bug 35581: QA Follow-up: Fix tidy warnings Fix forbidden pattern: Incorrect license statement (using postal address) Signed-off-by: David Nind -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Mar 6 11:45:20 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 06 Mar 2024 10:45:20 +0000 Subject: [Koha-bugs] [Bug 35581] ILL Koha classes are not consistent In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35581 Pedro Amorim changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #162031|0 |1 is obsolete| | --- Comment #51 from Pedro Amorim --- Created attachment 162828 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162828&action=edit Bug 35581: (QA follow-up): Missed Illrequests.pm REST API class Koha/REST/V1/Illrequests.pm -> Koha/REST/V1/ILL/Requests.pm Test plan: 1 Apply patch 2 Make sure tests pass, run: prove t/db_dependent/api/v1/ill_* -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Mar 6 11:45:23 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 06 Mar 2024 10:45:23 +0000 Subject: [Koha-bugs] [Bug 35581] ILL Koha classes are not consistent In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35581 Pedro Amorim changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #162032|0 |1 is obsolete| | --- Comment #52 from Pedro Amorim --- Created attachment 162829 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162829&action=edit Bug 35581: (QA follow-up): Update changes coming from bug 35331 Test plan: prove t/db_dependent/Koha/Plugins/Ill_hooks.t -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Mar 6 11:46:13 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 06 Mar 2024 10:46:13 +0000 Subject: [Koha-bugs] [Bug 35581] ILL Koha classes are not consistent In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35581 --- Comment #53 from Pedro Amorim --- Rebased on bug 34478 -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Mar 6 12:10:34 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 06 Mar 2024 11:10:34 +0000 Subject: [Koha-bugs] [Bug 34979] System preferences missing from sysprefs.sql In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=34979 Mohd Hafiz Yusoff changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |mhby87 at gmail.com --- Comment #39 from Mohd Hafiz Yusoff --- Error from this upgrade Upgrade to 23.11.02.002 [19:05:56]: Bug 34979 - Fix system preference discrepancies Fix mistakes in system preferences, if necessary: ERROR - {UNKNOWN}: DBI Exception: DBD::mysql::db do failed: Duplicate entry 'OAI-PMH:AutoUpdateSetsEmbedItemData' for key 'PRIMARY' at /usr/share/koha/lib/C4/Installer.pm line 741 -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Mar 6 12:15:44 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 06 Mar 2024 11:15:44 +0000 Subject: [Koha-bugs] [Bug 36242] Zebra not indexing CDU authorities In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36242 Miguel changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |miguel.soares at cm-evora.pt -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Mar 6 12:54:49 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 06 Mar 2024 11:54:49 +0000 Subject: [Koha-bugs] [Bug 36193] CSRF - Code review missed In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36193 --- Comment #21 from Tomás Cohen Arazi --- Created attachment 162830 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162830&action=edit Bug 36193: Make restore icon consistent in cash registers Signed-off-by: Tomas Cohen Arazi -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Wed Mar 6 12:54:53 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 06 Mar 2024 11:54:53 +0000 Subject: [Koha-bugs] [Bug 36193] CSRF - Code review missed In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36193 --- Comment #22 from Tomás Cohen Arazi --- Created attachment 162831 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162831&action=edit Bug 36193: cud- treatment for catalogue/stockrotation.pl Signed-off-by: Tomas Cohen Arazi -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Wed Mar 6 13:33:48 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 06 Mar 2024 12:33:48 +0000 Subject: [Koha-bugs] [Bug 36241] ILL Batches are broken In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36241 Pedro Amorim changed: What |Removed |Added ---------------------------------------------------------------------------- Assignee|koha-bugs at lists.koha-commun |pedro.amorim at ptfs-europe.co |ity.org |m -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Wed Mar 6 13:35:26 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 06 Mar 2024 12:35:26 +0000 Subject: [Koha-bugs] [Bug 36243] New: ILL "Edit request" action is broken Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36243 Bug ID: 36243 Summary: ILL "Edit request" action is broken Change sponsored?: --- Product: Koha Version: master Hardware: All OS: All Status: NEW Severity: enhancement Priority: P5 - low Component: ILL Assignee: pedro.amorim at ptfs-europe.com Reporter: pedro.amorim at ptfs-europe.com CC: david at davidnind.com, martin.renvoize at ptfs-europe.com, nugged at gmail.com, pedro.amorim at ptfs-europe.com, tomascohen at gmail.com, victor at tuxayo.net Depends on: 34478 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=34478 [Bug 34478] Full CSRF protection -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Mar 6 13:35:26 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 06 Mar 2024 12:35:26 +0000 Subject: [Koha-bugs] [Bug 34478] Full CSRF protection In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=34478 Pedro Amorim changed: What |Removed |Added ---------------------------------------------------------------------------- Blocks| |36243 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36243 [Bug 36243] ILL "Edit request" action is broken -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Mar 6 14:06:13 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 06 Mar 2024 13:06:13 +0000 Subject: [Koha-bugs] [Bug 36243] ILL "Edit request" action is broken In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36243 Pedro Amorim changed: What |Removed |Added ---------------------------------------------------------------------------- Patch complexity|--- |Trivial patch Status|NEW |Needs Signoff -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Mar 6 14:06:17 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 06 Mar 2024 13:06:17 +0000 Subject: [Koha-bugs] [Bug 36243] ILL "Edit request" action is broken In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36243 --- Comment #1 from Pedro Amorim --- Created attachment 162832 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162832&action=edit Bug 36243: Remove cud- from op 'cud-' needs to be removed here because it's showing the form, not handling its POST submission -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Mar 6 14:06:19 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 06 Mar 2024 13:06:19 +0000 Subject: [Koha-bugs] [Bug 36243] ILL "Edit request" action is broken In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36243 --- Comment #2 from Pedro Amorim --- Created attachment 162833 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162833&action=edit Bug 36243: Update edit_action to cud-edit_action 1) Install FreeForm, enable ILL module, run: bash <(curl -s https://raw.githubusercontent.com/ammopt/koha-ill-dev/master/start-ill-dev.sh) 2) You'll have to switch the FreeForm branch to the one compatible with this work, i.e.: cd /kohadevbox/koha/Koha/Illbackends/FreeForm git checkout b_36243 3) Restart plack: koha-plack --restart kohadev 4) Create a new FreeForm request, visit: /cgi-bin/koha/ill/ill-requests.pl?method=create&backend=FreeForm 5) Set 'type' enter '42' in cardnumber and pick a library. Click 'Create'. 6) Edit that request, click "manage request" or if #1 visit: /cgi-bin/koha/ill/ill-requests.pl?op=illview&illrequest_id=1 7) Click "Edit request". Click "Submit". Notice it errors "No CSRF token passed for POST" 9) Apply patches. Restart plack. 10) Repeat 7) -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Mar 6 14:12:02 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 06 Mar 2024 13:12:02 +0000 Subject: [Koha-bugs] [Bug 36245] New: ILL - Custom backend form action is broken Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36245 Bug ID: 36245 Summary: ILL - Custom backend form action is broken Change sponsored?: --- Product: Koha Version: master Hardware: All OS: All Status: NEW Severity: enhancement Priority: P5 - low Component: ILL Assignee: pedro.amorim at ptfs-europe.com Reporter: pedro.amorim at ptfs-europe.com CC: pedro.amorim at ptfs-europe.com Depends on: 34478 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=34478 [Bug 34478] Full CSRF protection -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Mar 6 14:12:02 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 06 Mar 2024 13:12:02 +0000 Subject: [Koha-bugs] [Bug 34478] Full CSRF protection In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=34478 Pedro Amorim changed: What |Removed |Added ---------------------------------------------------------------------------- Blocks| |36245 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36245 [Bug 36245] ILL - Custom backend form action is broken -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Mar 6 14:12:51 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 06 Mar 2024 13:12:51 +0000 Subject: [Koha-bugs] [Bug 36245] ILL - Custom backend form action is broken In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36245 Pedro Amorim changed: What |Removed |Added ---------------------------------------------------------------------------- Depends on| |36243 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36243 [Bug 36243] ILL "Edit request" action is broken -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Mar 6 14:12:51 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 06 Mar 2024 13:12:51 +0000 Subject: [Koha-bugs] [Bug 36243] ILL "Edit request" action is broken In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36243 Pedro Amorim changed: What |Removed |Added ---------------------------------------------------------------------------- Blocks| |36245 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36245 [Bug 36245] ILL - Custom backend form action is broken -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Mar 6 14:13:59 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 06 Mar 2024 13:13:59 +0000 Subject: [Koha-bugs] [Bug 36246] New: Have a centralized method for submitting a form via a link Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36246 Bug ID: 36246 Summary: Have a centralized method for submitting a form via a link Change sponsored?: --- Product: Koha Version: master Hardware: All OS: All Status: NEW Severity: enhancement Priority: P5 - low Component: Architecture, internals, and plumbing Assignee: koha-bugs at lists.koha-community.org Reporter: nick at bywatersolutions.com QA Contact: testopia at bugs.koha-community.org With new CSRF protection we have a fair number places where action buttons have become full forms, or links need to use JS to submit a form. We have generally agreed that the form should be in the page, and the js can add the necessary values for POSTing I think we should go a step further and have a class that can be used to submit a form via a link with data elements, i.e. -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Mar 6 14:15:48 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 06 Mar 2024 13:15:48 +0000 Subject: [Koha-bugs] [Bug 36245] ILL - Custom backend form action is broken In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36245 Pedro Amorim changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |Needs Signoff -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Mar 6 14:15:56 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 06 Mar 2024 13:15:56 +0000 Subject: [Koha-bugs] [Bug 36245] ILL - Custom backend form action is broken In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36245 --- Comment #1 from Pedro Amorim --- Created attachment 162834 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162834&action=edit Bug 36245: Remove cud- from op 1) Install FreeForm, enable ILL module, run: bash <(curl -s https://raw.githubusercontent.com/ammopt/koha-ill-dev/master/start-ill-dev.sh) 2) You'll have to switch the FreeForm branch to the one compatible with this work, i.e.: cd /kohadevbox/koha/Koha/Illbackends/FreeForm git checkout b_36243 3) Restart plack: koha-plack --restart kohadev 4) Create a new FreeForm request, visit: /cgi-bin/koha/ill/ill-requests.pl?method=create&backend=FreeForm 5) Set 'type' enter '42' in cardnumber and pick a library. Click 'Create'. 6) Edit that request, click "manage request" or if #1 visit: /cgi-bin/koha/ill/ill-requests.pl?op=illview&illrequest_id=1 7) Click "Edit item metadata". Click "Submit". Notice it explodes. 9) Apply patch. Restart plack. 10) Repeat 7) -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Mar 6 14:16:59 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 06 Mar 2024 13:16:59 +0000 Subject: [Koha-bugs] [Bug 36245] ILL - Custom backend form action is broken In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36245 Pedro Amorim changed: What |Removed |Added ---------------------------------------------------------------------------- Patch complexity|--- |Trivial patch Severity|enhancement |normal Keywords| |regression CC| |david at davidnind.com, | |martin.renvoize at ptfs-europe | |.com, nugged at gmail.com, | |tomascohen at gmail.com, | |victor at tuxayo.net -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Mar 6 14:33:08 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 06 Mar 2024 13:33:08 +0000 Subject: [Koha-bugs] [Bug 36246] Have a centralized method for submitting a form via a link In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36246 Nick Clemens changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |Needs Signoff -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Wed Mar 6 14:33:10 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 06 Mar 2024 13:33:10 +0000 Subject: [Koha-bugs] [Bug 36246] Have a centralized method for submitting a form via a link In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36246 --- Comment #1 from Nick Clemens --- Created attachment 162835 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162835&action=edit Bug 36246: Add JS function/include for submitting forms from link data This patch adds a new js include file form-submit.js which will read data elements from a link and use those to submit a form This patch fixes forms on acqui/invoice.pl as an example To test: 1 - Add some invoices for a vendor 2 - Got to Acquisitions->Invoices 3 - Actions -> Close - confirm it works 4 - Got to 'Closed invoices' - reopen 5 - Go to Details on the invoice 6 - Add an adjustment 7 - Delete the adjustment 8 - Confirm it works -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Mar 6 15:41:23 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 06 Mar 2024 14:41:23 +0000 Subject: [Koha-bugs] [Bug 36247] New: MARC21 Addition to relator terms in technical notice 2024-02-27 Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36247 Bug ID: 36247 Summary: MARC21 Addition to relator terms in technical notice 2024-02-27 Change sponsored?: --- Product: Koha Version: unspecified Hardware: All OS: All Status: NEW Severity: enhancement Priority: P5 - low Component: MARC Bibliographic record staging/import Assignee: koha-bugs at lists.koha-community.org Reporter: caroline.cyr-la-rose at inlibro.com QA Contact: testopia at bugs.koha-community.org The Feb 27, 2024 technical notice https://www.loc.gov/marc/relators/tn240227rel.html added a new relator term gdv [Game developer] - A person or organization who researches, designs, implements or tests video games, computer games, virtual reality (VR) games, etc. -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Mar 6 15:45:15 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 06 Mar 2024 14:45:15 +0000 Subject: [Koha-bugs] [Bug 36248] New: Bookings place on 'any item' always use the first item Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36248 Bug ID: 36248 Summary: Bookings place on 'any item' always use the first item Change sponsored?: --- Product: Koha Version: master Hardware: All OS: All Status: NEW Severity: normal Priority: P5 - low Component: Architecture, internals, and plumbing Assignee: koha-bugs at lists.koha-community.org Reporter: nick at bywatersolutions.com QA Contact: testopia at bugs.koha-community.org When placing a booking and choosing 'any item' - Koha will use the first item available in a booking period - so multiple placed bookings will stack on this item. While overlapping periods are blocked, it does appear odd to the user, and maximizes the chances of an item not being returned in time. It would be nice for libraries to force choosing an item, and/or to select the first item with no bookings, or the least bookings, or just to add some variation to the item selected. -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Mar 6 15:45:29 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 06 Mar 2024 14:45:29 +0000 Subject: [Koha-bugs] [Bug 36248] Bookings place on 'any item' always use the first item In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36248 Nick Clemens changed: What |Removed |Added ---------------------------------------------------------------------------- Assignee|koha-bugs at lists.koha-commun |martin.renvoize at ptfs-europe |ity.org |.com -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Mar 6 15:52:16 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 06 Mar 2024 14:52:16 +0000 Subject: [Koha-bugs] [Bug 36248] Bookings place on 'any item' always use the first item In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36248 Martin Renvoize changed: What |Removed |Added ---------------------------------------------------------------------------- Depends on| |29002 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29002 [Bug 29002] Add ability to book items ahead of time -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Mar 6 15:52:16 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 06 Mar 2024 14:52:16 +0000 Subject: [Koha-bugs] [Bug 29002] Add ability to book items ahead of time In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29002 Martin Renvoize changed: What |Removed |Added ---------------------------------------------------------------------------- Blocks| |36248 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36248 [Bug 36248] Bookings place on 'any item' always use the first item -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Mar 6 15:52:48 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 06 Mar 2024 14:52:48 +0000 Subject: [Koha-bugs] [Bug 36215] Bookings calendar only shows bookings within RESTdefaultPageSize In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36215 Martin Renvoize changed: What |Removed |Added ---------------------------------------------------------------------------- Depends on| |29002 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29002 [Bug 29002] Add ability to book items ahead of time -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Mar 6 15:52:48 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 06 Mar 2024 14:52:48 +0000 Subject: [Koha-bugs] [Bug 29002] Add ability to book items ahead of time In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29002 Martin Renvoize changed: What |Removed |Added ---------------------------------------------------------------------------- Blocks| |36215 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36215 [Bug 36215] Bookings calendar only shows bookings within RESTdefaultPageSize -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Mar 6 16:07:10 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 06 Mar 2024 15:07:10 +0000 Subject: [Koha-bugs] [Bug 36247] MARC21 Addition to relator terms in technical notice 2024-02-27 In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36247 Caroline Cyr La Rose changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |Needs Signoff -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Wed Mar 6 16:07:12 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 06 Mar 2024 15:07:12 +0000 Subject: [Koha-bugs] [Bug 36247] MARC21 Addition to relator terms in technical notice 2024-02-27 In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36247 --- Comment #1 from Caroline Cyr La Rose --- Created attachment 162836 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162836&action=edit Bug 36247: MARC21 Addition to relator terms in technical notice 2024-02-27 This patch adds the relator code gdv (Game developer) in the list of MARC21 relator terms in Koha. To test: 1. Apply patch and reset_all 2. Go to Administration > Authorized values > RELTERMS 3. Search for gdv --> The new relator code should be there with its corresponding term "Game developer" Note: this is added in the installer files. It will not affect existing installations. For existing installations, add the new relator code in Administration > Authorized values > RELTERMS. -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Mar 6 16:09:09 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 06 Mar 2024 15:09:09 +0000 Subject: [Koha-bugs] [Bug 36247] MARC21 Addition to relator terms in technical notice 2024-02-27 In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36247 Caroline Cyr La Rose changed: What |Removed |Added ---------------------------------------------------------------------------- Text to go in the| |This patch adds the relator release notes| |code gdv (Game developer) | |in the list of MARC21 | |relator terms in Koha. | | | |Note: this is added in the | |installer files. It will | |not affect existing | |installations. For existing | |installations, add the new | |relator code in | |Administration > Authorized | |values > RELTERMS. Assignee|koha-bugs at lists.koha-commun |caroline.cyr-la-rose at inlibr |ity.org |o.com CC| |philippe.blouin at inlibro.com -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Wed Mar 6 16:11:33 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 06 Mar 2024 15:11:33 +0000 Subject: [Koha-bugs] [Bug 35942] OPAC user can enroll several times to the same club In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35942 Fridolin Somers changed: What |Removed |Added ---------------------------------------------------------------------------- Version|unspecified |master CC| |gmcharlt at gmail.com, | |kyle.m.hall at gmail.com Product|Koha security |Koha Component|Koha |Patrons Group|Koha security | -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Mar 6 16:11:46 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 06 Mar 2024 15:11:46 +0000 Subject: [Koha-bugs] [Bug 35942] OPAC user can enroll several times to the same club In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35942 Fridolin Somers changed: What |Removed |Added ---------------------------------------------------------------------------- Component|Patrons |OPAC -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Mar 6 16:12:36 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 06 Mar 2024 15:12:36 +0000 Subject: [Koha-bugs] [Bug 35942] OPAC user can enroll several times to the same club In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35942 Fridolin Somers changed: What |Removed |Added ---------------------------------------------------------------------------- Version(s)|24.05.00,23.11.03,23.05.09 |24.05.00,23.11.03,23.05.09, released in| |22.11.15 --- Comment #17 from Fridolin Somers --- Patch pushed in v22.11.15-1 -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Mar 6 16:12:41 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 06 Mar 2024 15:12:41 +0000 Subject: [Koha-bugs] [Bug 35942] OPAC user can enroll several times to the same club In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35942 Fridolin Somers changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Pushed to stable |Pushed to oldstable -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Mar 6 16:12:49 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 06 Mar 2024 15:12:49 +0000 Subject: [Koha-bugs] [Bug 35942] OPAC user can enroll several times to the same club In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35942 Fridolin Somers changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Pushed to oldstable |Pushed to oldoldstable -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Mar 6 16:19:30 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 06 Mar 2024 15:19:30 +0000 Subject: [Koha-bugs] [Bug 35942] OPAC user can enroll several times to the same club In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35942 Fridolin Somers changed: What |Removed |Added ---------------------------------------------------------------------------- Version(s)|24.05.00,23.11.03,23.05.09, |24.05.00,23.11.03,23.05.09, released in|22.11.15 |22.11.15,22.05.19 Status|Pushed to oldoldstable |Pushed to oldoldoldstable -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Mar 6 16:45:24 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 06 Mar 2024 15:45:24 +0000 Subject: [Koha-bugs] [Bug 36193] CSRF - Code review missed In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36193 --- Comment #23 from Tomás Cohen Arazi --- Created attachment 162837 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162837&action=edit Bug 36193: cud- treatment for tools/stockrotation.pl Signed-off-by: Tomas Cohen Arazi -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Wed Mar 6 16:48:22 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 06 Mar 2024 15:48:22 +0000 Subject: [Koha-bugs] [Bug 36249] New: ILL - "Request from partners" action is broken Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36249 Bug ID: 36249 Summary: ILL - "Request from partners" action is broken Change sponsored?: --- Product: Koha Version: master Hardware: All OS: All Status: NEW Severity: enhancement Priority: P5 - low Component: ILL Assignee: pedro.amorim at ptfs-europe.com Reporter: pedro.amorim at ptfs-europe.com CC: david at davidnind.com, martin.renvoize at ptfs-europe.com, pedro.amorim at ptfs-europe.com, tomascohen at gmail.com, victor at tuxayo.net Depends on: 34478 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=34478 [Bug 34478] Full CSRF protection -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Mar 6 16:48:22 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 06 Mar 2024 15:48:22 +0000 Subject: [Koha-bugs] [Bug 34478] Full CSRF protection In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=34478 Pedro Amorim changed: What |Removed |Added ---------------------------------------------------------------------------- Blocks| |36249 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36249 [Bug 36249] ILL - "Request from partners" action is broken -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Mar 6 16:50:58 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 06 Mar 2024 15:50:58 +0000 Subject: [Koha-bugs] [Bug 33268] Overlay rules don't work correctly when source is set to * In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33268 --- Comment #52 from David Gustafsson --- About the tests there is no difference testing manually vs the test cases with the exception if there is an incorrect overlay_context parameter for ModBiblio somewhere, and that has already been manually testing and would also probably have been discovered in production if where the case. Of course there could also be some testing scenario not covered by the tests (and most should be), but in that case we should just add that test in the test suite instead. I'm not able to reproduce your test case, for me it seems to work. Tried both with the same rules, and some different permutations. I will try again with your version of the patch. Also made a script to print out the resulting rule-set, and it produces the expected result. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Mar 6 16:53:05 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 06 Mar 2024 15:53:05 +0000 Subject: [Koha-bugs] [Bug 36249] ILL - "Request from partners" action is broken In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36249 Pedro Amorim changed: What |Removed |Added ---------------------------------------------------------------------------- Depends on| |36241 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36241 [Bug 36241] ILL Batches are broken -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Mar 6 16:53:05 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 06 Mar 2024 15:53:05 +0000 Subject: [Koha-bugs] [Bug 36241] ILL Batches are broken In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36241 Pedro Amorim changed: What |Removed |Added ---------------------------------------------------------------------------- Blocks| |36249 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36249 [Bug 36249] ILL - "Request from partners" action is broken -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Mar 6 17:00:18 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 06 Mar 2024 16:00:18 +0000 Subject: [Koha-bugs] [Bug 36249] ILL - "Request from partners" action is broken In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36249 Pedro Amorim changed: What |Removed |Added ---------------------------------------------------------------------------- Patch complexity|--- |Trivial patch Status|NEW |Needs Signoff -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Mar 6 17:00:24 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 06 Mar 2024 16:00:24 +0000 Subject: [Koha-bugs] [Bug 36249] ILL - "Request from partners" action is broken In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36249 --- Comment #1 from Pedro Amorim --- Created attachment 162838 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162838&action=edit Bug 36249: Fix generic_confirm op Test plan, k-t-d: 1) Install FreeForm, enable ILL module, run: bash <(curl -s https://raw.githubusercontent.com/ammopt/koha-ill-dev/master/start-ill-dev.sh) 2) You'll have to switch the FreeForm branch to the one compatible with this work, i.e.: cd /kohadevbox/koha/Koha/Illbackends/FreeForm git checkout b_36243 3) Restart plack: koha-plack --restart kohadev 4) Start by adding an e-mail address to the patron of category "Inter-library Loan", visit: /cgi-bin/koha/members/memberentry.pl?op=edit_form&destination=circ&borrowernumber=16 5) Add an e-mail address to "Primary e-mail" 6) Create a new FreeForm request, visit: /cgi-bin/koha/ill/ill-requests.pl?method=create&backend=FreeForm 7) Set 'type' enter '42' in cardnumber and pick a library. Click 'Create'. 8) Click "Place request with partners" 9) Pick a partner library (will be the same patron from step 4) 10) Click "Send email". Notice the CSRF error. 11) Apply patch and restart plack koha-plack --restart kohadev 12) Repeat 8-10. Notice error no longer shows. 13) Notice the request's status is now 'Requested from partners' -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Mar 6 17:09:53 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 06 Mar 2024 16:09:53 +0000 Subject: [Koha-bugs] [Bug 36233] Cannot search invoices if too many vendors In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36233 Nick Clemens changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #162753|0 |1 is obsolete| | --- Comment #2 from Nick Clemens --- Created attachment 162839 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162839&action=edit Bug 36233: Use select2 to load vendors on invoice search This patch moves the dropdown to use select2 and avoids loading all vendors at page load. To test: 1 - Create some extra vendors in your system, ideally over 20 2 - Search for a vendor in acquisitions 3 - Click 'Invoices' 4 - Note the dropdown of all vendors 'Vendor:' in search bar on left 5 - The vendor you came from shoudl eb selected 6 - Apply patch 7 - Repeat 8 - Note only a partial list of vendors is loaded, confirm current vendor still selected 9 - Search in the dropdown and confirm vendors are returned 10 - Select a vendor and search 11 - confirm selection is retained -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Mar 6 17:12:36 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 06 Mar 2024 16:12:36 +0000 Subject: [Koha-bugs] [Bug 34255] Add an enquiry/request/workflow management module In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=34255 --- Comment #3 from Martin Renvoize --- We're certainly keeping that in mind with the Acquisitions work we're doing at the moment. Exposing some workflows there in our proof of concept work. -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Mar 6 17:15:07 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 06 Mar 2024 16:15:07 +0000 Subject: [Koha-bugs] [Bug 36249] ILL - "Request from partners" action is broken In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36249 --- Comment #2 from Pedro Amorim --- Created attachment 162840 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162840&action=edit Bug 36249: Fix styling of 'Send email' button This button was using the old 'btn-default' class instead of the new 'btn-primary' form 22.11 onwards -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Mar 6 17:16:23 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 06 Mar 2024 16:16:23 +0000 Subject: [Koha-bugs] [Bug 36249] ILL - "Request from partners" action is broken In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36249 Pedro Amorim changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #162840|0 |1 is obsolete| | --- Comment #3 from Pedro Amorim --- Created attachment 162841 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162841&action=edit Bug 36249: Fix styling of 'Send email' button This button was using the old 'btn-default' class instead of the new 'btn-primary' form 22.11 onwards -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Mar 6 17:21:10 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 06 Mar 2024 16:21:10 +0000 Subject: [Koha-bugs] [Bug 33268] Overlay rules don't work correctly when source is set to * In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33268 David Gustafsson changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Failed QA |Needs Signoff --- Comment #53 from David Gustafsson --- Works for me also with the latest version of the patch, hope I'm not missing something, but setting back to Needs Signoff. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Mar 6 17:31:17 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 06 Mar 2024 16:31:17 +0000 Subject: [Koha-bugs] [Bug 31579] Improve reserve/request.pl to avoid mistakes with pick up locations In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31579 --- Comment #16 from Blou --- Well, Bug 30579 is on Signed Off (4 months already). We just want to avoid user errors. The solution doesn't matter and we're happy to just build on 30579. But they need to move ahead. If there's a discussion to be had "between the two", let's do it for both. I'll ask our dev to look into 30579, evaluate, compare and comment. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Mar 6 17:31:33 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 06 Mar 2024 16:31:33 +0000 Subject: [Koha-bugs] [Bug 36243] ILL "Edit request" action is broken In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36243 Pedro Amorim changed: What |Removed |Added ---------------------------------------------------------------------------- Keywords| |regression -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Mar 6 17:31:38 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 06 Mar 2024 16:31:38 +0000 Subject: [Koha-bugs] [Bug 36249] ILL - "Request from partners" action is broken In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36249 Pedro Amorim changed: What |Removed |Added ---------------------------------------------------------------------------- Keywords| |regression -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Mar 6 17:31:42 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 06 Mar 2024 16:31:42 +0000 Subject: [Koha-bugs] [Bug 36250] New: Add preservation.js to Makefile Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36250 Bug ID: 36250 Summary: Add preservation.js to Makefile Change sponsored?: --- Product: Koha Version: master Hardware: All OS: All Status: NEW Severity: enhancement Priority: P5 - low Component: Architecture, internals, and plumbing Assignee: koha-bugs at lists.koha-community.org Reporter: kyle at bywatersolutions.com QA Contact: testopia at bugs.koha-community.org Like the ERM module, the Preservation module is built in Vue and the compiled assets need to be included in the Makefile for the Debian package to include them. -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Mar 6 17:31:46 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 06 Mar 2024 16:31:46 +0000 Subject: [Koha-bugs] [Bug 36249] ILL - "Request from partners" action is broken In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36249 Pedro Amorim changed: What |Removed |Added ---------------------------------------------------------------------------- Severity|enhancement |normal -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Mar 6 17:31:51 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 06 Mar 2024 16:31:51 +0000 Subject: [Koha-bugs] [Bug 36250] Add preservation.js to Makefile In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36250 Kyle M Hall changed: What |Removed |Added ---------------------------------------------------------------------------- Severity|enhancement |major -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Mar 6 17:31:51 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 06 Mar 2024 16:31:51 +0000 Subject: [Koha-bugs] [Bug 36243] ILL "Edit request" action is broken In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36243 Pedro Amorim changed: What |Removed |Added ---------------------------------------------------------------------------- Severity|enhancement |normal -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Mar 6 17:32:24 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 06 Mar 2024 16:32:24 +0000 Subject: [Koha-bugs] [Bug 36250] Add preservation.js to Makefile In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36250 Kyle M Hall changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |Needs Signoff -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Mar 6 17:32:26 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 06 Mar 2024 16:32:26 +0000 Subject: [Koha-bugs] [Bug 36250] Add preservation.js to Makefile In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36250 --- Comment #1 from Kyle M Hall --- Created attachment 162842 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162842&action=edit Bug 36250: Add preservation.js to Makefile -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Wed Mar 6 17:32:31 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 06 Mar 2024 16:32:31 +0000 Subject: [Koha-bugs] [Bug 36250] Add preservation.js to Makefile In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36250 Kyle M Hall changed: What |Removed |Added ---------------------------------------------------------------------------- Assignee|koha-bugs at lists.koha-commun |kyle at bywatersolutions.com |ity.org | -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Mar 6 17:32:45 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 06 Mar 2024 16:32:45 +0000 Subject: [Koha-bugs] [Bug 36250] Add preservation.js to Makefile In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36250 Kyle M Hall changed: What |Removed |Added ---------------------------------------------------------------------------- QA Contact|testopia at bugs.koha-communit |tomascohen at gmail.com |y.org | -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Mar 6 18:06:43 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 06 Mar 2024 17:06:43 +0000 Subject: [Koha-bugs] [Bug 35703] Marking Lost card does not prevent patron from placing holds In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35703 Johnny Rotten changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |georgew at latahlibrary.org -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Mar 6 18:07:09 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 06 Mar 2024 17:07:09 +0000 Subject: [Koha-bugs] [Bug 36215] Bookings calendar only shows bookings within RESTdefaultPageSize In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36215 --- Comment #1 from Martin Renvoize --- Created attachment 162843 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162843&action=edit Bug 36215: Remove limit on fetching bookings This removes the paging from the bookings request so we take into account all bookings. We may want to replace this with date bounded paging in the future, but lets not try to optimise until we need to. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Mar 6 18:07:27 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 06 Mar 2024 17:07:27 +0000 Subject: [Koha-bugs] [Bug 36215] Bookings calendar only shows bookings within RESTdefaultPageSize In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36215 Martin Renvoize changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |Needs Signoff -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Mar 6 18:07:31 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 06 Mar 2024 17:07:31 +0000 Subject: [Koha-bugs] [Bug 36215] Bookings calendar only shows bookings within RESTdefaultPageSize In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36215 Martin Renvoize changed: What |Removed |Added ---------------------------------------------------------------------------- Patch complexity|--- |Trivial patch -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Mar 6 18:12:03 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 06 Mar 2024 17:12:03 +0000 Subject: [Koha-bugs] [Bug 20678] Save draft records without committing them to the catalogue In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=20678 Johnny Rotten changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |georgew at latahlibrary.org -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Mar 6 18:12:26 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 06 Mar 2024 17:12:26 +0000 Subject: [Koha-bugs] [Bug 35532] Use of calendar for date range in bookings is not clear In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35532 Martin Renvoize changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |oleonard at myacpl.org -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Mar 6 18:12:36 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 06 Mar 2024 17:12:36 +0000 Subject: [Koha-bugs] [Bug 35532] Use of calendar for date range in bookings is not clear In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35532 Martin Renvoize changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |nick at bywatersolutions.com -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Mar 6 18:24:57 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 06 Mar 2024 17:24:57 +0000 Subject: [Koha-bugs] [Bug 20678] Save draft records without committing them to the catalogue In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=20678 Michelle Spinney changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |mspinney at clamsnet.org -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Mar 6 18:25:14 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 06 Mar 2024 17:25:14 +0000 Subject: [Koha-bugs] [Bug 31572] E-mail and SMS verification In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31572 Johnny Rotten changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |georgew at latahlibrary.org -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Mar 6 18:25:54 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 06 Mar 2024 17:25:54 +0000 Subject: [Koha-bugs] [Bug 31572] E-mail and SMS verification In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31572 AspenCat Team changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |aspencatteam at clicweb.org -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Mar 6 18:26:19 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 06 Mar 2024 17:26:19 +0000 Subject: [Koha-bugs] [Bug 31572] E-mail and SMS verification In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31572 Michael Adamyk changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |madamyk at ckls.org -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Mar 6 18:34:06 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 06 Mar 2024 17:34:06 +0000 Subject: [Koha-bugs] [Bug 10060] Allow adding a branch parameter to the web-based self check to indicate library its used at In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=10060 --- Comment #22 from Christopher Brannon --- (In reply to Katrin Fischer from comment #17) > I have talked with Liz about several approaches last night, one idea was to > add a branch parameter to the URL to help pick the right branch/staff user. > I think IP is a bit problematic for hosted installations as a lot of > institutions only appear with a single IP to the outside world these days. Isn't that a good thing? -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Mar 6 18:43:31 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 06 Mar 2024 17:43:31 +0000 Subject: [Koha-bugs] [Bug 35672] Update and Run SQL button should save changes even if report fails to run In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35672 Nick Clemens changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |nick at bywatersolutions.com -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Mar 6 18:47:45 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 06 Mar 2024 17:47:45 +0000 Subject: [Koha-bugs] [Bug 35532] Use of calendar for date range in bookings is not clear In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35532 Nick Clemens changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Signed Off |Passed QA -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Mar 6 18:47:47 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 06 Mar 2024 17:47:47 +0000 Subject: [Koha-bugs] [Bug 35532] Use of calendar for date range in bookings is not clear In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35532 Nick Clemens changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #162274|0 |1 is obsolete| | Attachment #162275|0 |1 is obsolete| | --- Comment #12 from Nick Clemens --- Created attachment 162844 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162844&action=edit Bug 35532: Update date select field and add hint This patch updates the 'Period' select from 'Period' to 'Booking dates' and adds a hint beneath it too. Signed-off-by: David Nind Signed-off-by: Nick Clemens -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Mar 6 18:47:49 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 06 Mar 2024 17:47:49 +0000 Subject: [Koha-bugs] [Bug 35532] Use of calendar for date range in bookings is not clear In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35532 --- Comment #13 from Nick Clemens --- Created attachment 162845 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162845&action=edit Bug 35532: Remove shortcut buttons from flatpickr It doesn't make sense to have the shortcut buttons in the range picker for bookings. This patch adds the ability to remove them entirely from display and uses that option in the bookings modal. Signed-off-by: David Nind Signed-off-by: Nick Clemens -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Mar 6 18:59:39 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 06 Mar 2024 17:59:39 +0000 Subject: [Koha-bugs] [Bug 36215] Bookings calendar only shows bookings within RESTdefaultPageSize In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36215 Nick Clemens changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Needs Signoff |Signed Off -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Mar 6 18:59:41 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 06 Mar 2024 17:59:41 +0000 Subject: [Koha-bugs] [Bug 36215] Bookings calendar only shows bookings within RESTdefaultPageSize In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36215 Nick Clemens changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #162843|0 |1 is obsolete| | --- Comment #2 from Nick Clemens --- Created attachment 162846 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162846&action=edit Bug 36215: Remove limit on fetching bookings This removes the paging from the bookings request so we take into account all bookings. We may want to replace this with date bounded paging in the future, but lets not try to optimise until we need to. To test: 1 - Find a record detail page in Koha staff interface 2 - Click on a barcode to go to items tab 3 - Edit 'bookable' to 'yes' 4 - Return to details page 5 - Place 5 bookings on a record 6 - Set system preference RESTDefaultPageSize 2 7 - Click the 'Bookings' tab on the record details 8 - Confirm onyl 2 bookings shown in calendar view 9 - Apply patch, reload 10 - All bookings now show in calendar Signed-off-by: Nick Clemens -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Mar 6 19:00:25 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 06 Mar 2024 18:00:25 +0000 Subject: [Koha-bugs] [Bug 36215] Bookings calendar only shows bookings within RESTdefaultPageSize In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36215 --- Comment #3 from Nick Clemens --- Redid the patch to add param with '?' and not '&' :-) Minor change, works, can go straight to QA -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Mar 6 19:39:19 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 06 Mar 2024 18:39:19 +0000 Subject: [Koha-bugs] [Bug 34823] Do not show item group drop-down if there are no item groups In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=34823 Lucas Gass changed: What |Removed |Added ---------------------------------------------------------------------------- Assignee|koha-bugs at lists.koha-commun |lucas at bywatersolutions.com |ity.org | Depends on| |36227 CC| |lucas at bywatersolutions.com Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36227 [Bug 36227] No warning if placing hold on item group with no items -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Wed Mar 6 19:39:19 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 06 Mar 2024 18:39:19 +0000 Subject: [Koha-bugs] [Bug 36227] No warning if placing hold on item group with no items In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36227 Lucas Gass changed: What |Removed |Added ---------------------------------------------------------------------------- Blocks| |34823 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=34823 [Bug 34823] Do not show item group drop-down if there are no item groups -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Mar 6 19:42:43 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 06 Mar 2024 18:42:43 +0000 Subject: [Koha-bugs] [Bug 34823] Do not show item group drop-down if there are no item groups In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=34823 Lucas Gass changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |Needs Signoff -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Mar 6 19:42:45 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 06 Mar 2024 18:42:45 +0000 Subject: [Koha-bugs] [Bug 34823] Do not show item group drop-down if there are no item groups In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=34823 --- Comment #1 from Lucas Gass --- Created attachment 162847 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162847&action=edit Bug 34823: Do not show Item group dropdown if there are no item groups To test: 1. Enable EnableItemGroups and EnableItemGroupHolds 2. Go to the OPAC and log in as a patron 3. Go to any record that doesn't have grouped items and try to place a hold 4. Click on "Show more options" 5. See "Request specific item group:" and dropdown 6. APPLY PATCH 7. Try again, this time if the record has no item groups you should not see the dropdown at all. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Mar 6 19:43:01 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 06 Mar 2024 18:43:01 +0000 Subject: [Koha-bugs] [Bug 34823] Do not show item group drop-down if there are no item groups In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=34823 Lucas Gass changed: What |Removed |Added ---------------------------------------------------------------------------- Patch complexity|--- |Trivial patch -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Mar 6 19:52:50 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 06 Mar 2024 18:52:50 +0000 Subject: [Koha-bugs] [Bug 36233] Cannot search invoices if too many vendors In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36233 Lisette Scheer changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #162839|0 |1 is obsolete| | --- Comment #3 from Lisette Scheer --- Created attachment 162848 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162848&action=edit Attachment to Bug 36233 - Cannot search invoices if too many vendors Bug 36233: Use select2 to load vendors on invoice search This patch moves the dropdown to use select2 and avoids loading all vendors at page load. To test: 1 - Create some extra vendors in your system, ideally over 20 2 - Search for a vendor in acquisitions 3 - Click 'Invoices' 4 - Note the dropdown of all vendors 'Vendor:' in search bar on left 5 - The vendor you came from shoudl eb selected 6 - Apply patch 7 - Repeat 8 - Note only a partial list of vendors is loaded, confirm current vendor still selected 9 - Search in the dropdown and confirm vendors are returned 10 - Select a vendor and search 11 - confirm selection is retained Signed-off-by: Angela Barrett -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Mar 6 19:53:09 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 06 Mar 2024 18:53:09 +0000 Subject: [Koha-bugs] [Bug 36233] Cannot search invoices if too many vendors In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36233 Lisette Scheer changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Needs Signoff |Signed Off CC| |lisette.scheer at bywatersolut | |ions.com -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Mar 6 19:54:13 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 06 Mar 2024 18:54:13 +0000 Subject: [Koha-bugs] [Bug 36233] Cannot search invoices if too many vendors In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36233 Lisette Scheer changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #162848|0 |1 is obsolete| | --- Comment #4 from Lisette Scheer --- Created attachment 162849 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162849&action=edit Bug 36233: Use select2 to load vendors on invoice search This patch moves the dropdown to use select2 and avoids loading all vendors at page load. To test: 1 - Create some extra vendors in your system, ideally over 20 2 - Search for a vendor in acquisitions 3 - Click 'Invoices' 4 - Note the dropdown of all vendors 'Vendor:' in search bar on left 5 - The vendor you came from shoudl eb selected 6 - Apply patch 7 - Repeat 8 - Note only a partial list of vendors is loaded, confirm current vendor still selected 9 - Search in the dropdown and confirm vendors are returned 10 - Select a vendor and search 11 - confirm selection is retained Signed-off-by: Angela Berrett angela.berrett at familysearch.org -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Mar 6 19:54:41 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 06 Mar 2024 18:54:41 +0000 Subject: [Koha-bugs] [Bug 33268] Overlay rules don't work correctly when source is set to * In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33268 --- Comment #54 from Victor Grousset/tuxayo --- > I'm not able to reproduce your test case, for me it seems to work. > [...] > Works for me also with the latest version of the patch So you followed the steps and at the 11th you got the subfield protected as expected? :D (vs at the 6th were it got changed) -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Mar 6 19:55:57 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 06 Mar 2024 18:55:57 +0000 Subject: [Koha-bugs] [Bug 36233] Cannot search invoices if too many vendors In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36233 --- Comment #5 from Lisette Scheer --- This worked as intended. We did notice that the drop down is not the same width as the rest of the form and the drop down doesn't have an option to say all libraries/remove the library that's selected. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Mar 6 19:57:58 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 06 Mar 2024 18:57:58 +0000 Subject: [Koha-bugs] [Bug 10060] Allow adding a branch parameter to the web-based self check to indicate library its used at In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=10060 --- Comment #23 from Christopher Brannon --- It is CRITICAL that self check have the ability to auto-login based on url. We need to be able to use accounts associated with the circulating library so that the library has proper stats and so the items are circulating under the correct circulating rules. It seems that what we need is a setting under each library that defines which account to login as for self check. Then we need to do something like allow the library to navigate their self check to /cgi-bin/koha/sco/sco-main.pl?branch=BRANCHCODE, which would tell the page to login to the self check with the credentials from their page. AutoSelfCheckAllowed set to allow, but having nothing filled in for AutoSelfCheckID or AutoSelfCheckPass could be the queue for Koha to check for credentials under the branch, if specified in the URL. Thoughts? -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Wed Mar 6 20:03:02 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 06 Mar 2024 19:03:02 +0000 Subject: [Koha-bugs] [Bug 34823] Do not show item group drop-down if there are no item groups In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=34823 Caroline Cyr La Rose changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Needs Signoff |Signed Off -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Mar 6 20:03:04 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 06 Mar 2024 19:03:04 +0000 Subject: [Koha-bugs] [Bug 34823] Do not show item group drop-down if there are no item groups In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=34823 Caroline Cyr La Rose changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #162847|0 |1 is obsolete| | --- Comment #2 from Caroline Cyr La Rose --- Created attachment 162850 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162850&action=edit Bug 34823: Do not show Item group dropdown if there are no item groups To test: 1. Enable EnableItemGroups and EnableItemGroupHolds 2. Go to the OPAC and log in as a patron 3. Go to any record that doesn't have grouped items and try to place a hold 4. Click on "Show more options" 5. See "Request specific item group:" and dropdown 6. APPLY PATCH 7. Try again, this time if the record has no item groups you should not see the dropdown at all. Signed-off-by: Caroline Cyr La Rose -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Mar 6 20:03:25 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 06 Mar 2024 19:03:25 +0000 Subject: [Koha-bugs] [Bug 34823] Do not show item group drop-down if there are no item groups In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=34823 --- Comment #3 from Caroline Cyr La Rose --- Thanks Lucas! -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Mar 6 20:10:08 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 06 Mar 2024 19:10:08 +0000 Subject: [Koha-bugs] [Bug 36227] No warning if placing hold on item group with no items In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36227 Caroline Cyr La Rose changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Needs Signoff |Signed Off -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Mar 6 20:10:10 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 06 Mar 2024 19:10:10 +0000 Subject: [Koha-bugs] [Bug 36227] No warning if placing hold on item group with no items In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36227 Caroline Cyr La Rose changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #162806|0 |1 is obsolete| | --- Comment #3 from Caroline Cyr La Rose --- Created attachment 162851 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162851&action=edit Bug 36227: Add warning when item group has no holdable items To test: 1. Enable EnableItemGroups and EnableItemGroupHolds 2. Find a bib and add an item group but do not attach any items to the item group. 3. Place a hold from the staff interface. 4. Under Hold next available item from an item group you see the option for your item group, select it and place the hold. 5. It's a hold that can not be filled 6. APPLY PATCH 7. How on the hold page under Hold next available item from an item group there is a 3rd column called 'Holdable items'. 8. Your item group, without any items, should have a disabled radio button and a warning "No holdable items in this item group." 9. Add items to your item group. 10. Now on the hold page in the new 'Holdable items' you should see links for each item, make sure those links work. Signed-off-by: Caroline Cyr La Rose -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Mar 6 20:10:12 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 06 Mar 2024 19:10:12 +0000 Subject: [Koha-bugs] [Bug 36227] No warning if placing hold on item group with no items In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36227 Caroline Cyr La Rose changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #162807|0 |1 is obsolete| | --- Comment #4 from Caroline Cyr La Rose --- Created attachment 162852 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162852&action=edit Bug 36227: Remove item group option if there are no items To test: 1. Test from OPAC. Any item group without items in it should not display as an option in the "Request specific item group:" dropdown Signed-off-by: Caroline Cyr La Rose -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Mar 6 20:24:47 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 06 Mar 2024 19:24:47 +0000 Subject: [Koha-bugs] [Bug 36233] Cannot search invoices if too many vendors In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36233 --- Comment #6 from Nick Clemens --- Created attachment 162853 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162853&action=edit Bug 36233: (follow-up) Fix width and enable clear option -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Mar 6 20:56:56 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 06 Mar 2024 19:56:56 +0000 Subject: [Koha-bugs] [Bug 35854] Suggestions generate identical messages when edited In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35854 Katie Bliss changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |kebliss at dmpl.org -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Mar 6 20:59:08 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 06 Mar 2024 19:59:08 +0000 Subject: [Koha-bugs] [Bug 34575] Patron search results: Add a CSS class to patron email to ease customization In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=34575 Victor Grousset/tuxayo changed: What |Removed |Added ---------------------------------------------------------------------------- QA Contact|testopia at bugs.koha-communit |victor at tuxayo.net |y.org | Summary|Patron search results: |Patron search results: Add |Customise the fields |a CSS class to patron email |displayed in Name column |to ease customization --- Comment #7 from Victor Grousset/tuxayo --- Tried to rename the ticket, feel free to improve if I misunderstood. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Mar 6 21:01:12 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 06 Mar 2024 20:01:12 +0000 Subject: [Koha-bugs] [Bug 36215] Bookings calendar only shows bookings within RESTdefaultPageSize In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36215 Kristi changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |kkrueger at cuyahogalibrary.or | |g -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Mar 6 21:07:21 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 06 Mar 2024 20:07:21 +0000 Subject: [Koha-bugs] [Bug 36251] New: Patron search by letter broken in holds Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36251 Bug ID: 36251 Summary: Patron search by letter broken in holds Change sponsored?: --- Product: Koha Version: master Hardware: All OS: All Status: NEW Severity: normal Priority: P5 - low Component: Patrons Assignee: koha-bugs at lists.koha-community.org Reporter: caroline.cyr-la-rose at inlibro.com QA Contact: testopia at bugs.koha-community.org CC: gmcharlt at gmail.com, kyle.m.hall at gmail.com When placing a hold, if you click on a letter to find the patrons whose last name starts with that letter, it shows all patrons. To recreate: 1. In the staff interface, search for a record 2. Click Place hold 3. Click on a letter under the patron search bar (I used H) --> Patrons with last name starting with another letter are displayed -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Wed Mar 6 21:09:07 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 06 Mar 2024 20:09:07 +0000 Subject: [Koha-bugs] [Bug 36251] Patron search by letter broken in holds In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36251 Caroline Cyr La Rose changed: What |Removed |Added ---------------------------------------------------------------------------- Depends on| |35329 CC| |philippe.blouin at inlibro.com --- Comment #1 from Caroline Cyr La Rose --- I tried in 23.11 and it's fine. I bisected and found it was due to bug 35329, specifically Bug 35329: Move patron search to modal - funds. Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35329 [Bug 35329] Move patron searches to a modal -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Mar 6 21:09:07 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 06 Mar 2024 20:09:07 +0000 Subject: [Koha-bugs] [Bug 35329] Move patron searches to a modal In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35329 Caroline Cyr La Rose changed: What |Removed |Added ---------------------------------------------------------------------------- Blocks| |36251 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36251 [Bug 36251] Patron search by letter broken in holds -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Mar 6 21:12:30 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 06 Mar 2024 20:12:30 +0000 Subject: [Koha-bugs] [Bug 34575] Patron search results: Add a CSS class to patron email to ease customization In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=34575 --- Comment #8 from Victor Grousset/tuxayo --- We have classes like patron_name and patroncity. If the style is already inconsistent, let's go for the more readable one for new classes. So patron_email. Patch amended. Feel free to comment if that doesn't look like a good change. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Mar 6 21:13:44 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 06 Mar 2024 20:13:44 +0000 Subject: [Koha-bugs] [Bug 34575] Patron search results: Add a CSS class to patron email to ease customization In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=34575 Victor Grousset/tuxayo changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #160264|0 |1 is obsolete| | --- Comment #9 from Victor Grousset/tuxayo --- Created attachment 162854 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162854&action=edit Bug 34575: Add a CSS class to patron email Adds a CSS class to the patron email section in the 'name-address' column of search results in members-home.pl No functional behaviour change. Signed-off-by: Sally Signed-off-by: Victor Grousset/tuxayo -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Mar 6 21:15:45 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 06 Mar 2024 20:15:45 +0000 Subject: [Koha-bugs] [Bug 30745] ES : Search never return result using after-date and/or before-date in labels/label-item-search.pl In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30745 Phan Tung Bui changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Failed QA |Needs Signoff -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Mar 6 21:15:48 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 06 Mar 2024 20:15:48 +0000 Subject: [Koha-bugs] [Bug 30745] ES : Search never return result using after-date and/or before-date in labels/label-item-search.pl In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30745 --- Comment #20 from Phan Tung Bui --- Created attachment 162855 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162855&action=edit Bug 30745 : Fix undefined value error while using zebra Plan test : - Apply this batch - Set Zebra as searchEngine - Put a letter in the input box for these index searches (without any dates in the filters): publication date, standard number, ISBN, ISSN, call number, acquisition date - The page's supposed to refresh itself (so that it has the same behavior as elasticSearch) -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Mar 6 21:15:50 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 06 Mar 2024 20:15:50 +0000 Subject: [Koha-bugs] [Bug 34575] Patron search results: Add a CSS class to patron email to ease customization In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=34575 Victor Grousset/tuxayo changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Signed Off |Passed QA --- Comment #10 from Victor Grousset/tuxayo --- Works, makes sense, QA script happy, code looks good, passing QA :) -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Mar 6 21:25:53 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 06 Mar 2024 20:25:53 +0000 Subject: [Koha-bugs] [Bug 36252] New: LDR pos 6 for o= Kit should not default to visual material in the 008 Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36252 Bug ID: 36252 Summary: LDR pos 6 for o= Kit should not default to visual material in the 008 Change sponsored?: --- Product: Koha Version: unspecified Hardware: All OS: All Status: NEW Severity: enhancement Priority: P5 - low Component: Cataloging Assignee: koha-bugs at lists.koha-community.org Reporter: esther.melander at bywatersolutions.com QA Contact: testopia at bugs.koha-community.org CC: m.de.rooy at rijksmuseum.nl To recreate: 1. Create a new bibliographic record in the basic editor. 2. Edit the 000 Leader position 6 and select o for Kit. 3. Look at the 008 and see it defaults to VM or visual materials. According to Library of Congress a record type of Kit is "a mixture of various components issued as a unit for instructional purposes." It seems that the 008 should then default to Mixed materials. It is a little confusing because there is a record type for mixed materials which is similar but NOT for instructional purposes. Regardless, a kit should not default to visual materials in the 008, because that is not a correct type of material. It is not possible to select Kit in the leader and then select Mixed materials in the 008. The system will not allow the two to exist together. -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Mar 6 21:26:19 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 06 Mar 2024 20:26:19 +0000 Subject: [Koha-bugs] [Bug 36252] LDR pos 6 for Kit should not default to visual material in the 008 In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36252 Esther Melander changed: What |Removed |Added ---------------------------------------------------------------------------- Summary|LDR pos 6 for o= Kit should |LDR pos 6 for Kit should |not default to visual |not default to visual |material in the 008 |material in the 008 -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Wed Mar 6 21:41:09 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 06 Mar 2024 20:41:09 +0000 Subject: [Koha-bugs] [Bug 36253] New: Port default acquisition notices to Template Toolkit syntax Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36253 Bug ID: 36253 Summary: Port default acquisition notices to Template Toolkit syntax Change sponsored?: --- Product: Koha Version: master Hardware: All OS: All Status: NEW Keywords: roadmap_24_05 Severity: enhancement Priority: P5 - low Component: Notices Assignee: koha-bugs at lists.koha-community.org Reporter: emily.lamancusa at montgomerycountymd.gov QA Contact: testopia at bugs.koha-community.org Blocks: 15278 There are 3 acquisitions notices that still use "hungry alligator" syntax: ACQ_NOTIF_ON_RECEIV ACQCLAIM ACQORDER ACQCLAIM and ACQORDER are very similar, and it would make sense to do them together. ACQ_NOTIF_ON_RECEIV is pretty brief and simple, so we might as well bundle it in too. Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=15278 [Bug 15278] [Omnibus] Port default slips and notices from bespoke syntax to Template Toolkit -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Wed Mar 6 21:41:09 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 06 Mar 2024 20:41:09 +0000 Subject: [Koha-bugs] [Bug 15278] [Omnibus] Port default slips and notices from bespoke syntax to Template Toolkit In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=15278 Emily Lamancusa changed: What |Removed |Added ---------------------------------------------------------------------------- Depends on| |36253 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36253 [Bug 36253] Port default acquisition notices to Template Toolkit syntax -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Mar 6 21:45:28 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 06 Mar 2024 20:45:28 +0000 Subject: [Koha-bugs] [Bug 34631] Independentbranches - Non-superuser should not be able to write Additional contents for other branches In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=34631 Matthias Le Gac changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #154890|1 |0 is obsolete| | -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Mar 6 21:45:43 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 06 Mar 2024 20:45:43 +0000 Subject: [Koha-bugs] [Bug 34631] Independentbranches - Non-superuser should not be able to write Additional contents for other branches In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=34631 Matthias Le Gac changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #162787|0 |1 is obsolete| | -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Mar 6 21:46:01 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 06 Mar 2024 20:46:01 +0000 Subject: [Koha-bugs] [Bug 34631] Independentbranches - Non-superuser should not be able to write Additional contents for other branches In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=34631 Matthias Le Gac changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #162788|0 |1 is obsolete| | -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Mar 6 21:46:41 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 06 Mar 2024 20:46:41 +0000 Subject: [Koha-bugs] [Bug 34631] Independentbranches - Non-superuser should not be able to write Additional contents for other branches In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=34631 Matthias Le Gac changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #154889|1 |0 is obsolete| | -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Mar 6 21:47:46 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 06 Mar 2024 20:47:46 +0000 Subject: [Koha-bugs] [Bug 34631] Independentbranches - Non-superuser should not be able to write Additional contents for other branches In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=34631 Matthias Le Gac changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #154889|0 |1 is obsolete| | -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Mar 6 21:56:02 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 06 Mar 2024 20:56:02 +0000 Subject: [Koha-bugs] [Bug 34631] Independentbranches - Non-superuser should not be able to write Additional contents for other branches In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=34631 Matthias Le Gac changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Failed QA |Needs Signoff -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Mar 6 21:56:04 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 06 Mar 2024 20:56:04 +0000 Subject: [Koha-bugs] [Bug 34631] Independentbranches - Non-superuser should not be able to write Additional contents for other branches In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=34631 Matthias Le Gac changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #154890|0 |1 is obsolete| | --- Comment #10 from Matthias Le Gac --- Created attachment 162856 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162856&action=edit Bug 34631: Independentbranches - Non-superuser should not be able to write Additional contents for other branches When syspref Independentbranches is enabled Non-superuser should not be able to write Additional contents for other branches To reproduce: 1- Connect to staff interface as superlibrarian 2- Enable IndependentBranches preference 3- Go to Tools -> HTML customizations 4- Crete an additional content for all libraries 5- Create or edit a borrower 5-1- Set permission for the borrower - catalogue - edit_additional_contents 4- Log in to the staff interface with the non-superlibrarian staff user 5- Go to Tools -> HTML customizations --> you can delete or edit the additional contents created by superlibrarian for All libraries 6- Click on New entry --> you can add additional content for other branches 7- Apply the patch 8- Repeat step 5 --> you cannot delete or edit the additional contents create by superlibrarian for All libraries 9- Repeat step 6 --> you cannot add additional content for other branches 10- submit the form --> the branch of the created additional content is the current user branch -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Mar 6 21:58:17 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 06 Mar 2024 20:58:17 +0000 Subject: [Koha-bugs] [Bug 34631] Independentbranches - Non-superuser should not be able to write Additional contents for other branches In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=34631 --- Comment #11 from Matthias Le Gac --- I think it's good now to test sorry for the trouble I've caused by trying to rebase -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Mar 6 21:59:34 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 06 Mar 2024 20:59:34 +0000 Subject: [Koha-bugs] [Bug 36254] New: Port default PASSWORD_RESET and STAFF_PASSWORD_RESET notices to Template Toolkit syntax Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36254 Bug ID: 36254 Summary: Port default PASSWORD_RESET and STAFF_PASSWORD_RESET notices to Template Toolkit syntax Change sponsored?: --- Product: Koha Version: master Hardware: All OS: All Status: NEW Keywords: roadmap_24_05 Severity: enhancement Priority: P5 - low Component: Notices Assignee: koha-bugs at lists.koha-community.org Reporter: emily.lamancusa at montgomerycountymd.gov QA Contact: testopia at bugs.koha-community.org Blocks: 15278 These might require a bit of refactoring. Looking at Recovery.pm, it looks like the subroutine is passing a custom key/value pair for passwordreseturl, so I'm not sure if an equivalent has been added for Template Toolkit syntax yet. Also not sure if there are any security implications to consider? Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=15278 [Bug 15278] [Omnibus] Port default slips and notices from bespoke syntax to Template Toolkit -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Mar 6 21:59:34 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 06 Mar 2024 20:59:34 +0000 Subject: [Koha-bugs] [Bug 15278] [Omnibus] Port default slips and notices from bespoke syntax to Template Toolkit In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=15278 Emily Lamancusa changed: What |Removed |Added ---------------------------------------------------------------------------- Depends on| |36254 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36254 [Bug 36254] Port default PASSWORD_RESET and STAFF_PASSWORD_RESET notices to Template Toolkit syntax -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Mar 6 22:10:44 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 06 Mar 2024 21:10:44 +0000 Subject: [Koha-bugs] [Bug 36255] New: Port default OPAC_REG_VERIFY notice to Template Toolkit syntax Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36255 Bug ID: 36255 Summary: Port default OPAC_REG_VERIFY notice to Template Toolkit syntax Change sponsored?: --- Product: Koha Version: master Hardware: All OS: All Status: NEW Keywords: roadmap_24_05 Severity: enhancement Priority: P5 - low Component: Notices Assignee: koha-bugs at lists.koha-community.org Reporter: emily.lamancusa at montgomerycountymd.gov QA Contact: testopia at bugs.koha-community.org Blocks: 15278 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=15278 [Bug 15278] [Omnibus] Port default slips and notices from bespoke syntax to Template Toolkit -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Wed Mar 6 22:10:44 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 06 Mar 2024 21:10:44 +0000 Subject: [Koha-bugs] [Bug 15278] [Omnibus] Port default slips and notices from bespoke syntax to Template Toolkit In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=15278 Emily Lamancusa changed: What |Removed |Added ---------------------------------------------------------------------------- Depends on| |36255 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36255 [Bug 36255] Port default OPAC_REG_VERIFY notice to Template Toolkit syntax -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Mar 6 22:13:25 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 06 Mar 2024 21:13:25 +0000 Subject: [Koha-bugs] [Bug 36256] New: Port default MEMBERSHIP_EXPIRY notice to Template Toolkit syntax Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36256 Bug ID: 36256 Summary: Port default MEMBERSHIP_EXPIRY notice to Template Toolkit syntax Change sponsored?: --- Product: Koha Version: master Hardware: All OS: All Status: NEW Keywords: roadmap_24_05 Severity: enhancement Priority: P5 - low Component: Notices Assignee: koha-bugs at lists.koha-community.org Reporter: emily.lamancusa at montgomerycountymd.gov QA Contact: testopia at bugs.koha-community.org Blocks: 15278 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=15278 [Bug 15278] [Omnibus] Port default slips and notices from bespoke syntax to Template Toolkit -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Wed Mar 6 22:13:25 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 06 Mar 2024 21:13:25 +0000 Subject: [Koha-bugs] [Bug 15278] [Omnibus] Port default slips and notices from bespoke syntax to Template Toolkit In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=15278 Emily Lamancusa changed: What |Removed |Added ---------------------------------------------------------------------------- Depends on| |36256 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36256 [Bug 36256] Port default MEMBERSHIP_EXPIRY notice to Template Toolkit syntax -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Mar 6 22:13:46 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 06 Mar 2024 21:13:46 +0000 Subject: [Koha-bugs] [Bug 36257] New: Port default DISCHARGE notice to Template Toolkit syntax Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36257 Bug ID: 36257 Summary: Port default DISCHARGE notice to Template Toolkit syntax Change sponsored?: --- Product: Koha Version: master Hardware: All OS: All Status: NEW Keywords: roadmap_24_05 Severity: enhancement Priority: P5 - low Component: Notices Assignee: koha-bugs at lists.koha-community.org Reporter: emily.lamancusa at montgomerycountymd.gov QA Contact: testopia at bugs.koha-community.org Blocks: 15278 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=15278 [Bug 15278] [Omnibus] Port default slips and notices from bespoke syntax to Template Toolkit -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Wed Mar 6 22:13:46 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 06 Mar 2024 21:13:46 +0000 Subject: [Koha-bugs] [Bug 15278] [Omnibus] Port default slips and notices from bespoke syntax to Template Toolkit In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=15278 Emily Lamancusa changed: What |Removed |Added ---------------------------------------------------------------------------- Depends on| |36257 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36257 [Bug 36257] Port default DISCHARGE notice to Template Toolkit syntax -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Mar 6 22:20:49 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 06 Mar 2024 21:20:49 +0000 Subject: [Koha-bugs] [Bug 36196] Handling NULL data in ajax calls for cities In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36196 Victor Grousset/tuxayo changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |victor at tuxayo.net QA Contact|testopia at bugs.koha-communit |victor at tuxayo.net |y.org | --- Comment #4 from Victor Grousset/tuxayo --- This seem to be the proper way to handle null values: https://stackoverflow.com/questions/48917064/how-do-you-properly-handle-null-values-in-datatables/48920248#48920248 Hopefully that works in our case. >From reading quickly: Adding «"defaultContent": ""» And maybe having to change our "targets" value if for some reason it only work with '_all' (and that we somehow can get away without [0,1,2,3,4]) -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Mar 6 22:22:34 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 06 Mar 2024 21:22:34 +0000 Subject: [Koha-bugs] [Bug 36258] New: Port default SHARE_ACCEPT and SHARE_INVITE notices to Template Toolkit syntax Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36258 Bug ID: 36258 Summary: Port default SHARE_ACCEPT and SHARE_INVITE notices to Template Toolkit syntax Change sponsored?: --- Product: Koha Version: master Hardware: All OS: All Status: NEW Keywords: roadmap_24_05 Severity: enhancement Priority: P5 - low Component: Notices Assignee: koha-bugs at lists.koha-community.org Reporter: emily.lamancusa at montgomerycountymd.gov QA Contact: testopia at bugs.koha-community.org Blocks: 15278 These notices are currently passing listname and shareurl as custom substitutions to C4::GetPreparedLetter, so I'm not sure if that case has been handled for Template Toolkit syntax yet. If not, that would need to be done first. Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=15278 [Bug 15278] [Omnibus] Port default slips and notices from bespoke syntax to Template Toolkit -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Mar 6 22:22:34 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 06 Mar 2024 21:22:34 +0000 Subject: [Koha-bugs] [Bug 15278] [Omnibus] Port default slips and notices from bespoke syntax to Template Toolkit In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=15278 Emily Lamancusa changed: What |Removed |Added ---------------------------------------------------------------------------- Depends on| |36258 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36258 [Bug 36258] Port default SHARE_ACCEPT and SHARE_INVITE notices to Template Toolkit syntax -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Mar 6 22:23:10 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 06 Mar 2024 21:23:10 +0000 Subject: [Koha-bugs] [Bug 36125] Port default HOLD_SLIP notice to Template Toolkit syntax In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36125 Emily Lamancusa changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |emily.lamancusa at montgomeryc | |ountymd.gov -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Mar 6 22:23:25 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 06 Mar 2024 21:23:25 +0000 Subject: [Koha-bugs] [Bug 36259] New: Port default SERIAL_ALERT notice to Template Toolkit syntax Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36259 Bug ID: 36259 Summary: Port default SERIAL_ALERT notice to Template Toolkit syntax Change sponsored?: --- Product: Koha Version: master Hardware: All OS: All Status: NEW Keywords: roadmap_24_05 Severity: enhancement Priority: P5 - low Component: Notices Assignee: koha-bugs at lists.koha-community.org Reporter: emily.lamancusa at montgomerycountymd.gov QA Contact: testopia at bugs.koha-community.org Blocks: 15278 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=15278 [Bug 15278] [Omnibus] Port default slips and notices from bespoke syntax to Template Toolkit -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Mar 6 22:23:25 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 06 Mar 2024 21:23:25 +0000 Subject: [Koha-bugs] [Bug 15278] [Omnibus] Port default slips and notices from bespoke syntax to Template Toolkit In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=15278 Emily Lamancusa changed: What |Removed |Added ---------------------------------------------------------------------------- Depends on| |36259 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36259 [Bug 36259] Port default SERIAL_ALERT notice to Template Toolkit syntax -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Mar 6 22:25:42 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 06 Mar 2024 21:25:42 +0000 Subject: [Koha-bugs] [Bug 36260] New: Port default PROBLEM_REPORT notice to Template Toolkit syntax Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36260 Bug ID: 36260 Summary: Port default PROBLEM_REPORT notice to Template Toolkit syntax Change sponsored?: --- Product: Koha Version: master Hardware: All OS: All Status: NEW Keywords: roadmap_24_05 Severity: enhancement Priority: P5 - low Component: Notices Assignee: koha-bugs at lists.koha-community.org Reporter: emily.lamancusa at montgomerycountymd.gov QA Contact: testopia at bugs.koha-community.org Blocks: 15278 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=15278 [Bug 15278] [Omnibus] Port default slips and notices from bespoke syntax to Template Toolkit -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Mar 6 22:25:42 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 06 Mar 2024 21:25:42 +0000 Subject: [Koha-bugs] [Bug 15278] [Omnibus] Port default slips and notices from bespoke syntax to Template Toolkit In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=15278 Emily Lamancusa changed: What |Removed |Added ---------------------------------------------------------------------------- Depends on| |36260 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36260 [Bug 36260] Port default PROBLEM_REPORT notice to Template Toolkit syntax -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Mar 6 22:28:45 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 06 Mar 2024 21:28:45 +0000 Subject: [Koha-bugs] [Bug 36196] Handling NULL data in ajax calls for cities In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36196 Victor Grousset/tuxayo changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Signed Off |Failed QA --- Comment #5 from Victor Grousset/tuxayo --- Another source: https://stackoverflow.com/questions/57711349/how-to-deal-with-null-values-in-jquery-datatable-when-using-ajax/57714479#57714479 --- And another. According to the usage of defaultContent there, we can even target individual columns for default values: https://datatables.net/forums/discussion/50823/handling-null-values So it seems pretty sure we can use that. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Mar 6 22:49:49 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 06 Mar 2024 21:49:49 +0000 Subject: [Koha-bugs] [Bug 11808] When searching for a cardnumber in the intranet, also try to search for it on the LDAP server if one is configured and add/update user In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=11808 Phan Tung Bui changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Patch doesn't apply |Needs Signoff -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Mar 6 22:49:52 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 06 Mar 2024 21:49:52 +0000 Subject: [Koha-bugs] [Bug 11808] When searching for a cardnumber in the intranet, also try to search for it on the LDAP server if one is configured and add/update user In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=11808 Phan Tung Bui changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #144826|0 |1 is obsolete| | --- Comment #20 from Phan Tung Bui --- Created attachment 162857 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162857&action=edit Bug 11808: Add the SearchCardnumberWithLDAP system preference Add option to search patrons on ldap server when not found in local database and import it Test plan: 0. You need to have an ldap server containing patron informations configured in Koha. 1. Apply patch and update database. 2. Check that the new system preference SearchCardnumberWithLDAP has been added and set as 'never'. 3. Choose a patron who exists in your ldap server but not in Koha. (you can delete an existing patron from Koha if needed) 4. Search for the patron by it's cardnumber in the following locations. Do not choose from the dropdown list, use the submit button. - circ/circulation.pl - circ/article-request.pl - reserve/request.pl - members/member.pl both at the top and in the filter box - any page using common/patron_search.tt, for example adding a guarantor with the members/guarantor_search.pl popup => Should return cardnumber/patron not found or no results 5. Change SearchCardnumberWithLDAP to 'if not found locally'. 6. Repeat step 4. => The patron should be added to Koha. 7. Edit the patron and change any of the existing information. 8. Repeat step 4. => The patron has not been updated (the change made in step 7 is still there) 9. Change SearchCardnumberWithLDAP to 'always'. 10. Repeat step 4. => The patron has been updated. Change made in step 7 has been rewritten and patron informations is the same as in step 6. 11. Try searching for a patron who doesn't exist in Koha and has a nonexistant branch on the LDAP server. An error message should appear accompanying the absence of results. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Mar 6 23:07:52 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 06 Mar 2024 22:07:52 +0000 Subject: [Koha-bugs] [Bug 33703] Entering dates should be more flexible accepting different entry formats In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33703 Kristi changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Needs Signoff |Signed Off --- Comment #51 from Kristi --- I tested all four dateformat settings with the following: -Patron record date of birth -Patron record registration date -Patron record expiry date -Checkouts, manually set a due date -Patron category, enrollment period as well as Hold expires on date Suspend hold date Renewal due date These all formatted the dates as expected. I looked at all 4 dateformats in the OPAC for patron birthdate, hold not needed after, and suspend hold dates, and those all formatted as expected. I also tested the bookings modal. While entering a date does not format automatically, clicking away does create an unexpected, formatted start date. For example, with the mm/dd/yyyy format, instead of picking a date on the calendar in the modal, if I type in 07012024 for an July 01 start, the calendar start date formats to 07/12/2024 and the picker on the calendar moves to Friday, July 12. Since booking seems to be beyond the scope of this bug, signing off here. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Mar 6 23:12:59 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 06 Mar 2024 22:12:59 +0000 Subject: [Koha-bugs] [Bug 33703] Entering dates should be more flexible accepting different entry formats In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33703 --- Comment #52 from Kristi --- Also reviewed the Date acquired field when adding new bib items in all 4 dateformats, which formatted as expected. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Mar 6 23:31:52 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 06 Mar 2024 22:31:52 +0000 Subject: [Koha-bugs] [Bug 33244] Do not show lists in OPAC if OpacPublic is disabled In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33244 --- Comment #17 from David Cook --- (In reply to M from comment #16) > Should I create a new bug about this? Yep. Create a new bug and have it depend on this one. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 00:29:03 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 06 Mar 2024 23:29:03 +0000 Subject: [Koha-bugs] [Bug 35026] Refactor addorderiso2709.pl to use object methods In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35026 --- Comment #36 from Barbara Johnson --- Using Nick's suggestion from comment #35 solved the problem I reported in comment #34. * The location code of 'AV' successfully imported into the 949$c tag. * No data was imported into the price (949$g) field - everything is 0.00. * No data was imported into replacement price (949$v) because there was no data in the sample file. * The barcode# from the sample file was not imported into the 949$p. It was not specified to be included in MarcItemFieldsToOrder in the test plan. * The sample file contains three fields with the date of 2014-09-04. These are in subfields d - Date acquired and w - Price effective from and subfield r. Subfields d and w were populated with the current date instead of the date in the xml file. I'm not sure what subfield r stands for. On a side note, I tried to not match on the biblio because of the error I received in previous testing telling me there was a match and I would have to handle the records individually. However, even when not matching I got that error message. I had to delete the existing bib and attached items before I could bring in the order. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 00:48:22 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 06 Mar 2024 23:48:22 +0000 Subject: [Koha-bugs] [Bug 35862] Display patron search result on the right of the form (modal) In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35862 Lucas Gass changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |Needs Signoff -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 00:48:25 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 06 Mar 2024 23:48:25 +0000 Subject: [Koha-bugs] [Bug 35862] Display patron search result on the right of the form (modal) In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35862 --- Comment #2 from Lucas Gass --- Created attachment 162858 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162858&action=edit Bug 35862: Display modal search results to the right of form above 1200px To test: 1. Apply patch 2. Rebuild CSS ( yarn build ) 3. Look at some of the places where there is a modal patron search. -suggestion/suggestion.pl: Set to patron -members/memberentry.pl: Add guarantor 4. Make sure the modal looks good before and after you have searched for a patron. 5. Play with many different screen sizes, ensuring everything looks good and makes sense. -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 00:48:42 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 06 Mar 2024 23:48:42 +0000 Subject: [Koha-bugs] [Bug 35862] Display patron search result on the right of the form (modal) In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35862 Lucas Gass changed: What |Removed |Added ---------------------------------------------------------------------------- Assignee|koha-bugs at lists.koha-commun |lucas at bywatersolutions.com |ity.org | Patch complexity|--- |Small patch Version|unspecified |23.11 CC| |lucas at bywatersolutions.com -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 00:48:55 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 06 Mar 2024 23:48:55 +0000 Subject: [Koha-bugs] [Bug 35862] Display patron search result on the right of the form (modal) In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35862 Lucas Gass changed: What |Removed |Added ---------------------------------------------------------------------------- Version|23.11 |master -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 00:57:15 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 06 Mar 2024 23:57:15 +0000 Subject: [Koha-bugs] [Bug 34631] Independentbranches - Non-superuser should not be able to write Additional contents for other branches In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=34631 Myka Kennedy Stephens changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Needs Signoff |Patch doesn't apply --- Comment #12 from Myka Kennedy Stephens --- Different error, this time when attempting to apply the patch using git bz: Applying: Bug 34631: Independentbranches - Non-superuser should not be able to write Additional contents for other branches error: sha1 information is lacking or useless (koha-tmpl/intranet-tmpl/prog/en/modules/tools/additional-contents.tt). error: could not build fake ancestor Patch failed at 0001 Bug 34631: Independentbranches - Non-superuser should not be able to write Additional contents for other branches -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 00:59:56 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 06 Mar 2024 23:59:56 +0000 Subject: [Koha-bugs] [Bug 36239] Availability calculation in OPAC Results XSLT is too slow In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36239 --- Comment #2 from David Cook --- (In reply to David Cook from comment #1) > That said, when I actually break it down a bit more, it looks like out of 60 > seconds for my example, 20 seconds are availability and 40 seconds is the > rest. If it's 10 seconds in the staff interface, then it's probably 30 > seconds on OpacHiddenItems which happens before buildKohaItemsNamespace. > > That's an overgeneralization of course. > > But if we got rid of OpacHiddenItemsHidesRecord and required people to use > OpacSuppression instead then we'd be able to bring OPAC and Staff Interface > back to similar times... It looks like I was at least partially wrong... With no change, my search is actually taking 66 seconds, and if I completely remove OpacHiddenItems, I only gain 11-12 seconds. In good news, I've written an optimization for OpacHiddenItems, which effectively eliminates the overhead of running it. So yippee! I'll open a different ticket for that. But I was hoping to save more like 30 seconds. So it seems like there's still more optimizing to do on other parts of OPAC search. It seems like there still 20 seconds unaccounted for in my search... -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 01:01:48 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 00:01:48 +0000 Subject: [Koha-bugs] [Bug 36261] New: Calculating OpacHiddenItems is too slow in OPAC search Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36261 Bug ID: 36261 Summary: Calculating OpacHiddenItems is too slow in OPAC search Change sponsored?: --- Product: Koha Version: master Hardware: All OS: All Status: NEW Severity: normal Priority: P5 - low Component: Architecture, internals, and plumbing Assignee: koha-bugs at lists.koha-community.org Reporter: dcook at prosentient.com.au QA Contact: testopia at bugs.koha-community.org Calculating items and records hidden by OpacHiddenItems it slow. Too slow. Fortunately, I've come up with an optimization which seems to effectively eliminate the overhead added by OpacHiddenItems. Basically, instead of running 1 query per item, I run 1 query per bib to get all hidden items. It's pretty straightforward, but I'd like to battle-test it a bit more. I'm also writing this optimization for an older version of Koha, and I still have more optimizing I want to do, so I'm not going to post my patch just yet... It's coming though! -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 01:01:56 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 00:01:56 +0000 Subject: [Koha-bugs] [Bug 36261] Calculating OpacHiddenItems is too slow in OPAC search In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36261 David Cook changed: What |Removed |Added ---------------------------------------------------------------------------- Assignee|koha-bugs at lists.koha-commun |dcook at prosentient.com.au |ity.org | -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 01:02:03 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 00:02:03 +0000 Subject: [Koha-bugs] [Bug 36261] Calculating OpacHiddenItems is too slow in OPAC search In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36261 David Cook changed: What |Removed |Added ---------------------------------------------------------------------------- Component|Architecture, internals, |Searching |and plumbing | -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 01:13:59 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 00:13:59 +0000 Subject: [Koha-bugs] [Bug 36239] Availability calculation in OPAC Results XSLT is too slow In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36239 David Cook changed: What |Removed |Added ---------------------------------------------------------------------------- See Also| |https://bugs.koha-community | |.org/bugzilla3/show_bug.cgi | |?id=36261 -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 01:13:59 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 00:13:59 +0000 Subject: [Koha-bugs] [Bug 36261] Calculating OpacHiddenItems is too slow in OPAC search In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36261 David Cook changed: What |Removed |Added ---------------------------------------------------------------------------- See Also| |https://bugs.koha-community | |.org/bugzilla3/show_bug.cgi | |?id=36239 -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 01:28:10 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 00:28:10 +0000 Subject: [Koha-bugs] [Bug 36262] New: Under an item's status, provide the shelving location drop down menu Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36262 Bug ID: 36262 Summary: Under an item's status, provide the shelving location drop down menu Change sponsored?: --- Product: Koha Version: 23.05 Hardware: All OS: All Status: NEW Severity: enhancement Priority: P5 - low Component: Cataloging Assignee: koha-bugs at lists.koha-community.org Reporter: lindsayfuchs at countyofplumas.com QA Contact: testopia at bugs.koha-community.org CC: m.de.rooy at rijksmuseum.nl Created attachment 162859 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162859&action=edit mentioned item page and status area When you go home -> search and click on the title of an item -> it gives you several options on the left hand side including "item" (see attached, side labeled "image A" for clarification). Under statuses, it currently shows (among other things) Lost Status, Damaged Status, and Withdrawn Status (see attached, side labeled "image B" for clarification.) I want to know if I can get the "c - Shelving location (drop down menu)" to show there too with the "set" option button. This way people who do not have cataloging permission for items would still be able to change where items are shelved. I'm also wondering if for the larger picture there would be a way to pick which of the fields on the edit item page can be shown there - home/current branch, price, etc. -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 01:44:59 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 00:44:59 +0000 Subject: [Koha-bugs] [Bug 30987] Adding relationship to PatronQuickAddFields causes it to be added 2x In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30987 Myka Kennedy Stephens changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Needs Signoff |Signed Off -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 01:45:01 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 00:45:01 +0000 Subject: [Koha-bugs] [Bug 30987] Adding relationship to PatronQuickAddFields causes it to be added 2x In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30987 Myka Kennedy Stephens changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #162461|0 |1 is obsolete| | --- Comment #6 from Myka Kennedy Stephens --- Created attachment 162860 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162860&action=edit Bug 30987: Fix relationship fields for patron full and quick add forms To test: 1. APPLY PATACH and restart services. 2. Find the borrowerRelationship system preference. The description should no longer include the words "Leave empty to deactivate." 3. Populate the system preference with at least 1 choice. 4. Find a patron category with can_be_guarantee set to 'Yes'. 5. Quick add a patron of that type, making sure the relationship field shows in the Patron guarantor section. ( You have to +Add gaurantor before this field will show ) 6. The values in the dropdown should refelct the borrowerRelationship values. 7. With BorrowerMandatoryField make relationship mandatory. 8. Try step 5 again, this time the Relationship field should be mandatory. 9. Remove the field from BorrowerMandatoryField and add it to BorrowerUnwantedField. 10. Do step 5 again, the relationship field should not show on the quick add form. Signed-off-by: Myka Kennedy Stephens -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 01:45:37 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 00:45:37 +0000 Subject: [Koha-bugs] [Bug 30987] Adding relationship to PatronQuickAddFields causes it to be added 2x In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30987 Myka Kennedy Stephens changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |mkstephens at fosgail.org --- Comment #7 from Myka Kennedy Stephens --- Patch works as described. Great work! -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 02:02:24 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 01:02:24 +0000 Subject: [Koha-bugs] [Bug 36263] New: Incorrect subscription renewal dates Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36263 Bug ID: 36263 Summary: Incorrect subscription renewal dates Change sponsored?: --- Product: Koha Version: 23.05 Hardware: All OS: All Status: NEW Severity: enhancement Priority: P5 - low Component: Serials Assignee: koha-bugs at lists.koha-community.org Reporter: wainuiwitikapark at catalyst.net.nz QA Contact: testopia at bugs.koha-community.org A user on 23.05 tried to renew a subscription in the serials module via the renew button in the subscription details page. After the renewal is submitted, the new date is incorrectly calculated. For example, when trying to renew a subscription, they entered the subscription start date of 1/03/2024, and renewed for the length of 12 months, but when attempting to renew again, the new start date calculated to 01/01/2025. They retested other renewal lengths (such as 4 weeks, 6 months etc), and in various scenarios the date continued to miscalculate. -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 02:46:51 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 01:46:51 +0000 Subject: [Koha-bugs] [Bug 36264] New: XSLT processing is much slower on OPAC than Staff Interface Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36264 Bug ID: 36264 Summary: XSLT processing is much slower on OPAC than Staff Interface Change sponsored?: --- Product: Koha Version: master Hardware: All OS: All Status: NEW Severity: normal Priority: P5 - low Component: Searching Assignee: koha-bugs at lists.koha-community.org Reporter: dcook at prosentient.com.au QA Contact: testopia at bugs.koha-community.org I haven't figured this one out yet, but it looks like the XSLT processing for search results is much slower on the OPAC than on the Staff Interface. No XSLT (disabled in code): OPAC: 18.69 seconds Staff: 10.5 seconds Default XSLT: OPAC: 25.7 seconds Staff: 10.6 seconds As you can see here, the XSLT processing for the staff interface is much faster. I’d say the OPAC takes 7 seconds whereas the Staff takes .1 seconds. This is certainly worth reviewing. (Note I'm using Zebra but it should be irrelevant for this testing. The same problem should exist for both Zebra and Elasticsearch...) (Note also that it's clearly not the only discrepancy between the two search interfaces. Note that OpacHiddenItems isn't contributing to the slowness on the OPAC side.) -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 03:08:32 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 02:08:32 +0000 Subject: [Koha-bugs] [Bug 36264] XSLT processing is much slower on OPAC than Staff Interface In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36264 --- Comment #1 from David Cook --- Using "strace", I've been analyzing the searches, and comparing the staff interface versus the OPAC. They both take 1-2 seconds to get started up, and then they lose roughly the same amount of time getting Zebra facets (in my cease about 9-12 seconds). It takes about 1 second to process the 20 records in the staff interface, but it takes about 16 seconds to process the 20 records for the OPAC. The last 2 seconds of the OPAC are dedicated to template render. The staff interface spends 4 seconds on its final steps. Some of this is template render and some is work that I haven't analyzed yet, but I'm not worried about at this stage. Used PassItemMarcToXSLT and removed buildKohaItemsNamespace, and I'm getting: Default XSLT: OPAC: 19.21 seconds Staff: 11 seconds No XSLT (disabled in code): OPAC: 19.62 Staff: 10.7 The main difference here is the PassItemMarcToXSLT, so that's interesting... sounds like items are having an impact on the OPAC XSLT processing even if buildKohaItemsNamespace isn't being used... -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 03:23:42 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 02:23:42 +0000 Subject: [Koha-bugs] [Bug 36264] XSLT processing is much slower on OPAC than Staff Interface In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36264 David Cook changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution|--- |INVALID --- Comment #2 from David Cook --- Nevermind... I was comparing apples and oranges. OPAC defaults to relevance sort whereas the Staff Interface doesn't, so I was getting different results which were processed at different rates. With both using relevance sorting, I'm getting the same processing times between the two interfaces. Yay... now they're both equally as slow... -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 08:05:58 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 07:05:58 +0000 Subject: [Koha-bugs] [Bug 36232] Updating database structure In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36232 Mohd Hafiz Yusoff changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |mhby87 at gmail.com --- Comment #1 from Mohd Hafiz Yusoff --- (In reply to James Magori from comment #0) > Upgrade to 23.11.02.002 [08:25:15]: Bug 34979 - Fix system preference > discrepancies > ERROR: {UNKNOWN}: DBI Exception: DBD::mysql::db do failed: Duplicate entry > 'OAI-PMH:AutoUpdateSetsEmbedItemData' for key 'systempreferences.PRIMARY' at > /usr/share/koha/lib/C4/Installer.pm line 741 > Fix mistakes in system preferences, if necessary: > ERROR: {UNKNOWN}: DBI Exception: DBD::mysql::db do failed: Duplicate entry > 'OAI-PMH:AutoUpdateSetsEmbedItemData' for key 'systempreferences.PRIMARY' at > /usr/share/koha/lib/C4/Installer.pm line 741 Same with me, but i just delete variable "OAI-PMH:AutoUpdateSetsEmbedItemData" in systempreferences table DELETE FROM systempreferences WHERE variable = "OAI-PMH:AutoUpdateSetsEmbedItemData"; then run koha-upgrade-schema again -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 08:58:06 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 07:58:06 +0000 Subject: [Koha-bugs] [Bug 36251] Patron search by letter broken in holds In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36251 Jonathan Druart changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |Needs Signoff -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 08:58:09 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 07:58:09 +0000 Subject: [Koha-bugs] [Bug 36251] Patron search by letter broken in holds In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36251 --- Comment #2 from Jonathan Druart --- Created attachment 162861 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162861&action=edit Bug 36251: (bug 35329 follow-up) Fix patron search by first letter when placing a hold Most of the patrons searches open in a modal. Except: * the main one (members-home) * when placing a hold * when requesting an article (did I miss one?) The patron-search.inc BLOCKs need a parent block to know where to locate the elements (form, table, etc), because we can have several patron searches on the same page. Bug 35329 reused '#searchresults': 10 [% SET search_results_block_id = 'searchresults' %] which is used on the main patron search. The ones in the modal are correctly handled: we build the parent node in the "patron_search_modal" block. But for the 2 others the parent block id is wrong. On reserve/request.tt we have one already, so we set the TT variable from the .tt file On circ/request-article we don't have one already, so we can reuse searchresults (could be more specific however to include 'patrons'...) Test plan: Browse patrons by first letter when placing a hold and requesting an article -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 08:58:30 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 07:58:30 +0000 Subject: [Koha-bugs] [Bug 35862] Display patron search result on the right of the form (modal) In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35862 Martin Renvoize changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #162858|0 |1 is obsolete| | --- Comment #3 from Martin Renvoize --- Created attachment 162862 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162862&action=edit Bug 35862: Display modal search results to the right of form above 1200px To test: 1. Apply patch 2. Rebuild CSS ( yarn build ) 3. Look at some of the places where there is a modal patron search. -suggestion/suggestion.pl: Set to patron -members/memberentry.pl: Add guarantor 4. Make sure the modal looks good before and after you have searched for a patron. 5. Play with many different screen sizes, ensuring everything looks good and makes sense. Signed-off-by: Martin Renvoize -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 08:59:22 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 07:59:22 +0000 Subject: [Koha-bugs] [Bug 36251] Patron search by letter broken in holds In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36251 Jonathan Druart changed: What |Removed |Added ---------------------------------------------------------------------------- Assignee|koha-bugs at lists.koha-commun |jonathan.druart at gmail.com |ity.org | CC| |jonathan.druart at gmail.com -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 08:59:58 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 07:59:58 +0000 Subject: [Koha-bugs] [Bug 35862] Display patron search result on the right of the form (modal) In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35862 Martin Renvoize changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |oleonard at myacpl.org -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 09:00:18 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 08:00:18 +0000 Subject: [Koha-bugs] [Bug 35862] Display patron search result on the right of the form (modal) In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35862 Martin Renvoize changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Needs Signoff |Signed Off --- Comment #4 from Martin Renvoize --- This is a huge improvement, thanks Lucas. Signing off. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 09:05:37 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 08:05:37 +0000 Subject: [Koha-bugs] [Bug 35862] Display patron search result on the right of the form (modal) In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35862 --- Comment #5 from Jonathan Druart --- Do we want the 100% width for inputs/select on small screens? https://snipboard.io/iwo0lI.jpg -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 09:05:38 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 08:05:38 +0000 Subject: [Koha-bugs] [Bug 36249] ILL - "Request from partners" action is broken In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36249 Martin Renvoize changed: What |Removed |Added ---------------------------------------------------------------------------- Depends on|34478 | Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=34478 [Bug 34478] Full CSRF protection -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 09:05:38 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 08:05:38 +0000 Subject: [Koha-bugs] [Bug 34478] Full CSRF protection In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=34478 Martin Renvoize changed: What |Removed |Added ---------------------------------------------------------------------------- Blocks|36249 | Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36249 [Bug 36249] ILL - "Request from partners" action is broken -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 09:08:39 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 08:08:39 +0000 Subject: [Koha-bugs] [Bug 36241] ILL Batches are broken In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36241 Martin Renvoize changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #162808|0 |1 is obsolete| | --- Comment #3 from Martin Renvoize --- Created attachment 162863 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162863&action=edit Bug 36241: Fix wrong cud-search This line is supposed to searhc for plugins with the method 'provides_api' which returns a {type => 'search'} entry among others. This has nothing to do with search vs cud-search from in forms Signed-off-by: Martin Renvoize -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 09:08:42 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 08:08:42 +0000 Subject: [Koha-bugs] [Bug 36241] ILL Batches are broken In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36241 Martin Renvoize changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #162809|0 |1 is obsolete| | --- Comment #4 from Martin Renvoize --- Created attachment 162864 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162864&action=edit Bug 36241: Update missing query_type => op in ill-batch.inc Test plan: - Add 'FreeForm' backend and enable ILLModule, run: bash <(curl -s https://raw.githubusercontent.com/ammopt/koha-ill-dev/master/start-ill-dev.sh) - Install a metadata enrichment plugin, e.g.: https://github.com/PTFS-Europe/koha-plugin-api-pubmed/releases - Add 5 batches, run the following command in kshell: for x in {1..5}; do echo "INSERT INTO illbatches (name, backend, library_id, status_code, patron_id) VALUES ('$x', 'FreeForm', 'CPL', 'NEW', 52);"; done | koha-mysql kohadev - Visit ILL batches page: /cgi-bin/koha/ill/ill-requests.pl?method=batch_list - Confirm no batches are shown. Apply patch. Repeat. Signed-off-by: Martin Renvoize -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 09:08:56 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 08:08:56 +0000 Subject: [Koha-bugs] [Bug 36249] ILL - "Request from partners" action is broken In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36249 Martin Renvoize changed: What |Removed |Added ---------------------------------------------------------------------------- QA Contact| |martin.renvoize at ptfs-europe | |.com -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 09:09:41 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 08:09:41 +0000 Subject: [Koha-bugs] [Bug 36241] ILL Batches are broken In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36241 Martin Renvoize changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Needs Signoff |Signed Off QA Contact| |martin.renvoize at ptfs-europe | |.com --- Comment #5 from Martin Renvoize --- Trivial patch fixes the issue, gong straight for PQA -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 09:09:46 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 08:09:46 +0000 Subject: [Koha-bugs] [Bug 36241] ILL Batches are broken In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36241 Martin Renvoize changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Signed Off |Passed QA -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 09:09:55 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 08:09:55 +0000 Subject: [Koha-bugs] [Bug 36241] ILL Batches are broken In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36241 Martin Renvoize changed: What |Removed |Added ---------------------------------------------------------------------------- Severity|normal |critical -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 09:31:09 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 08:31:09 +0000 Subject: [Koha-bugs] [Bug 35941] OPAC user can guess clubs of other users In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35941 Fridolin Somers changed: What |Removed |Added ---------------------------------------------------------------------------- Version|unspecified |master Component|Koha |OPAC Group|Koha security | Product|Koha security |Koha -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 09:32:13 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 08:32:13 +0000 Subject: [Koha-bugs] [Bug 35941] OPAC user can guess clubs of other users In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35941 Fridolin Somers changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Pushed to oldoldstable |Pushed to oldoldoldstable -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 10:26:53 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 09:26:53 +0000 Subject: [Koha-bugs] [Bug 36265] New: Bigger font-size for headers in staff interface Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36265 Bug ID: 36265 Summary: Bigger font-size for headers in staff interface Change sponsored?: --- Product: Koha Version: master Hardware: All OS: All Status: NEW Severity: enhancement Priority: P5 - low Component: Staff interface Assignee: koha-bugs at lists.koha-community.org Reporter: fridolin.somers at biblibre.com QA Contact: testopia at bugs.koha-community.org CC: gmcharlt at gmail.com In staff interface, text in nav bar and search header are at normal size. Since these are used a lot, I propose to increase font-size. -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 10:30:21 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 09:30:21 +0000 Subject: [Koha-bugs] [Bug 36265] Bigger font-size for headers in staff interface In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36265 Fridolin Somers changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |ASSIGNED Assignee|koha-bugs at lists.koha-commun |fridolin.somers at biblibre.co |ity.org |m -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 10:32:55 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 09:32:55 +0000 Subject: [Koha-bugs] [Bug 36265] Bigger font-size for headers in staff interface In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36265 Fridolin Somers changed: What |Removed |Added ---------------------------------------------------------------------------- Patch complexity|--- |Trivial patch Status|ASSIGNED |Needs Signoff -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 10:32:57 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 09:32:57 +0000 Subject: [Koha-bugs] [Bug 36265] Bigger font-size for headers in staff interface In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36265 --- Comment #1 from Fridolin Somers --- Created attachment 162865 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162865&action=edit Bug 36265: Bigger font-size for headers in staff interface In staff interface, text in nav bar and search header are at normal size. Since these are used a lot, I propose to increase font-size at 110%. Test by applying patch and rebuild CSS to see bigger text in staff interface -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 10:34:22 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 09:34:22 +0000 Subject: [Koha-bugs] [Bug 36266] New: "Edit search" and "Search in result list" not working well together Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36266 Bug ID: 36266 Summary: "Edit search" and "Search in result list" not working well together Change sponsored?: --- Product: Koha Version: master Hardware: All OS: All Status: NEW Severity: normal Priority: P5 - low Component: Searching Assignee: koha-bugs at lists.koha-community.org Reporter: katrin.fischer at bsz-bw.de QA Contact: testopia at bugs.koha-community.org It looks like that when you use the "search in results" feature, the "edit search" fails at least in some cases, as the created search is not the same. Example (works with ktd sample data) * In the staff interface, go to advanced search * Search for: Subject, phrase: biography * You should have 22 results * Enter "music" in the "Search within results" search box on top of the results list * You should have 3 results /cgi-bin/koha/catalogue/search.pl?idx=su%2Cphr&q=biography&&&limit=music * Click "Edit this search" link on top of results list * Verify both criteria show up in the form (the music one is at the bottom) * Don't change the form, just search again * NOT OK: 0 results /cgi-bin/koha/catalogue/search.pl?advsearch=1&idx=su%2Cphr&q=biography&limit=music%3A&other_music0=on&sort_by=relevance -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 10:37:45 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 09:37:45 +0000 Subject: [Koha-bugs] [Bug 36249] ILL - "Request from partners" action is broken In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36249 Pedro Amorim changed: What |Removed |Added ---------------------------------------------------------------------------- Depends on| |36243 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36243 [Bug 36243] ILL "Edit request" action is broken -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 10:37:45 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 09:37:45 +0000 Subject: [Koha-bugs] [Bug 36243] ILL "Edit request" action is broken In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36243 Pedro Amorim changed: What |Removed |Added ---------------------------------------------------------------------------- Blocks| |36249 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36249 [Bug 36249] ILL - "Request from partners" action is broken -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 10:42:38 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 09:42:38 +0000 Subject: [Koha-bugs] [Bug 35604] ILL - Allow for automatic backend selection In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35604 Pedro Amorim changed: What |Removed |Added ---------------------------------------------------------------------------- Depends on|35570 |35725 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35570 [Bug 35570] Add a generic master form in ILL https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35725 [Bug 35725] ILL - Generic master form does not keep patron and cardnumber when changing type -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 10:42:38 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 09:42:38 +0000 Subject: [Koha-bugs] [Bug 35570] Add a generic master form in ILL In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35570 Pedro Amorim changed: What |Removed |Added ---------------------------------------------------------------------------- Blocks|35604 | Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35604 [Bug 35604] ILL - Allow for automatic backend selection -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 10:42:38 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 09:42:38 +0000 Subject: [Koha-bugs] [Bug 35725] ILL - Generic master form does not keep patron and cardnumber when changing type In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35725 Pedro Amorim changed: What |Removed |Added ---------------------------------------------------------------------------- Blocks| |35604 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35604 [Bug 35604] ILL - Allow for automatic backend selection -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 10:43:44 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 09:43:44 +0000 Subject: [Koha-bugs] [Bug 36243] ILL "Edit request" action is broken In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36243 Martin Renvoize changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #162832|0 |1 is obsolete| | --- Comment #3 from Martin Renvoize --- Created attachment 162869 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162869&action=edit Bug 36243: Remove cud- from op 'cud-' needs to be removed here because it's showing the form, not handling its POST submission Signed-off-by: Martin Renvoize -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 10:43:47 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 09:43:47 +0000 Subject: [Koha-bugs] [Bug 36243] ILL "Edit request" action is broken In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36243 Martin Renvoize changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #162833|0 |1 is obsolete| | --- Comment #4 from Martin Renvoize --- Created attachment 162870 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162870&action=edit Bug 36243: Update edit_action to cud-edit_action 1) Install FreeForm, enable ILL module, run: bash <(curl -s https://raw.githubusercontent.com/ammopt/koha-ill-dev/master/start-ill-dev.sh) 2) You'll have to switch the FreeForm branch to the one compatible with this work, i.e.: cd /kohadevbox/koha/Koha/Illbackends/FreeForm git checkout b_36243 3) Restart plack: koha-plack --restart kohadev 4) Create a new FreeForm request, visit: /cgi-bin/koha/ill/ill-requests.pl?method=create&backend=FreeForm 5) Set 'type' enter '42' in cardnumber and pick a library. Click 'Create'. 6) Edit that request, click "manage request" or if #1 visit: /cgi-bin/koha/ill/ill-requests.pl?op=illview&illrequest_id=1 7) Click "Edit request". Click "Submit". Notice it errors "No CSRF token passed for POST" 9) Apply patches. Restart plack. 10) Repeat 7) Signed-off-by: Martin Renvoize -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 10:44:44 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 09:44:44 +0000 Subject: [Koha-bugs] [Bug 36243] ILL "Edit request" action is broken In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36243 Martin Renvoize changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Needs Signoff |Signed Off Severity|normal |critical QA Contact| |martin.renvoize at ptfs-europe | |.com --- Comment #5 from Martin Renvoize --- Follow-up fix for regression introduced. All working as designed now and code is reasonable to follow. Going straight for a QA and passing. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 10:44:48 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 09:44:48 +0000 Subject: [Koha-bugs] [Bug 36243] ILL "Edit request" action is broken In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36243 Martin Renvoize changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Signed Off |Passed QA -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 10:46:32 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 09:46:32 +0000 Subject: [Koha-bugs] [Bug 36249] ILL - "Request from partners" action is broken In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36249 Martin Renvoize changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #162838|0 |1 is obsolete| | --- Comment #4 from Martin Renvoize --- Created attachment 162873 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162873&action=edit Bug 36249: Fix generic_confirm op Test plan, k-t-d: 1) Install FreeForm, enable ILL module, run: bash <(curl -s https://raw.githubusercontent.com/ammopt/koha-ill-dev/master/start-ill-dev.sh) 2) You'll have to switch the FreeForm branch to the one compatible with this work, i.e.: cd /kohadevbox/koha/Koha/Illbackends/FreeForm git checkout b_36243 3) Restart plack: koha-plack --restart kohadev 4) Start by adding an e-mail address to the patron of category "Inter-library Loan", visit: /cgi-bin/koha/members/memberentry.pl?op=edit_form&destination=circ&borrowernumber=16 5) Add an e-mail address to "Primary e-mail" 6) Create a new FreeForm request, visit: /cgi-bin/koha/ill/ill-requests.pl?method=create&backend=FreeForm 7) Set 'type' enter '42' in cardnumber and pick a library. Click 'Create'. 8) Click "Place request with partners" 9) Pick a partner library (will be the same patron from step 4) 10) Click "Send email". Notice the CSRF error. 11) Apply patch and restart plack koha-plack --restart kohadev 12) Repeat 8-10. Notice error no longer shows. 13) Notice the request's status is now 'Requested from partners' Signed-off-by: Martin Renvoize -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 10:46:34 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 09:46:34 +0000 Subject: [Koha-bugs] [Bug 36249] ILL - "Request from partners" action is broken In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36249 Martin Renvoize changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #162841|0 |1 is obsolete| | --- Comment #5 from Martin Renvoize --- Created attachment 162874 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162874&action=edit Bug 36249: Fix styling of 'Send email' button This button was using the old 'btn-default' class instead of the new 'btn-primary' form 22.11 onwards Signed-off-by: Martin Renvoize -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 10:46:46 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 09:46:46 +0000 Subject: [Koha-bugs] [Bug 36249] ILL - "Request from partners" action is broken In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36249 Martin Renvoize changed: What |Removed |Added ---------------------------------------------------------------------------- Severity|normal |critical Status|Needs Signoff |Signed Off -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 10:47:03 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 09:47:03 +0000 Subject: [Koha-bugs] [Bug 36249] ILL - "Request from partners" action is broken In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36249 Martin Renvoize changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Signed Off |Passed QA --- Comment #6 from Martin Renvoize --- All working as expected now, Passing QA -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 10:47:32 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 09:47:32 +0000 Subject: [Koha-bugs] [Bug 36245] ILL - Custom backend form action is broken In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36245 Martin Renvoize changed: What |Removed |Added ---------------------------------------------------------------------------- Depends on|34478 | Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=34478 [Bug 34478] Full CSRF protection -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 10:47:32 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 09:47:32 +0000 Subject: [Koha-bugs] [Bug 34478] Full CSRF protection In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=34478 Martin Renvoize changed: What |Removed |Added ---------------------------------------------------------------------------- Blocks|36245 | Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36245 [Bug 36245] ILL - Custom backend form action is broken -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 10:48:20 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 09:48:20 +0000 Subject: [Koha-bugs] [Bug 36245] ILL - Custom backend form action is broken In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36245 Martin Renvoize changed: What |Removed |Added ---------------------------------------------------------------------------- QA Contact| |martin.renvoize at ptfs-europe | |.com Depends on| |34478 Severity|normal |critical Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=34478 [Bug 34478] Full CSRF protection -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 10:48:20 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 09:48:20 +0000 Subject: [Koha-bugs] [Bug 34478] Full CSRF protection In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=34478 Martin Renvoize changed: What |Removed |Added ---------------------------------------------------------------------------- Blocks| |36245 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36245 [Bug 36245] ILL - Custom backend form action is broken -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 10:48:29 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 09:48:29 +0000 Subject: [Koha-bugs] [Bug 36245] ILL - Custom backend form action is broken In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36245 Martin Renvoize changed: What |Removed |Added ---------------------------------------------------------------------------- Depends on|34478 | Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=34478 [Bug 34478] Full CSRF protection -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 10:48:29 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 09:48:29 +0000 Subject: [Koha-bugs] [Bug 34478] Full CSRF protection In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=34478 Martin Renvoize changed: What |Removed |Added ---------------------------------------------------------------------------- Blocks|36245 | Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36245 [Bug 36245] ILL - Custom backend form action is broken -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 10:49:06 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 09:49:06 +0000 Subject: [Koha-bugs] [Bug 33898] background_jobs_worker.pl may leave defunct children processes for extended periods of time In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33898 Alessandro Tedesco changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |alessandro.tedesco.it at gmail | |.com --- Comment #12 from Alessandro Tedesco --- Hi, I encounter the same issue. In my case, Koha 22.11.15 (Debian Package) on Ubuntu 22.04.1(MariaDB + RabbitMQ), the issue occurs when I do: >From Koha Staff Interface 1) Stage records for import (everything goes fine) 2) Manage staged MARC records (everything goes fine) FromShell 3) # ps aux | grep 'Z' find the "background_jobs" as Zombie with a PID (e.g. 54679) >From Koha Staff Interface 4) Stage records for import (everything goes fine) 5) Manage staged MARC records (everything goes well) FromShell 6) # ps aux | grep 'Z' find the "background_jobs" as Zombie with another PID (e.g. 54679) So, the fact that "background_jobs" remains a zombie does not actually prevent other processes from operating in Koha (simply once the new process has started, that zombie is killed and a new zombie is created). A reboot of the server kills the zombie process. Since it seems like a problem that doesn't affect everyone, could it be something related to the Server settings? Thanks -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 10:49:21 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 09:49:21 +0000 Subject: [Koha-bugs] [Bug 36245] ILL - Custom backend form action is broken In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36245 Martin Renvoize changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #162834|0 |1 is obsolete| | --- Comment #2 from Martin Renvoize --- Created attachment 162875 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162875&action=edit Bug 36245: Remove cud- from op 1) Install FreeForm, enable ILL module, run: bash <(curl -s https://raw.githubusercontent.com/ammopt/koha-ill-dev/master/start-ill-dev.sh) 2) You'll have to switch the FreeForm branch to the one compatible with this work, i.e.: cd /kohadevbox/koha/Koha/Illbackends/FreeForm git checkout b_36243 3) Restart plack: koha-plack --restart kohadev 4) Create a new FreeForm request, visit: /cgi-bin/koha/ill/ill-requests.pl?method=create&backend=FreeForm 5) Set 'type' enter '42' in cardnumber and pick a library. Click 'Create'. 6) Edit that request, click "manage request" or if #1 visit: /cgi-bin/koha/ill/ill-requests.pl?op=illview&illrequest_id=1 7) Click "Edit item metadata". Click "Submit". Notice it explodes. 9) Apply patch. Restart plack. 10) Repeat 7) Signed-off-by: Martin Renvoize -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 10:49:35 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 09:49:35 +0000 Subject: [Koha-bugs] [Bug 36245] ILL - Custom backend form action is broken In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36245 Martin Renvoize changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Needs Signoff |Signed Off --- Comment #3 from Martin Renvoize --- All working again now, thanks Pedro. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 10:49:39 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 09:49:39 +0000 Subject: [Koha-bugs] [Bug 36245] ILL - Custom backend form action is broken In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36245 Martin Renvoize changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Signed Off |Passed QA -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 11:06:22 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 10:06:22 +0000 Subject: [Koha-bugs] [Bug 36265] Bigger font-size for headers in staff interface In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36265 --- Comment #2 from Fridolin Somers --- Created attachment 162878 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162878&action=edit Screenshot without patch -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 11:06:40 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 10:06:40 +0000 Subject: [Koha-bugs] [Bug 36265] Bigger font-size for headers in staff interface In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36265 --- Comment #3 from Fridolin Somers --- Created attachment 162879 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162879&action=edit Screenshot with patch -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 11:08:56 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 10:08:56 +0000 Subject: [Koha-bugs] [Bug 36268] New: Letters.t assumes an empty ReplyToDefault Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36268 Bug ID: 36268 Summary: Letters.t assumes an empty ReplyToDefault Change sponsored?: --- Product: Koha Version: master Hardware: All OS: All Status: NEW Severity: minor Priority: P5 - low Component: Test Suite Assignee: chris at bigballofwax.co.nz Reporter: m.de.rooy at rijksmuseum.nl QA Contact: testopia at bugs.koha-community.org We should not assume but mock here. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 11:09:05 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 10:09:05 +0000 Subject: [Koha-bugs] [Bug 36268] Letters.t assumes an empty ReplyToDefault In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36268 Marcel de Rooy changed: What |Removed |Added ---------------------------------------------------------------------------- Assignee|chris at bigballofwax.co.nz |m.de.rooy at rijksmuseum.nl -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 11:26:38 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 10:26:38 +0000 Subject: [Koha-bugs] [Bug 36245] ILL - Custom backend form action is broken In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36245 Pedro Amorim changed: What |Removed |Added ---------------------------------------------------------------------------- Depends on|36243 |36249 --- Comment #4 from Pedro Amorim --- Updating this dependency to be able to apply whole tree in one go, Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36243 [Bug 36243] ILL "Edit request" action is broken https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36249 [Bug 36249] ILL - "Request from partners" action is broken -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 11:26:38 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 10:26:38 +0000 Subject: [Koha-bugs] [Bug 36243] ILL "Edit request" action is broken In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36243 Pedro Amorim changed: What |Removed |Added ---------------------------------------------------------------------------- Blocks|36245 | Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36245 [Bug 36245] ILL - Custom backend form action is broken -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 11:26:38 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 10:26:38 +0000 Subject: [Koha-bugs] [Bug 36249] ILL - "Request from partners" action is broken In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36249 Pedro Amorim changed: What |Removed |Added ---------------------------------------------------------------------------- Blocks| |36245 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36245 [Bug 36245] ILL - Custom backend form action is broken -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 11:31:09 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 10:31:09 +0000 Subject: [Koha-bugs] [Bug 36245] ILL - Custom backend form action is broken In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36245 Pedro Amorim changed: What |Removed |Added ---------------------------------------------------------------------------- Blocks| |35581 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35581 [Bug 35581] ILL Koha classes are not consistent -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 11:31:09 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 10:31:09 +0000 Subject: [Koha-bugs] [Bug 35581] ILL Koha classes are not consistent In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35581 Pedro Amorim changed: What |Removed |Added ---------------------------------------------------------------------------- Depends on| |36245 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36245 [Bug 36245] ILL - Custom backend form action is broken -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 11:36:15 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 10:36:15 +0000 Subject: [Koha-bugs] [Bug 35581] ILL Koha classes are not consistent In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35581 Pedro Amorim changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #162817|0 |1 is obsolete| | --- Comment #54 from Pedro Amorim --- Created attachment 162880 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162880&action=edit Bug 35581: Illbackend.pm -> ILL/Backend.pm Signed-off-by: David Nind -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 11:36:19 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 10:36:19 +0000 Subject: [Koha-bugs] [Bug 35581] ILL Koha classes are not consistent In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35581 Pedro Amorim changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #162818|0 |1 is obsolete| | --- Comment #55 from Pedro Amorim --- Created attachment 162881 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162881&action=edit Bug 35581: Illbatch.pm -> ILL/Batch.pm Illbatches.pm -> ILL/Batches.pm Signed-off-by: David Nind -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 11:36:25 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 10:36:25 +0000 Subject: [Koha-bugs] [Bug 35581] ILL Koha classes are not consistent In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35581 Pedro Amorim changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #162819|0 |1 is obsolete| | --- Comment #56 from Pedro Amorim --- Created attachment 162882 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162882&action=edit Bug 35581: Illbatchstatus.pm -> ILL/Batch/status.pm Illbatchstatuses.pm -> ILL/Batch/Statuses.pm Signed-off-by: David Nind -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 11:36:31 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 10:36:31 +0000 Subject: [Koha-bugs] [Bug 35581] ILL Koha classes are not consistent In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35581 Pedro Amorim changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #162820|0 |1 is obsolete| | --- Comment #57 from Pedro Amorim --- Created attachment 162883 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162883&action=edit Bug 35581: Illcomment.pm -> ILL/Comment.pm Illcomments.pm -> ILL/Comments.pm Signed-off-by: David Nind -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 11:36:34 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 10:36:34 +0000 Subject: [Koha-bugs] [Bug 35581] ILL Koha classes are not consistent In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35581 Pedro Amorim changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #162821|0 |1 is obsolete| | --- Comment #58 from Pedro Amorim --- Created attachment 162884 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162884&action=edit Bug 35581: Illrequestattribute.pm -> ILL/Request/Attribute.pm Illrequestattributes.pm -> ILL/Request/Attributes.pm Signed-off-by: David Nind -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 11:36:40 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 10:36:40 +0000 Subject: [Koha-bugs] [Bug 35581] ILL Koha classes are not consistent In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35581 Pedro Amorim changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #162822|0 |1 is obsolete| | --- Comment #59 from Pedro Amorim --- Created attachment 162885 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162885&action=edit Bug 35581: Koha/Illrequest/Workflow.pm -> Koha/ILL/Request/Workflow.pm Koha/Illrequest/Workflow/Availability.pm -> Koha/ILL/Request/Workflow/Availability.pm Koha/Illrequest/Workflow/TypeDisclaimer.pm -> Koha/ILL/Request/Workflow/TypeDisclaimer.pm Signed-off-by: David Nind -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 11:36:45 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 10:36:45 +0000 Subject: [Koha-bugs] [Bug 35581] ILL Koha classes are not consistent In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35581 Pedro Amorim changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #162823|0 |1 is obsolete| | --- Comment #60 from Pedro Amorim --- Created attachment 162886 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162886&action=edit Bug 35581: Koha/Illrequest/Config.pm -> Koha/ILL/Request/Config.pm Signed-off-by: David Nind -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 11:36:50 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 10:36:50 +0000 Subject: [Koha-bugs] [Bug 35581] ILL Koha classes are not consistent In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35581 Pedro Amorim changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #162824|0 |1 is obsolete| | --- Comment #61 from Pedro Amorim --- Created attachment 162887 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162887&action=edit Bug 35581: Koha/Illrequest/Logger.pm -> Koha/ILL/Request/Logger.pm Signed-off-by: David Nind -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 11:36:57 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 10:36:57 +0000 Subject: [Koha-bugs] [Bug 35581] ILL Koha classes are not consistent In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35581 Pedro Amorim changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #162825|0 |1 is obsolete| | --- Comment #62 from Pedro Amorim --- Created attachment 162888 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162888&action=edit Bug 35581: Koha/Illrequest/SupplierUpdate.pm -> Koha/ILL/Request/SupplierUpdate.pm Koha/Illrequest/SupplierUpdateProcessor.pm -> Koha/ILL/Request/SupplierUpdateProcessor.pm Signed-off-by: David Nind -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 11:37:04 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 10:37:04 +0000 Subject: [Koha-bugs] [Bug 35581] ILL Koha classes are not consistent In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35581 Pedro Amorim changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #162826|0 |1 is obsolete| | --- Comment #63 from Pedro Amorim --- Created attachment 162889 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162889&action=edit Bug 35581: Koha/Illrequest.pm -> Koha/ILL/Request.pm Koha/Illrequests.pm -> Koha/ILL/Requests.pm Merged: t/db_dependent/Koha/Illrequests.t t/db_dependent/Illrequests.t Into: t/db_dependent/Koha/ILL/Requests.t ILL classes file structure is, for the most part, around 7 years old and doesn't follow a strict logic. It's so confusing that some test files exist redundantly. This housekeeping should help future work in regards to ISO18626 to add Koha as a supplying agency instead of just requesting agency, as is now. It should also help future housekeeping of moving backend related logic out of the Illrequest.pm into Illbackend.pm (now ILL/Request.pm and ILL/Backend.pm as of this patchset). It should also help in structuring the addition of a master generic form (see bug 35570) This patchset will require existing backends to be updated to match the new class names and structure, if they invoke them. Test plan, k-t-d, run tests: prove t/db_dependent/api/v1/ill_* prove t/db_dependent/Koha/ILL/* Test plan, k-t-d, manual: 1) Install FreeForm, enable ILL module, run: bash <(curl -s https://raw.githubusercontent.com/ammopt/koha-ill-dev/master/start-ill-dev.sh) 2) You'll have to switch the FreeForm repo to the one compatible with this work, like: cd /kohadevbox/koha/Koha/Illbackends/FreeForm git checkout reorganize_ILL 3) Do some generic ILL testing: 3.1) Create a request 3.2) Add a comment to a request 3.3) Edit a request 3.4) Edit a request's item metadata 3.5) Confirm a request 3.6) List requests 3.7) Filter requests list using left side filters 4) Install a metadata enrichment plugin: https://github.com/PTFS-Europe/koha-plugin-api-pubmed 4.1) Create an ILL batch and insert a pubmedid like 123 4.2) Add the request and finish batch 5) Verify all of the above works as expected Signed-off-by: David Nind -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 11:37:11 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 10:37:11 +0000 Subject: [Koha-bugs] [Bug 35581] ILL Koha classes are not consistent In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35581 Pedro Amorim changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #162827|0 |1 is obsolete| | --- Comment #64 from Pedro Amorim --- Created attachment 162890 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162890&action=edit Bug 35581: QA Follow-up: Fix tidy warnings Fix forbidden pattern: Incorrect license statement (using postal address) Signed-off-by: David Nind -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 11:37:18 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 10:37:18 +0000 Subject: [Koha-bugs] [Bug 35581] ILL Koha classes are not consistent In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35581 Pedro Amorim changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #162828|0 |1 is obsolete| | --- Comment #65 from Pedro Amorim --- Created attachment 162891 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162891&action=edit Bug 35581: (QA follow-up): Missed Illrequests.pm REST API class Koha/REST/V1/Illrequests.pm -> Koha/REST/V1/ILL/Requests.pm Test plan: 1 Apply patch 2 Make sure tests pass, run: prove t/db_dependent/api/v1/ill_* -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 11:37:22 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 10:37:22 +0000 Subject: [Koha-bugs] [Bug 35581] ILL Koha classes are not consistent In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35581 Pedro Amorim changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #162829|0 |1 is obsolete| | --- Comment #66 from Pedro Amorim --- Created attachment 162892 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162892&action=edit Bug 35581: (QA follow-up): Update changes coming from bug 35331 Test plan: prove t/db_dependent/Koha/Plugins/Ill_hooks.t -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 11:37:57 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 10:37:57 +0000 Subject: [Koha-bugs] [Bug 35581] ILL Koha classes are not consistent In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35581 --- Comment #67 from Pedro Amorim --- Rebased on bug 36245 -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 11:40:46 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 10:40:46 +0000 Subject: [Koha-bugs] [Bug 36234] Language prefs cannot be modified In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36234 Martin Renvoize changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #162763|0 |1 is obsolete| | --- Comment #3 from Martin Renvoize --- Created attachment 162893 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162893&action=edit Bug 36234: Fix 'languages' prefs selection Test plan: Edit and save several types of sysprefs, reload the page to confirm they are correctly saved, or check their values in DB Signed-off-by: Christian Signed-off-by: Martin Renvoize -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 11:40:55 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 10:40:55 +0000 Subject: [Koha-bugs] [Bug 36234] Language prefs cannot be modified In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36234 Martin Renvoize changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |martin.renvoize at ptfs-europe | |.com QA Contact|testopia at bugs.koha-communit |martin.renvoize at ptfs-europe |y.org |.com -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 11:41:01 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 10:41:01 +0000 Subject: [Koha-bugs] [Bug 36234] Language prefs cannot be modified In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36234 Martin Renvoize changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Signed Off |Passed QA -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 11:42:37 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 10:42:37 +0000 Subject: [Koha-bugs] [Bug 35285] Centralise notice content wrapping for html output In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35285 Martin Renvoize changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |jonathan.druart at gmail.com -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 11:46:55 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 10:46:55 +0000 Subject: [Koha-bugs] [Bug 35570] Add a generic master form in ILL In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35570 --- Comment #37 from Pedro Amorim --- Created attachment 162894 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162894&action=edit Bug 35570: (QA follow-up): Standard backend: Bug 36243 compatibility Add FreeForm CSRF fix from https://github.com/PTFS-Europe/koha-ill-freeform/commit/c34be16ba34c840193ed5e043e6736fa0b1cb646 into this work. This is to keep this work up to date with latest FreeForm's fixes. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 11:47:02 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 10:47:02 +0000 Subject: [Koha-bugs] [Bug 36269] New: ElasticSearch: publisher-location (pl) index should use 264a Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36269 Bug ID: 36269 Summary: ElasticSearch: publisher-location (pl) index should use 264a Change sponsored?: --- Product: Koha Version: unspecified Hardware: All OS: All Status: NEW Severity: enhancement Priority: P5 - low Component: Searching - Elasticsearch Assignee: koha-bugs at lists.koha-community.org Reporter: domm at plix.at Currently the index `pl` points to 008/15-17. It should (additionally/instead?) point to 260a and/or 264a. * Fix the default mappings in admin/searchengine/elasticsearch/mappings.yaml Notes from chat: cait: maybe having the index broader is not a bad thing, I am not sure if it's confusing or not cait: like put 260a (non-RDA), 264 (RDA) and 008 15-17 in it? -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 11:47:20 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 10:47:20 +0000 Subject: [Koha-bugs] [Bug 36269] ElasticSearch: publisher-location (pl) index should use 264a In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36269 Thomas Klausner changed: What |Removed |Added ---------------------------------------------------------------------------- Patch complexity|--- |Trivial patch -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 11:49:32 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 10:49:32 +0000 Subject: [Koha-bugs] [Bug 36268] Letters.t assumes an empty ReplyToDefault In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36268 Marcel de Rooy changed: What |Removed |Added ---------------------------------------------------------------------------- Patch complexity|--- |Trivial patch Status|NEW |Needs Signoff -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 11:49:34 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 10:49:34 +0000 Subject: [Koha-bugs] [Bug 36268] Letters.t assumes an empty ReplyToDefault In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36268 --- Comment #1 from Marcel de Rooy --- Created attachment 162895 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162895&action=edit Bug 36268: Add a mock for ReplyToDefault Test plan: Without this patch, add email address in that pref. Run Letters.t. It fails. Now apply patch and run test again. Should pass. Signed-off-by: Marcel de Rooy -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 11:49:52 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 10:49:52 +0000 Subject: [Koha-bugs] [Bug 36268] Letters.t assumes an empty ReplyToDefault In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36268 Marcel de Rooy changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Needs Signoff |Signed Off --- Comment #2 from Marcel de Rooy --- Trivial test change: self SO -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 11:49:56 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 10:49:56 +0000 Subject: [Koha-bugs] [Bug 31510] The notice template tag helper still uses <<>> sytnax.. we should move to TT instead In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31510 --- Comment #3 from Martin Renvoize --- Can we just deprecate the attribute syntax entirely.. it appears to be entirely undocumented. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 11:51:52 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 10:51:52 +0000 Subject: [Koha-bugs] [Bug 36269] ElasticSearch: publisher-location (pl) index should use 264a In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36269 --- Comment #1 from Katrin Fischer --- Not sure if we should aim for matching the Zebra config, but I think it might be a good starting point. I definitely think we should put 260 and 264 $a in. Not sure about the controlled value from 008 - but a 3 letter country code might not hurt things. -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 11:54:35 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 10:54:35 +0000 Subject: [Koha-bugs] [Bug 36270] New: Remove special handling for <> Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36270 Bug ID: 36270 Summary: Remove special handling for <> Change sponsored?: --- Product: Koha Version: master Hardware: All OS: All Status: NEW Severity: enhancement Priority: P5 - low Component: Notices Assignee: koha-bugs at lists.koha-community.org Reporter: martin.renvoize at ptfs-europe.com QA Contact: testopia at bugs.koha-community.org Borrower attributes should be simple enough to fetch using TT syntax now and the special casing here for the old template syntax is a blocker for it's removal. As this functionality is not documented anywhere and there's not any cases of it in use in the default shipped notices I think we should just remove it. -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 11:54:46 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 10:54:46 +0000 Subject: [Koha-bugs] [Bug 36270] Remove special handling for <> In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36270 Martin Renvoize changed: What |Removed |Added ---------------------------------------------------------------------------- Blocks| |31510 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31510 [Bug 31510] The notice template tag helper still uses <<>> sytnax.. we should move to TT instead -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 11:54:46 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 10:54:46 +0000 Subject: [Koha-bugs] [Bug 31510] The notice template tag helper still uses <<>> sytnax.. we should move to TT instead In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31510 Martin Renvoize changed: What |Removed |Added ---------------------------------------------------------------------------- Depends on| |36270 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36270 [Bug 36270] Remove special handling for <> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 11:54:52 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 10:54:52 +0000 Subject: [Koha-bugs] [Bug 36270] Remove special handling for <> In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36270 Martin Renvoize changed: What |Removed |Added ---------------------------------------------------------------------------- Assignee|koha-bugs at lists.koha-commun |martin.renvoize at ptfs-europe |ity.org |.com -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 11:55:10 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 10:55:10 +0000 Subject: [Koha-bugs] [Bug 36270] Remove special handling for <> In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36270 Martin Renvoize changed: What |Removed |Added ---------------------------------------------------------------------------- Severity|enhancement |trivial -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 12:00:48 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 11:00:48 +0000 Subject: [Koha-bugs] [Bug 36270] Remove special handling for <> In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36270 --- Comment #1 from Martin Renvoize --- Except.. the placeholder syntax is exposed in the selection options of the editor.. so it's likely in prevalent use all over the place :( -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 12:03:02 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 11:03:02 +0000 Subject: [Koha-bugs] [Bug 36270] Remove special handling for <> In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36270 --- Comment #2 from Martin Renvoize --- Created attachment 162896 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162896&action=edit Bug 36270: Remove borrower-attribute:code from <<>> notices We need to replace this with a TT alternative however :| -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 12:03:19 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 11:03:19 +0000 Subject: [Koha-bugs] [Bug 36270] Remove special handling for <> In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36270 Martin Renvoize changed: What |Removed |Added ---------------------------------------------------------------------------- Severity|trivial |enhancement -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 12:03:40 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 11:03:40 +0000 Subject: [Koha-bugs] [Bug 36270] Remove special handling for <> In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36270 Martin Renvoize changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |Needs Signoff --- Comment #3 from Martin Renvoize --- I'm reconsidering this given comment 2 -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 12:04:41 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 11:04:41 +0000 Subject: [Koha-bugs] [Bug 31510] The notice template tag helper still uses <<>> sytnax.. we should move to TT instead In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31510 --- Comment #4 from Martin Renvoize --- No, we can't just remove it.. it's exposed in the side picker and as such is likely in use. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 12:20:08 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 11:20:08 +0000 Subject: [Koha-bugs] [Bug 35570] Add a generic master form in ILL In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35570 --- Comment #38 from Pedro Amorim --- Created attachment 162897 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162897&action=edit Bug 35570: (QA follow-up): Standard backend: Fix OPAC CSRF Add FreeForm CSRF fix from https://github.com/PTFS-Europe/koha-ill-freeform/commit/6a37ce0daba8aab13130dacd055c9ca5876b7df4 into this work. This is to keep this work up to date with latest FreeForm's fixes. The test plan to demonstrate the issue this patch fixes: Test plan, k-t-d: 1) Install FreeForm, enable ILL module, run: bash <(curl -s https://raw.githubusercontent.com/ammopt/koha-ill-dev/master/start-ill-dev.sh) 2) You'll have to switch the FreeForm branch to the one compatible with this work, i.e.: cd /kohadevbox/koha/Koha/Illbackends/FreeForm git checkout b_36243 3) Restart plack: koha-plack --restart kohadev 4) Go to OPAC ILL requests, login and visit: /cgi-bin/koha/opac-illrequests.pl 5) Click "Create new request" 6) Change the 'type'. Notice you get a 403 error. Logs say: Programming error - op 'add_form' must start with 'cud-' for POST 7) Apply patch. Restart plack. Repeat 6) 8) Notice the change type works as expected. Click "Create". 9) Notice the request is created as expected. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 12:50:45 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 11:50:45 +0000 Subject: [Koha-bugs] [Bug 35570] Add a generic master form in ILL In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35570 Pedro Amorim changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #161519|0 |1 is obsolete| | --- Comment #39 from Pedro Amorim --- Created attachment 162898 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162898&action=edit Bug 35570: Put 'FreeForm' backend into core as 'Standard' FreeForm copied as is from HEAD 369dffb159f1e70162b685b473dcf26c76f7e7e7 At https://github.com/PTFS-Europe/koha-ill-freeform/commits/reorganize_ILL/ Only edits made were 'freeform' -> 'standard' in the markup of the .inc files and some occurrences of FreeForm in Standard.pm (previous Base.pm) file. Signed-off-by: David Nind -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 12:50:49 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 11:50:49 +0000 Subject: [Koha-bugs] [Bug 35570] Add a generic master form in ILL In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35570 Pedro Amorim changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #161520|0 |1 is obsolete| | --- Comment #40 from Pedro Amorim --- Created attachment 162899 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162899&action=edit Bug 35570: Consider 'Standard' core backend Added File::Basename qw( dirname ) Sorted Koha:: dependencies alphabetically DRYed load_backend a bit and included 'Standard' backend check Signed-off-by: David Nind -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 12:50:54 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 11:50:54 +0000 Subject: [Koha-bugs] [Bug 35570] Add a generic master form in ILL In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35570 Pedro Amorim changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #161521|0 |1 is obsolete| | --- Comment #41 from Pedro Amorim --- Created attachment 162900 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162900&action=edit Bug 35570: Atomicupdate Move stuff out of 'FreeForm' into 'Standard' This atomicupdate will printout the changes it made, if any. It will also print out the report IDs of reports that may contain occurrences of 'FreeForm'. This is to give the sys admin the chance to fix those reports before users. To test, empty k-t-d: 1) Run updatedatabase, notice nothing happens 2) Install FreeForm, run: bash <(curl -s https://raw.githubusercontent.com/ammopt/koha-ill-dev/master/start-ill-dev.sh) 3) Create a new 'FreeForm' ILL batch (requires a metadata enrichment plugin like https://github.com/PTFS-Europe/koha-plugin-api-pubmed) 4) Add '123' to the pubmedid list of identifiers and finish creating the batch 5) Upon creating the batch, you will now have 1 request, 1 batch and a few illrequestattributes in the 'FreeForm' backend 6) Run the updatedatabase again, notice the print outs. 7) Create a saved sql report like: 'Select * from illrequests where backend="FreeForm";' 8) Run the updatedatabase again, notice you get a warning for the above report Signed-off-by: David Nind -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 12:51:00 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 11:51:00 +0000 Subject: [Koha-bugs] [Bug 35570] Add a generic master form in ILL In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35570 Pedro Amorim changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #161522|0 |1 is obsolete| | --- Comment #42 from Pedro Amorim --- Created attachment 162901 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162901&action=edit Bug 35570: Prevent use of ILL module if deprecated FreeForm backend is installed Test plan: 1) This patch should not be applied in order to be able to go through the previous patch's test plan 2) Install FreeForm, run: bash <(curl -s https://raw.githubusercontent.com/ammopt/koha-ill-dev/master/start-ill-dev.sh) 3) Please note that you need to be using FreeForm's reorganize_ILL branch at: https://github.com/PTFS-Europe/koha-ill-freeform/commits/reorganize_ILL/ 4) Visit ILL page: /cgi-bin/koha/ill/ill-requests.pl 5) Notice there's a configuration error preventing the use of the ILL module. 6) Click the 'about page' link and verify there is a warning about FreeForm 7) Remove FreeForm from /kohadevbox/koha/Koha/Illbackends and refresh the page 8) Repeat 4), notice the requests are listed as expected and you can now use the ILL module again. Signed-off-by: David Nind -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 12:51:04 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 11:51:04 +0000 Subject: [Koha-bugs] [Bug 35570] Add a generic master form in ILL In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35570 Pedro Amorim changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #161523|0 |1 is obsolete| | --- Comment #43 from Pedro Amorim --- Created attachment 162902 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162902&action=edit Bug 35570: (QA follow-up): Follow QA script on Standard backend Make QA script green, fix: - Variables declared in condition - Use of DateTime->now should certainly be replaced with dt_from_string (bug 24840) - missing_filter - forbidden pattern: Do not use line breaks inside template tags (bug 18675) - Attribute type should not be used for script tags (bug 20053) - File must have the exec flag - forbidden pattern: trailing space char - valid_template: /shared-includes/custom_fields.inc: not found Signed-off-by: David Nind -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 12:51:09 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 11:51:09 +0000 Subject: [Koha-bugs] [Bug 35570] Add a generic master form in ILL In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35570 Pedro Amorim changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #161524|0 |1 is obsolete| | --- Comment #44 from Pedro Amorim --- Created attachment 162903 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162903&action=edit Bug 35570: (QA follow-up): Standard backend: Show appropriate error message when type is missing Add FreeForm fix from https://github.com/PTFS-Europe/koha-ill-freeform/commit/9c9da5ff2815fb6ce0af0181341dea5ce8c3bb2e into this work. This is to keep this work up to date with latest FreeForm's fixes. See bug 35685 for context and test plan. Signed-off-by: David Nind -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 12:51:14 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 11:51:14 +0000 Subject: [Koha-bugs] [Bug 35570] Add a generic master form in ILL In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35570 Pedro Amorim changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #162894|0 |1 is obsolete| | --- Comment #45 from Pedro Amorim --- Created attachment 162904 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162904&action=edit Bug 35570: (QA follow-up): Standard backend: Bug 36243 compatibility Add FreeForm CSRF fix from https://github.com/PTFS-Europe/koha-ill-freeform/commit/c34be16ba34c840193ed5e043e6736fa0b1cb646 into this work. This is to keep this work up to date with latest FreeForm's fixes. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 12:51:19 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 11:51:19 +0000 Subject: [Koha-bugs] [Bug 35570] Add a generic master form in ILL In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35570 Pedro Amorim changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #162897|0 |1 is obsolete| | --- Comment #46 from Pedro Amorim --- Created attachment 162905 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162905&action=edit Bug 35570: (QA follow-up): Standard backend: Fix OPAC CSRF Add FreeForm CSRF fix from https://github.com/PTFS-Europe/koha-ill-freeform/commit/6a37ce0daba8aab13130dacd055c9ca5876b7df4 into this work. This is to keep this work up to date with latest FreeForm's fixes. The test plan to demonstrate the issue this patch fixes: Test plan, k-t-d: 1) Install FreeForm, enable ILL module, run: bash <(curl -s https://raw.githubusercontent.com/ammopt/koha-ill-dev/master/start-ill-dev.sh) 2) You'll have to switch the FreeForm branch to the one compatible with this work, i.e.: cd /kohadevbox/koha/Koha/Illbackends/FreeForm git checkout b_36243 3) Restart plack: koha-plack --restart kohadev 4) Go to OPAC ILL requests, login and visit: /cgi-bin/koha/opac-illrequests.pl 5) Click "Create new request" 6) Change the 'type'. Notice you get a 403 error. Logs say: Programming error - op 'add_form' must start with 'cud-' for POST 7) Apply patch. Restart plack. Repeat 6) 8) Notice the change type works as expected. Click "Create". 9) Notice the request is created as expected. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 13:10:55 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 12:10:55 +0000 Subject: [Koha-bugs] [Bug 36270] Remove special handling for <> In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36270 --- Comment #4 from Katrin Fischer --- Could we provide a code example on how to achieve the same with TT? Or is this not available at all yet? I found a bug, but couldn't dig deeper yet: Bug 30657 - Make patron attributes available via Template Toolkit in overdues -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 13:14:13 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 12:14:13 +0000 Subject: [Koha-bugs] [Bug 35906] Add bookable option on itemtypes In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35906 --- Comment #21 from Martin Renvoize --- Do you think this approach will satisfy your sponsors Thibaud? If so, I'd love to see a signoff from them for the feature set as a whole then we can get it through QA :) -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 13:17:21 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 12:17:21 +0000 Subject: [Koha-bugs] [Bug 36243] ILL "Edit request" action is broken In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36243 --- Comment #6 from Tomás Cohen Arazi --- Can we add the _form suffix to the op parameter? -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 13:22:45 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 12:22:45 +0000 Subject: [Koha-bugs] [Bug 36271] New: Bookings should respect circulation rules for max loan periods Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36271 Bug ID: 36271 Summary: Bookings should respect circulation rules for max loan periods Change sponsored?: --- Product: Koha Version: master Hardware: All OS: All Status: NEW Severity: enhancement Priority: P5 - low Component: Circulation Assignee: koha-bugs at lists.koha-community.org Reporter: martin.renvoize at ptfs-europe.com QA Contact: testopia at bugs.koha-community.org CC: gmcharlt at gmail.com, kyle.m.hall at gmail.com Currently, bookings are on/off at the item level, but the booking period is entirely open meaning an item can be booked for any period. We should refine this to allow libraries to control the maximum length an item can be booked for. During the original development, I suggested perhaps we should set the maximum to the loan length of the item times the max renewals from the circulation rules.. However, I didn't get much feedback as to whether this was appropriate or whether people wanted a distinct rule for these items or another alternative. -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 13:23:00 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 12:23:00 +0000 Subject: [Koha-bugs] [Bug 36271] Bookings should respect circulation rules for max loan periods In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36271 Martin Renvoize changed: What |Removed |Added ---------------------------------------------------------------------------- Depends on| |35248 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35248 [Bug 35248] Bookings needs unit tests -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 13:23:00 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 12:23:00 +0000 Subject: [Koha-bugs] [Bug 35248] Bookings needs unit tests In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35248 Martin Renvoize changed: What |Removed |Added ---------------------------------------------------------------------------- Blocks| |36271 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36271 [Bug 36271] Bookings should respect circulation rules for max loan periods -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 13:23:45 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 12:23:45 +0000 Subject: [Koha-bugs] [Bug 36271] Bookings should respect circulation rules for max loan periods In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36271 Martin Renvoize changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |katrin.fischer at bsz-bw.de, | |nick at bywatersolutions.com -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 13:23:51 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 12:23:51 +0000 Subject: [Koha-bugs] [Bug 36271] Bookings should respect circulation rules for max loan periods In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36271 Martin Renvoize changed: What |Removed |Added ---------------------------------------------------------------------------- Assignee|koha-bugs at lists.koha-commun |martin.renvoize at ptfs-europe |ity.org |.com -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 13:24:02 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 12:24:02 +0000 Subject: [Koha-bugs] [Bug 36271] Bookings should respect circulation rules for max loan periods In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36271 Martin Renvoize changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |david at davidnind.com -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 13:24:12 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 12:24:12 +0000 Subject: [Koha-bugs] [Bug 36271] Bookings should respect circulation rules for max loan periods In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36271 Martin Renvoize changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |caroline.cyr-la-rose at inlibr | |o.com -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 13:24:57 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 12:24:57 +0000 Subject: [Koha-bugs] [Bug 36271] Bookings should respect circulation rules for max loan periods In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36271 Martin Renvoize changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |thibaud.guillot at biblibre.co | |m -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 13:27:17 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 12:27:17 +0000 Subject: [Koha-bugs] [Bug 36133] 414 Request-URI Too Long when submitting lots of items for batch item modification from a biblio detail page In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36133 Magnus Enger changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |magnus at libriotech.no See Also| |https://bugs.koha-community | |.org/bugzilla3/show_bug.cgi | |?id=32278 -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 13:27:17 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 12:27:17 +0000 Subject: [Koha-bugs] [Bug 32278] Batch modifications from the biblio page can cause 414 URI too long when attempting to modify many items In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=32278 Magnus Enger changed: What |Removed |Added ---------------------------------------------------------------------------- See Also| |https://bugs.koha-community | |.org/bugzilla3/show_bug.cgi | |?id=36133 -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 13:28:35 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 12:28:35 +0000 Subject: [Koha-bugs] [Bug 36243] ILL "Edit request" action is broken In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36243 --- Comment #7 from Pedro Amorim --- (In reply to Tomás Cohen Arazi from comment #6) > Can we add the _form suffix to the op parameter? Yes, we can. And we should. Though it'll require a rewrite on how $op is handled in ill-requests.pl and ill-requests.tt. The focus of this bug is to fix the regression. ill-requests.pl handles an edit_action "form" and an edit_action "save" in the same $op eq 'edit_action', which means these would have to be decoupled to cud-edit_action and edit_action_form. The same would have to be made for cud-create, cud-generic_confirm, cud-delete (?) and possibly others. We'd also have to account for the fact that existing backends may have not yet adopted these new $op names (See get_op_param_deprecation in Illrequest.pm) In short, my suggestion would be to push this refactor/clean-up work to its own bug, but I'm obviously happy to discuss if you or others disagree. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 13:30:03 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 12:30:03 +0000 Subject: [Koha-bugs] [Bug 36243] ILL "Edit request" action is broken In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36243 --- Comment #8 from Tomás Cohen Arazi --- (In reply to Pedro Amorim from comment #7) > (In reply to Tomás Cohen Arazi from comment #6) > > Can we add the _form suffix to the op parameter? > > Yes, we can. And we should. Though it'll require a rewrite on how $op is > handled in ill-requests.pl and ill-requests.tt. > The focus of this bug is to fix the regression. FAIR. Put some FIXME inline so there are no oversights on this later. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 13:30:53 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 12:30:53 +0000 Subject: [Koha-bugs] [Bug 36133] 414 Request-URI Too Long when submitting lots of items for batch item modification from a biblio detail page In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36133 Magnus Enger changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution|--- |DUPLICATE --- Comment #2 from Magnus Enger --- I think this and bug 32278 are duplicates? I'll close this (bug 36133), since 32278 hints at a solution. *** This bug has been marked as a duplicate of bug 32278 *** -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 13:30:53 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 12:30:53 +0000 Subject: [Koha-bugs] [Bug 32278] Batch modifications from the biblio page can cause 414 URI too long when attempting to modify many items In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=32278 Magnus Enger changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |aleisha at catalyst.net.nz --- Comment #3 from Magnus Enger --- *** Bug 36133 has been marked as a duplicate of this bug. *** -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 13:41:37 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 12:41:37 +0000 Subject: [Koha-bugs] [Bug 36272] New: Exporting too many items from item search to barcode file gives "Request-URI Too Long" Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36272 Bug ID: 36272 Summary: Exporting too many items from item search to barcode file gives "Request-URI Too Long" Change sponsored?: --- Product: Koha Version: master Hardware: All OS: All Status: NEW Severity: normal Priority: P5 - low Component: Searching Assignee: koha-bugs at lists.koha-community.org Reporter: magnus at libriotech.no QA Contact: testopia at bugs.koha-community.org To reproduce in KTD: - Login to the staff client - Go to "Item search" - Click on "Search" without adding any limitations - Change to "Show [All] entries" - this should show about 961 items - Click on "Select visible rows" - Click on "Export selected results (961) to" and choose "Barcode file" - This should result in this error: Request-URI Too Long The requested URL's length exceeds the capacity limit for this server. The URL of the page that shows the error looks like this: http://localhost:8081/cgi-bin/koha/catalogue/item-export.pl?format=barcodes&itemnumber=513&itemnumber=514&itemnumber=515&itemnumber=574&itemnumber=124&itemnumber=125&itemnumber=126& etc etc The solution is probably to do a POST, not a GET? Similar to bug 32278, but in a different area. -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 13:41:41 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 12:41:41 +0000 Subject: [Koha-bugs] [Bug 36272] Exporting too many items from item search to barcode file gives "Request-URI Too Long" In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36272 Magnus Enger changed: What |Removed |Added ---------------------------------------------------------------------------- See Also| |https://bugs.koha-community | |.org/bugzilla3/show_bug.cgi | |?id=32278 -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 13:41:41 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 12:41:41 +0000 Subject: [Koha-bugs] [Bug 32278] Batch modifications from the biblio page can cause 414 URI too long when attempting to modify many items In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=32278 Magnus Enger changed: What |Removed |Added ---------------------------------------------------------------------------- See Also| |https://bugs.koha-community | |.org/bugzilla3/show_bug.cgi | |?id=36272 -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 13:46:28 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 12:46:28 +0000 Subject: [Koha-bugs] [Bug 36272] Exporting too many items from item search to barcode file gives "Request-URI Too Long" In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36272 --- Comment #1 from Magnus Enger --- Relevant code in koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/itemsearch.tt: $("body").on("click", "#barcodesExportLink", function(e){ e.preventDefault(); exportItems('barcodes'); }); function exportItems(format) { let item_search_selections = JSON.parse( localStorage.getItem("item_search_selections") ) || []; if (item_search_selections.length > 0) { var href = '/cgi-bin/koha/catalogue/item-export.pl?format=' + format; href += '&itemnumber=' + Array.from( item_search_selections ).join('&itemnumber='); location = href; } else { $('#format-' + format).prop('checked', true); $('#itemsearchform').submit(); $('#format-html').prop('checked', true); } } Export to CSV has the same problem. -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 13:46:44 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 12:46:44 +0000 Subject: [Koha-bugs] [Bug 36272] Exporting too many items from item search gives "Request-URI Too Long" In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36272 Magnus Enger changed: What |Removed |Added ---------------------------------------------------------------------------- Summary|Exporting too many items |Exporting too many items |from item search to barcode |from item search gives |file gives "Request-URI Too |"Request-URI Too Long" |Long" | -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 13:47:52 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 12:47:52 +0000 Subject: [Koha-bugs] [Bug 36273] New: ILL - Refactor $op in ill-requests.pl Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36273 Bug ID: 36273 Summary: ILL - Refactor $op in ill-requests.pl Change sponsored?: --- Product: Koha Version: master Hardware: All OS: All Status: NEW Severity: enhancement Priority: P5 - low Component: ILL Assignee: koha-bugs at lists.koha-community.org Reporter: pedro.amorim at ptfs-europe.com CC: pedro.amorim at ptfs-europe.com Depends on: 36241, 36243, 36245, 36249 With bug 34478, presenting a form page should be a GET request without 'cud-' in the op URL parameter. Additionally, a form that creates, updates or deletes some object should be a POST with the 'cud-' prefix. ill-requests.pl did not do this distinction originally, and still doesn't. It instead works around 'cud-' in the $op to preserve existing functionality. It should be refactored to better distinguish between a GET $op and a POST $op. Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36241 [Bug 36241] ILL Batches are broken https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36243 [Bug 36243] ILL "Edit request" action is broken https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36245 [Bug 36245] ILL - Custom backend form action is broken https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36249 [Bug 36249] ILL - "Request from partners" action is broken -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 13:47:52 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 12:47:52 +0000 Subject: [Koha-bugs] [Bug 36241] ILL Batches are broken In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36241 Pedro Amorim changed: What |Removed |Added ---------------------------------------------------------------------------- Blocks| |36273 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36273 [Bug 36273] ILL - Refactor $op in ill-requests.pl -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 13:47:52 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 12:47:52 +0000 Subject: [Koha-bugs] [Bug 36243] ILL "Edit request" action is broken In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36243 Pedro Amorim changed: What |Removed |Added ---------------------------------------------------------------------------- Blocks| |36273 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36273 [Bug 36273] ILL - Refactor $op in ill-requests.pl -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 13:47:52 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 12:47:52 +0000 Subject: [Koha-bugs] [Bug 36245] ILL - Custom backend form action is broken In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36245 Pedro Amorim changed: What |Removed |Added ---------------------------------------------------------------------------- Blocks| |36273 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36273 [Bug 36273] ILL - Refactor $op in ill-requests.pl -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 13:47:52 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 12:47:52 +0000 Subject: [Koha-bugs] [Bug 36249] ILL - "Request from partners" action is broken In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36249 Pedro Amorim changed: What |Removed |Added ---------------------------------------------------------------------------- Blocks| |36273 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36273 [Bug 36273] ILL - Refactor $op in ill-requests.pl -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 13:47:52 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 12:47:52 +0000 Subject: [Koha-bugs] [Bug 34478] Full CSRF protection In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=34478 Pedro Amorim changed: What |Removed |Added ---------------------------------------------------------------------------- See Also| |https://bugs.koha-community | |.org/bugzilla3/show_bug.cgi | |?id=36273 -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 13:48:43 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 12:48:43 +0000 Subject: [Koha-bugs] [Bug 36243] ILL "Edit request" action is broken In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36243 --- Comment #9 from Pedro Amorim --- I've added bug 36273. Please take a look to see if what I wrote there makes sense. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 13:54:30 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 12:54:30 +0000 Subject: [Koha-bugs] [Bug 35532] Use of calendar for date range in bookings is not clear In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35532 --- Comment #14 from Katrin Fischer --- Even I couldn't miss it now, thanks :) -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 14:12:58 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 13:12:58 +0000 Subject: [Koha-bugs] [Bug 36012] ERM/Agreements_spec.ts is failing if run too slow (?) In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36012 --- Comment #9 from Katrin Fischer --- It looks like this just happened in our last run on Jenkins, it would be great to have a fix: https://jenkins.koha-community.org/job/Koha_Master/lastCompletedBuild/testReport/(root)/Should%20correctly%20display%20labels/Infinite_scroll_Should_correctly_display_labels/ -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 14:14:12 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 13:14:12 +0000 Subject: [Koha-bugs] [Bug 36012] ERM/Agreements_spec.ts is failing if run too slow (?) In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36012 Katrin Fischer changed: What |Removed |Added ---------------------------------------------------------------------------- Keywords| |RM_priority -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 14:17:40 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 13:17:40 +0000 Subject: [Koha-bugs] [Bug 36088] Remove useless code form opac-account-pay.pl In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36088 Katrin Fischer changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #162288|0 |1 is obsolete| | -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 14:25:17 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 13:25:17 +0000 Subject: [Koha-bugs] [Bug 36274] New: OPAC suggestions form doesn't display Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36274 Bug ID: 36274 Summary: OPAC suggestions form doesn't display Change sponsored?: --- Product: Koha Version: master Hardware: All OS: All Status: NEW Severity: major Priority: P5 - low Component: OPAC Assignee: oleonard at myacpl.org Reporter: katrin.fischer at bsz-bw.de QA Contact: testopia at bugs.koha-community.org When in the OPAC and I click on "New suggestion", only an empty page comes up. The form is missing. I didn't see anything in the logs. Not sure if this is related to CSRF or not? -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 14:27:24 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 13:27:24 +0000 Subject: [Koha-bugs] [Bug 36044] Show ISBN number of purchase suggestions on the OPAC In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36044 Katrin Fischer changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Passed QA |BLOCKED --- Comment #5 from Katrin Fischer --- I am pretty sure that works, but wanted to test and in the OPAC I can't get the suggestion form to display. Added bug 36274. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 14:27:39 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 13:27:39 +0000 Subject: [Koha-bugs] [Bug 36044] Show ISBN number of purchase suggestions on the OPAC In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36044 Katrin Fischer changed: What |Removed |Added ---------------------------------------------------------------------------- Depends on| |36274 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36274 [Bug 36274] OPAC suggestions form doesn't display -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 14:27:39 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 13:27:39 +0000 Subject: [Koha-bugs] [Bug 36274] OPAC suggestions form doesn't display In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36274 Katrin Fischer changed: What |Removed |Added ---------------------------------------------------------------------------- Blocks| |36044 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36044 [Bug 36044] Show ISBN number of purchase suggestions on the OPAC -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 14:27:57 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 13:27:57 +0000 Subject: [Koha-bugs] [Bug 34360] [WARN] DBIx::Class::ResultSetColumn::new(): Attempting to retrieve non-unique column 'biblionumber' on a resultset containing one-to-many joins will return duplicate results In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=34360 Emmi Takkinen changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |emmi.takkinen at koha-suomi.fi -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 14:29:19 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 13:29:19 +0000 Subject: [Koha-bugs] [Bug 14962] Temp Shelving Location In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=14962 Alexander Wagner changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |alexander.wagner at desy.de --- Comment #14 from Alexander Wagner --- First I'd second (Katrins comment)(https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=14962#c4) that collections are something different than locations. They may coincide, but they don't have to. Being pointed to this bug, I wonder if there is indeed yet another column required. The current mappings in `UpdateItemLocationOnCheckin` for some reason change both: `items.location` _and_ `items.permanent_location`. Just for `CART` and `PROC` they work on `items.location` only. I wonder why they don't work on `items.location` only all the time, especially as I have `_PERM_` referring to `items.permanent_location`. It could just clear `items.location` so the item is back at the permanent location. It might be, that there is only a way lacking to actually _set_ `items.location` and only `items.location` to the value required. Say, if I could set `items.location` to `DSP` (or whatever LOC value) one is already there, adding a rule that clears `DSP` upon item check in. Or alternatively, if items on display should stay on display even after a check in I'd leave this rule and at some point explicitly clear `item.location`. Both could also be done by some cron-job. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 14:39:56 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 13:39:56 +0000 Subject: [Koha-bugs] [Bug 35398] EDI: Fix support for LRP (Library Rotation Plan) for Koha with Stock Rotation enabled In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35398 --- Comment #16 from Katrin Fischer --- Fixed the file permission error and tidied the new file EDI.t (amended commits). Decided to ignore the one line on t/Edifact.t for now. WARN t/Edifact.t WARN tidiness The file is less tidy than before (bad/messy lines before: 15, now: 16) FAIL t/db_dependent/Koha/EDI.t FAIL file permissions File must have the exec flag WARN tidiness The file is less tidy than before (bad/messy lines before: 0, now: 7) -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 14:44:08 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 13:44:08 +0000 Subject: [Koha-bugs] [Bug 36009] Document koha-worker --queue elastic_index In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36009 --- Comment #6 from Katrin Fischer --- I LOVE documentation patches :) -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 14:53:40 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 13:53:40 +0000 Subject: [Koha-bugs] [Bug 35248] Bookings needs unit tests In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35248 --- Comment #66 from Katrin Fischer --- Some trouble with applying the dependencies here - will revisit later. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 15:03:48 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 14:03:48 +0000 Subject: [Koha-bugs] [Bug 35351] Adjust basket details template to avoid showing empty page-section In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35351 Katrin Fischer changed: What |Removed |Added ---------------------------------------------------------------------------- Version(s)| |24.05.00 released in| | Status|Passed QA |Pushed to master -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 15:03:50 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 14:03:50 +0000 Subject: [Koha-bugs] [Bug 35351] Adjust basket details template to avoid showing empty page-section In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35351 --- Comment #5 from Katrin Fischer --- Pushed for 24.05! Well done everyone, thank you! -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 15:03:51 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 14:03:51 +0000 Subject: [Koha-bugs] [Bug 35397] SIP2AddOpacMessagesToScreenMessage syspref description issue In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35397 Katrin Fischer changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Passed QA |Pushed to master Version(s)| |24.05.00 released in| | -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 15:03:53 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 14:03:53 +0000 Subject: [Koha-bugs] [Bug 35397] SIP2AddOpacMessagesToScreenMessage syspref description issue In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35397 --- Comment #5 from Katrin Fischer --- Pushed for 24.05! Well done everyone, thank you! -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 15:03:54 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 14:03:54 +0000 Subject: [Koha-bugs] [Bug 35398] EDI: Fix support for LRP (Library Rotation Plan) for Koha with Stock Rotation enabled In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35398 Katrin Fischer changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Passed QA |Pushed to master Version(s)| |24.05.00 released in| | -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 15:03:55 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 14:03:55 +0000 Subject: [Koha-bugs] [Bug 35398] EDI: Fix support for LRP (Library Rotation Plan) for Koha with Stock Rotation enabled In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35398 --- Comment #17 from Katrin Fischer --- Pushed for 24.05! Well done everyone, thank you! -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 15:03:57 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 14:03:57 +0000 Subject: [Koha-bugs] [Bug 35422] Unexpected translation string for Suggestions template In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35422 Katrin Fischer changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Passed QA |Pushed to master Version(s)| |24.05.00 released in| | -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 15:03:59 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 14:03:59 +0000 Subject: [Koha-bugs] [Bug 35422] Unexpected translation string for Suggestions template In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35422 --- Comment #4 from Katrin Fischer --- Pushed for 24.05! Well done everyone, thank you! -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 15:04:00 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 14:04:00 +0000 Subject: [Koha-bugs] [Bug 35426] Improve layout of bookings modal form In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35426 Katrin Fischer changed: What |Removed |Added ---------------------------------------------------------------------------- Version(s)| |24.05.00 released in| | Status|Passed QA |Pushed to master -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 15:04:02 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 14:04:02 +0000 Subject: [Koha-bugs] [Bug 35426] Improve layout of bookings modal form In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35426 --- Comment #4 from Katrin Fischer --- Pushed for 24.05! Well done everyone, thank you! -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 15:04:03 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 14:04:03 +0000 Subject: [Koha-bugs] [Bug 35532] Use of calendar for date range in bookings is not clear In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35532 Katrin Fischer changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Passed QA |Pushed to master Version(s)| |24.05.00 released in| | -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 15:04:05 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 14:04:05 +0000 Subject: [Koha-bugs] [Bug 35532] Use of calendar for date range in bookings is not clear In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35532 --- Comment #15 from Katrin Fischer --- Pushed for 24.05! Well done everyone, thank you! -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 15:04:06 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 14:04:06 +0000 Subject: [Koha-bugs] [Bug 35554] Authority search popup is only 700px In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35554 Katrin Fischer changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Passed QA |Pushed to master Version(s)| |24.05.00 released in| | -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 15:04:08 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 14:04:08 +0000 Subject: [Koha-bugs] [Bug 35554] Authority search popup is only 700px In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35554 --- Comment #14 from Katrin Fischer --- Pushed for 24.05! Well done everyone, thank you! -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 15:04:10 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 14:04:10 +0000 Subject: [Koha-bugs] [Bug 35952] Removed unnecessary line in opac-blocked.pl In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35952 Katrin Fischer changed: What |Removed |Added ---------------------------------------------------------------------------- Version(s)| |24.05.00 released in| | Status|Passed QA |Pushed to master -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 15:04:11 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 14:04:11 +0000 Subject: [Koha-bugs] [Bug 35952] Removed unnecessary line in opac-blocked.pl In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35952 --- Comment #4 from Katrin Fischer --- Pushed for 24.05! Well done everyone, thank you! -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 15:04:13 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 14:04:13 +0000 Subject: [Koha-bugs] [Bug 35963] Problem using some filters in the bundled items table In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35963 Katrin Fischer changed: What |Removed |Added ---------------------------------------------------------------------------- Version(s)| |24.05.00 released in| | Status|Passed QA |Pushed to master -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 15:04:14 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 14:04:14 +0000 Subject: [Koha-bugs] [Bug 35963] Problem using some filters in the bundled items table In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35963 --- Comment #10 from Katrin Fischer --- Pushed for 24.05! Well done everyone, thank you! -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 15:04:16 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 14:04:16 +0000 Subject: [Koha-bugs] [Bug 36000] Fix CGI::param called in list context from catalogue/search.pl In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36000 Katrin Fischer changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Passed QA |Pushed to master Version(s)| |24.05.00 released in| | -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 15:04:17 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 14:04:17 +0000 Subject: [Koha-bugs] [Bug 36000] Fix CGI::param called in list context from catalogue/search.pl In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36000 --- Comment #3 from Katrin Fischer --- Pushed for 24.05! Well done everyone, thank you! -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 15:04:19 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 14:04:19 +0000 Subject: [Koha-bugs] [Bug 36009] Document koha-worker --queue elastic_index In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36009 Katrin Fischer changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Passed QA |Pushed to master Version(s)| |24.05.00 released in| | -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 15:04:20 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 14:04:20 +0000 Subject: [Koha-bugs] [Bug 36009] Document koha-worker --queue elastic_index In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36009 --- Comment #7 from Katrin Fischer --- Pushed for 24.05! Well done everyone, thank you! -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 15:04:22 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 14:04:22 +0000 Subject: [Koha-bugs] [Bug 36076] paycollect.tt is missing permission checks for manual credit and invoice In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36076 Katrin Fischer changed: What |Removed |Added ---------------------------------------------------------------------------- Version(s)| |24.05.00 released in| | Status|Passed QA |Pushed to master -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 15:04:23 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 14:04:23 +0000 Subject: [Koha-bugs] [Bug 36076] paycollect.tt is missing permission checks for manual credit and invoice In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36076 --- Comment #7 from Katrin Fischer --- Pushed for 24.05! Well done everyone, thank you! -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 15:04:25 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 14:04:25 +0000 Subject: [Koha-bugs] [Bug 36088] Remove useless code form opac-account-pay.pl In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36088 Katrin Fischer changed: What |Removed |Added ---------------------------------------------------------------------------- Version(s)| |24.05.00 released in| | Status|Passed QA |Pushed to master -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 15:04:26 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 14:04:26 +0000 Subject: [Koha-bugs] [Bug 36088] Remove useless code form opac-account-pay.pl In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36088 --- Comment #6 from Katrin Fischer --- Pushed for 24.05! Well done everyone, thank you! -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 15:04:28 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 14:04:28 +0000 Subject: [Koha-bugs] [Bug 36091] Spelling: Use "card number" instead of cardnumber in text In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36091 Katrin Fischer changed: What |Removed |Added ---------------------------------------------------------------------------- Version(s)| |24.05.00 released in| | Status|Passed QA |Pushed to master -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 15:04:29 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 14:04:29 +0000 Subject: [Koha-bugs] [Bug 36091] Spelling: Use "card number" instead of cardnumber in text In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36091 --- Comment #5 from Katrin Fischer --- Pushed for 24.05! Well done everyone, thank you! -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 15:04:31 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 14:04:31 +0000 Subject: [Koha-bugs] [Bug 36099] JS error in console on non-existent biblio record In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36099 Katrin Fischer changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Passed QA |Pushed to master Version(s)| |24.05.00 released in| | -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 15:04:32 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 14:04:32 +0000 Subject: [Koha-bugs] [Bug 36099] JS error in console on non-existent biblio record In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36099 --- Comment #4 from Katrin Fischer --- Pushed for 24.05! Well done everyone, thank you! -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 15:04:34 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 14:04:34 +0000 Subject: [Koha-bugs] [Bug 36140] Wrong for attribute on Invoice number: label in invoice.tt In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36140 Katrin Fischer changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Passed QA |Pushed to master Version(s)| |24.05.00 released in| | -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 15:04:36 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 14:04:36 +0000 Subject: [Koha-bugs] [Bug 36140] Wrong for attribute on Invoice number: label in invoice.tt In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36140 --- Comment #6 from Katrin Fischer --- Pushed for 24.05! Well done everyone, thank you! -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 15:04:37 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 14:04:37 +0000 Subject: [Koha-bugs] [Bug 36150] Circulation home page styling does not match Cataloging home page styling In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36150 Katrin Fischer changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Passed QA |Pushed to master Version(s)| |24.05.00 released in| | -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 15:04:39 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 14:04:39 +0000 Subject: [Koha-bugs] [Bug 36150] Circulation home page styling does not match Cataloging home page styling In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36150 --- Comment #7 from Katrin Fischer --- Pushed for 24.05! Well done everyone, thank you! -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 15:04:40 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 14:04:40 +0000 Subject: [Koha-bugs] [Bug 36156] Duplicate selected value when a field or subfield is cloned In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36156 Katrin Fischer changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Passed QA |Pushed to master Version(s)| |24.05.00 released in| | -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 15:04:42 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 14:04:42 +0000 Subject: [Koha-bugs] [Bug 36156] Duplicate selected value when a field or subfield is cloned In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36156 --- Comment #5 from Katrin Fischer --- Pushed for 24.05! Well done everyone, thank you! -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 15:04:44 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 14:04:44 +0000 Subject: [Koha-bugs] [Bug 36157] Links in the "Run with template" dropdown at guided_reports.pl have odd formatting In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36157 Katrin Fischer changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Passed QA |Pushed to master Version(s)| |24.05.00 released in| | -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 15:04:45 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 14:04:45 +0000 Subject: [Koha-bugs] [Bug 36157] Links in the "Run with template" dropdown at guided_reports.pl have odd formatting In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36157 --- Comment #6 from Katrin Fischer --- Pushed for 24.05! Well done everyone, thank you! -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 15:04:47 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 14:04:47 +0000 Subject: [Koha-bugs] [Bug 36158] Text on the "Show SQL code" button at guided_reports.pl breaks if report notice templates exist In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36158 Katrin Fischer changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Passed QA |Pushed to master Version(s)| |24.05.00 released in| | -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 15:04:49 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 14:04:49 +0000 Subject: [Koha-bugs] [Bug 36158] Text on the "Show SQL code" button at guided_reports.pl breaks if report notice templates exist In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36158 --- Comment #5 from Katrin Fischer --- Pushed for 24.05! Well done everyone, thank you! -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 15:07:21 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 14:07:21 +0000 Subject: [Koha-bugs] [Bug 33703] Entering dates should be more flexible accepting different entry formats In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33703 --- Comment #53 from Kristi --- Also reviewed Patron record date of birth and Patron record expiry date when duplicating a patron and formatting was as expected in all 4 date formats. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 15:25:54 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 14:25:54 +0000 Subject: [Koha-bugs] [Bug 36275] New: The displayed values for Client ID and Secret need copy to clipboard buttons in apikeys.tt. Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36275 Bug ID: 36275 Summary: The displayed values for Client ID and Secret need copy to clipboard buttons in apikeys.tt. Change sponsored?: --- Product: Koha Version: master Hardware: All OS: All Status: NEW Severity: enhancement Priority: P5 - low Component: Staff interface Assignee: koha-bugs at lists.koha-community.org Reporter: paul.derscheid at lmscloud.de QA Contact: testopia at bugs.koha-community.org CC: gmcharlt at gmail.com It would be a quality of life improvement and make the copying less error prone as well. I can't count the number of times I inserted a leading space into a field for an endpoint test w/o noticing. -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 15:40:08 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 14:40:08 +0000 Subject: [Koha-bugs] [Bug 35862] Display patron search result on the right of the form (modal) In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35862 --- Comment #6 from Lucas Gass --- (In reply to Jonathan Druart from comment #5) > Do we want the 100% width for inputs/select on small screens? > https://snipboard.io/iwo0lI.jpg It's a good question. I personally think so. But I am happy to change it if we don't think that will be well received. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 15:44:36 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 14:44:36 +0000 Subject: [Koha-bugs] [Bug 27340] We should introduce Koha::PickupLocation(s) In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=27340 Tomás Cohen Arazi changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |tomascohen at gmail.com --- Comment #5 from Tomás Cohen Arazi --- (In reply to Katrin Fischer from comment #4) > (In reply to Donna from comment #3) > > Some of our partners would love to see desks as part of the pickup location. > > For instance, in a library there may be a main circ desk, a children's desk > > on another floor, and a drive up window. Or, self-serve holds shelves and a > > drive up window. If a patron wants to pick up their items at the drive up > > window, it would be great to have that as a "desk" instead of relying on the > > patron and staff adding/reading holds notes. > > Hi Donna, as this is more a bug about architecture, you might want to file > separate bugs for how the desks should present in the GUI better. I think at > the moment the desk will only be assigned when a hold is triggered (for the > desk you are checking things in). I was thinking it would be nice if the > user could pick the desk on the hold request form - but should we move this > to a new bug? I think this is the right place to discuss if this addition would be useful. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 15:49:32 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 14:49:32 +0000 Subject: [Koha-bugs] [Bug 27340] We should introduce Koha::PickupLocation(s) In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=27340 --- Comment #6 from Katrin Fischer --- Hm, not sure if there is misunderstanding or not. You can already make the desk part of the hold request, but it only happens automatically when checking it in for pick-up. I think what Donna and I would like is be able to assign the desk in other worksflow steps: when placing the hold in the OPAC, when placing the hold in the staff interface, when editing the hold in the staff interface... so also at the beginning not the end. I understood this was mostly about creating a new module and assumed we should discuss workflow separately. I think the need for the module might already be there without additions to the existing feature. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 15:58:09 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 14:58:09 +0000 Subject: [Koha-bugs] [Bug 27340] We should introduce Koha::PickupLocation(s) In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=27340 --- Comment #7 from Tomás Cohen Arazi --- (In reply to Katrin Fischer from comment #6) > Hm, not sure if there is misunderstanding or not. > > You can already make the desk part of the hold request, but it only happens > automatically when checking it in for pick-up. I think what Donna and I > would like is be able to assign the desk in other worksflow steps: when > placing the hold in the OPAC, when placing the hold in the staff interface, > when editing the hold in the staff interface... so also at the beginning not > the end. > > I understood this was mostly about creating a new module and assumed we > should discuss workflow separately. I think the need for the module might > already be there without additions to the existing feature. I found the need for a specific class for representing pickup locations when making holds pickup locations dropdown API-driven. I didn't go as far as I would loved because of the little feedback I got at that time. I'm happy to discuss possible use cases now there's interest :-D I believe libraries should be able to define whatever they want to call their pickup locations, for example. So as a starting point, I'd say a pickup location should contain the following columns: pickup_location_id (PK) library_id desk_id description public_description That way, defined pickup locations will be displayed to end users. The 'branches.pickup_location' flag could be migrated to entries in this table. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 16:00:49 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 15:00:49 +0000 Subject: [Koha-bugs] [Bug 35913] Item order prices do not fall back to MarcFieldsToOrder if not set by MarcItemFieldsToOrder In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35913 Katrin Fischer changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #161717|0 |1 is obsolete| | -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 16:08:11 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 15:08:11 +0000 Subject: [Koha-bugs] [Bug 36251] Patron search by letter broken in holds In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36251 Caroline Cyr La Rose changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Needs Signoff |Signed Off -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 16:08:13 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 15:08:13 +0000 Subject: [Koha-bugs] [Bug 36251] Patron search by letter broken in holds In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36251 Caroline Cyr La Rose changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #162861|0 |1 is obsolete| | --- Comment #3 from Caroline Cyr La Rose --- Created attachment 162906 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162906&action=edit Bug 36251: (bug 35329 follow-up) Fix patron search by first letter when placing a hold Most of the patrons searches open in a modal. Except: * the main one (members-home) * when placing a hold * when requesting an article (did I miss one?) The patron-search.inc BLOCKs need a parent block to know where to locate the elements (form, table, etc), because we can have several patron searches on the same page. Bug 35329 reused '#searchresults': 10 [% SET search_results_block_id = 'searchresults' %] which is used on the main patron search. The ones in the modal are correctly handled: we build the parent node in the "patron_search_modal" block. But for the 2 others the parent block id is wrong. On reserve/request.tt we have one already, so we set the TT variable from the .tt file On circ/request-article we don't have one already, so we can reuse searchresults (could be more specific however to include 'patrons'...) Test plan: Browse patrons by first letter when placing a hold and requesting an article Signed-off-by: Caroline Cyr La Rose -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 16:11:27 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 15:11:27 +0000 Subject: [Koha-bugs] [Bug 36251] Patron search by letter broken in holds In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36251 --- Comment #4 from Caroline Cyr La Rose --- Thanks Jonathan! Testing note: to test article requests, must enable ArticleRequests syspref. 1. Enable ArticleRequests system preference 2. In the staff interface, search for a record 3. Click Place hold 4. Click on a letter under the patron search bar (I used H) --> Should limit to patrons whose last name start with the letter 5. Go back to the record 6. Click Request Article 7. Click on a letter under the patron search bar (I used H) --> Should limit to patrons whose last name start with the letter -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 16:12:42 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 15:12:42 +0000 Subject: [Koha-bugs] [Bug 36276] New: Cannot edit Identity Provider after creation Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36276 Bug ID: 36276 Summary: Cannot edit Identity Provider after creation Change sponsored?: --- Product: Koha Version: master Hardware: All OS: All Status: NEW Severity: trivial Priority: P5 - low Component: System Administration Assignee: koha-bugs at lists.koha-community.org Reporter: olivier.hubert at inlibro.com QA Contact: testopia at bugs.koha-community.org CC: gmcharlt at gmail.com Once an identity provider is created, it is no longer possible to easily edit it, as the form for editing the identity provider contains no value. Moreover, the provider's name is replace with " (quotation mark). Steps to reproduce: 1. Launch KTD or Koha instance using up-to-date master branch. 2. In the Administration menu, go to the Identity Providers page. 3. Click on the button to create a new identity provider. 4. Fill in the required fields, using test data. 5. Save the identity provider. 6. Click the "Edit" button for the newly created identity provider. 7. Notice that the form's fields are empty and the provider's name has been changed to ". -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 16:13:43 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 15:13:43 +0000 Subject: [Koha-bugs] [Bug 36276] Cannot edit Identity Provider after creation In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36276 Olivier Hubert changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |olivier.hubert at inlibro.com -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 16:15:40 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 15:15:40 +0000 Subject: [Koha-bugs] [Bug 33268] Overlay rules don't work correctly when source is set to * In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33268 --- Comment #55 from David Gustafsson --- Yes, exactly. You could try this script (run with koha-shell -c "perl ": use Koha::MarcOverlayRules; use Data::Dumper; my $rules = Koha::MarcOverlayRules->context_rules({ source => 'batchmod' }); print Dumper($rules); And review the resulting rule-set. Could be useful for debugging. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 16:16:05 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 15:16:05 +0000 Subject: [Koha-bugs] [Bug 32413] JSON reports shows inaccurate results with repeated parameters In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=32413 Fridolin Somers changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |fridolin.somers at biblibre.co | |m --- Comment #2 from Fridolin Somers --- Same issue with command-line runreport.pl, it dies because of repeating parameter -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 16:17:29 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 15:17:29 +0000 Subject: [Koha-bugs] [Bug 36100] Regression in bookings edit In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36100 Katrin Fischer changed: What |Removed |Added ---------------------------------------------------------------------------- Keywords| |additional_work_needed --- Comment #16 from Katrin Fischer --- Will push this patch, but something to investigate more later: Editing the linked patron and the booking dates works with this patch, but changing the item assigned from the barcode to 'any item' does still result in failure. ==> /var/log/koha/kohadev/plack-api-error.log <== [2024/03/07 15:16:41] [ERROR] PUT /api/v1/bookings/10: unhandled exception (Mojo::Exception)<> -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 16:26:00 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 15:26:00 +0000 Subject: [Koha-bugs] [Bug 36271] Bookings should respect circulation rules for max loan periods In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36271 --- Comment #1 from Caroline Cyr La Rose --- Hi Martin, When I was testing bookings, I was thinking of a separate parameter for the booking period. However, using the loan length makes sense. I'm not sure about the renewals. Usually, people can renew IF no one else needs the item (i.e. no holds). But booking for the entire renewal period would remove the option of someone placing a hold on it and getting it after a single loan period, no? I feel like whatever we choose (loan length or separate rule), someone will want the other option lol! Maybe we could do a separate parameter whose default option is the items loan length? I'd be curious to know what people using it IRL think. I seem to remember Bywater had libraries who were anxiously awaiting this feature, maybe they would have a more informed opinion than mine. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 16:30:30 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 15:30:30 +0000 Subject: [Koha-bugs] [Bug 36274] OPAC suggestions form doesn't display In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36274 Lucas Gass changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |Needs Signoff -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 16:30:31 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 15:30:31 +0000 Subject: [Koha-bugs] [Bug 36274] OPAC suggestions form doesn't display In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36274 --- Comment #1 from Lucas Gass --- Created attachment 162907 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162907&action=edit Bug 36274: Use right op on opac-suggestions.tt To test: 1. click on "New suggestion", only an empty page comes up. The form is missing. 2. Apply patch and try again. 3. Play with suggestions making sure everything looks as excepted. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 16:30:45 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 15:30:45 +0000 Subject: [Koha-bugs] [Bug 36274] OPAC suggestions form doesn't display In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36274 Lucas Gass changed: What |Removed |Added ---------------------------------------------------------------------------- Assignee|oleonard at myacpl.org |lucas at bywatersolutions.com Patch complexity|--- |Trivial patch CC| |lucas at bywatersolutions.com -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 16:31:11 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 15:31:11 +0000 Subject: [Koha-bugs] [Bug 36274] OPAC suggestions form doesn't display In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36274 --- Comment #2 from Lucas Gass --- (In reply to Katrin Fischer from comment #0) > When in the OPAC and I click on "New suggestion", only an empty page comes > up. The form is missing. > I didn't see anything in the logs. > Not sure if this is related to CSRF or not? Yes, related to CSRF but a trivial fix. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 16:33:58 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 15:33:58 +0000 Subject: [Koha-bugs] [Bug 36270] Remove special handling for <> In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36270 Lucas Gass changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |lucas at bywatersolutions.com -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 16:35:00 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 15:35:00 +0000 Subject: [Koha-bugs] [Bug 36270] Remove special handling for <> In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36270 --- Comment #5 from Lucas Gass --- I can say that I've seen this used fairly often out in the wild. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 16:36:28 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 15:36:28 +0000 Subject: [Koha-bugs] [Bug 36221] Improve styling of Standard backend create OPAC form In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36221 Pedro Amorim changed: What |Removed |Added ---------------------------------------------------------------------------- Summary|Improve styling of Standard |Improve styling of Standard |backend create form |backend create OPAC form -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 16:37:40 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 15:37:40 +0000 Subject: [Koha-bugs] [Bug 31427] Automatic renewal errors should come before many other renewal errors In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31427 Katrin Fischer changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Passed QA |Pushed to master Version(s)| |24.05.00 released in| | -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 16:37:42 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 15:37:42 +0000 Subject: [Koha-bugs] [Bug 31427] Automatic renewal errors should come before many other renewal errors In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31427 --- Comment #39 from Katrin Fischer --- Pushed for 24.05! Well done everyone, thank you! -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 16:37:45 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 15:37:45 +0000 Subject: [Koha-bugs] [Bug 34234] Item groups dropdown in detail page modal does not respect display order In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=34234 Katrin Fischer changed: What |Removed |Added ---------------------------------------------------------------------------- Version(s)| |24.05.00 released in| | Status|Passed QA |Pushed to master -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 16:37:46 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 15:37:46 +0000 Subject: [Koha-bugs] [Bug 34234] Item groups dropdown in detail page modal does not respect display order In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=34234 --- Comment #19 from Katrin Fischer --- Pushed for 24.05! Well done everyone, thank you! -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 16:37:48 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 15:37:48 +0000 Subject: [Koha-bugs] [Bug 35819] "No job found" error for BatchUpdateBiblioHoldsQueue (race condition) In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35819 Katrin Fischer changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Passed QA |Pushed to master Version(s)| |24.05.00 released in| | -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 16:37:50 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 15:37:50 +0000 Subject: [Koha-bugs] [Bug 35819] "No job found" error for BatchUpdateBiblioHoldsQueue (race condition) In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35819 --- Comment #50 from Katrin Fischer --- Pushed for 24.05! Well done everyone, thank you! -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 16:37:52 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 15:37:52 +0000 Subject: [Koha-bugs] [Bug 35892] Fallback to GetMarcPrice in addorderiso2907 no longer works In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35892 Katrin Fischer changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Passed QA |Pushed to master Version(s)| |24.05.00 released in| | -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 16:37:53 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 15:37:53 +0000 Subject: [Koha-bugs] [Bug 35892] Fallback to GetMarcPrice in addorderiso2907 no longer works In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35892 --- Comment #7 from Katrin Fischer --- Pushed for 24.05! Well done everyone, thank you! -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 16:37:55 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 15:37:55 +0000 Subject: [Koha-bugs] [Bug 35913] Item order prices do not fall back to MarcFieldsToOrder if not set by MarcItemFieldsToOrder In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35913 Katrin Fischer changed: What |Removed |Added ---------------------------------------------------------------------------- Version(s)| |24.05.00 released in| | Status|Passed QA |Pushed to master -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 16:37:56 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 15:37:56 +0000 Subject: [Koha-bugs] [Bug 35913] Item order prices do not fall back to MarcFieldsToOrder if not set by MarcItemFieldsToOrder In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35913 --- Comment #6 from Katrin Fischer --- Pushed for 24.05! Well done everyone, thank you! -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 16:37:58 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 15:37:58 +0000 Subject: [Koha-bugs] [Bug 36010] Items/AutomaticItemModificationByAge.t is failing In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36010 Katrin Fischer changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Passed QA |Pushed to master Version(s)| |24.05.00 released in| | -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 16:37:59 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 15:37:59 +0000 Subject: [Koha-bugs] [Bug 36010] Items/AutomaticItemModificationByAge.t is failing In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36010 --- Comment #16 from Katrin Fischer --- Pushed for 24.05! Well done everyone, thank you! -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 16:38:01 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 15:38:01 +0000 Subject: [Koha-bugs] [Bug 36047] Apostrophe in suggestion status reason blocks order receipt In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36047 Katrin Fischer changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Passed QA |Pushed to master Version(s)| |24.05.00 released in| | -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 16:38:03 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 15:38:03 +0000 Subject: [Koha-bugs] [Bug 36047] Apostrophe in suggestion status reason blocks order receipt In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36047 --- Comment #11 from Katrin Fischer --- Pushed for 24.05! Well done everyone, thank you! -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 16:38:04 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 15:38:04 +0000 Subject: [Koha-bugs] [Bug 36100] Regression in bookings edit In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36100 Katrin Fischer changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Passed QA |Pushed to master Version(s)| |24.05.00 released in| | -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 16:38:06 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 15:38:06 +0000 Subject: [Koha-bugs] [Bug 36100] Regression in bookings edit In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36100 --- Comment #17 from Katrin Fischer --- Pushed for 24.05! Well done everyone, thank you! -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 16:38:08 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 15:38:08 +0000 Subject: [Koha-bugs] [Bug 36170] Wrong warning in memberentry In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36170 Katrin Fischer changed: What |Removed |Added ---------------------------------------------------------------------------- Version(s)| |24.05.00 released in| | Status|Passed QA |Pushed to master -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 16:38:09 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 15:38:09 +0000 Subject: [Koha-bugs] [Bug 36170] Wrong warning in memberentry In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36170 --- Comment #2 from Katrin Fischer --- Pushed for 24.05! Well done everyone, thank you! -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 16:38:11 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 15:38:11 +0000 Subject: [Koha-bugs] [Bug 36175] Checking out items that are booked doesn't quite work In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36175 Katrin Fischer changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Passed QA |Pushed to master Version(s)| |24.05.00 released in| | -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 16:38:12 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 15:38:12 +0000 Subject: [Koha-bugs] [Bug 36175] Checking out items that are booked doesn't quite work In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36175 --- Comment #4 from Katrin Fischer --- Pushed for 24.05! Well done everyone, thank you! -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 16:38:14 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 15:38:14 +0000 Subject: [Koha-bugs] [Bug 36234] Language prefs cannot be modified In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36234 Katrin Fischer changed: What |Removed |Added ---------------------------------------------------------------------------- Version(s)| |24.05.00 released in| | Status|Passed QA |Pushed to master -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 16:38:15 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 15:38:15 +0000 Subject: [Koha-bugs] [Bug 36234] Language prefs cannot be modified In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36234 --- Comment #4 from Katrin Fischer --- Pushed for 24.05! Well done everyone, thank you! -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 16:38:17 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 15:38:17 +0000 Subject: [Koha-bugs] [Bug 36241] ILL Batches are broken In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36241 Katrin Fischer changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Passed QA |Pushed to master Version(s)| |24.05.00 released in| | -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 16:38:18 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 15:38:18 +0000 Subject: [Koha-bugs] [Bug 36241] ILL Batches are broken In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36241 --- Comment #6 from Katrin Fischer --- Pushed for 24.05! Well done everyone, thank you! -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 16:38:20 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 15:38:20 +0000 Subject: [Koha-bugs] [Bug 36243] ILL "Edit request" action is broken In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36243 Katrin Fischer changed: What |Removed |Added ---------------------------------------------------------------------------- Version(s)| |24.05.00 released in| | Status|Passed QA |Pushed to master -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 16:38:22 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 15:38:22 +0000 Subject: [Koha-bugs] [Bug 36243] ILL "Edit request" action is broken In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36243 --- Comment #10 from Katrin Fischer --- Pushed for 24.05! Well done everyone, thank you! -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 16:38:23 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 15:38:23 +0000 Subject: [Koha-bugs] [Bug 36245] ILL - Custom backend form action is broken In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36245 Katrin Fischer changed: What |Removed |Added ---------------------------------------------------------------------------- Version(s)| |24.05.00 released in| | Status|Passed QA |Pushed to master -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 16:38:25 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 15:38:25 +0000 Subject: [Koha-bugs] [Bug 36245] ILL - Custom backend form action is broken In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36245 --- Comment #5 from Katrin Fischer --- Pushed for 24.05! Well done everyone, thank you! -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 16:38:27 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 15:38:27 +0000 Subject: [Koha-bugs] [Bug 36249] ILL - "Request from partners" action is broken In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36249 Katrin Fischer changed: What |Removed |Added ---------------------------------------------------------------------------- Version(s)| |24.05.00 released in| | Status|Passed QA |Pushed to master -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 16:38:28 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 15:38:28 +0000 Subject: [Koha-bugs] [Bug 36249] ILL - "Request from partners" action is broken In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36249 --- Comment #7 from Katrin Fischer --- Pushed for 24.05! Well done everyone, thank you! -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 16:44:27 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 15:44:27 +0000 Subject: [Koha-bugs] [Bug 32413] JSON reports shows inaccurate results with repeated parameters In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=32413 --- Comment #3 from Fridolin Somers --- (In reply to Fridolin Somers from comment #2) > Same issue with command-line runreport.pl, it dies because of repeating > parameter Ahhh forget that. Runreport simply replaces <<>> with ? so it works. But param is not repeated, you need as meany as there are <<>> -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 16:56:47 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 15:56:47 +0000 Subject: [Koha-bugs] [Bug 36277] New: t/db_dependent/api/v1/transfer_limits.t is failing Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36277 Bug ID: 36277 Summary: t/db_dependent/api/v1/transfer_limits.t is failing Change sponsored?: --- Product: Koha Version: master Hardware: All OS: All Status: NEW Severity: normal Priority: P5 - low Component: Test Suite Assignee: chris at bigballofwax.co.nz Reporter: katrin.fischer at bsz-bw.de QA Contact: testopia at bugs.koha-community.org This failure is from the last run on master: https://jenkins.koha-community.org/job/Koha_Master/ koha_1 | # Inactivity timeout koha_1 | koha_1 | # Failed test 'POST //qBiciZO7stgLDtFSpp1ZivUHaHyn8cMP1d5DXRI:thePassword123@/api/v1/transfer_limits/batch' koha_1 | # at t/db_dependent/api/v1/transfer_limits.t line 210. koha_1 | koha_1 | # Failed test 'SWAGGER3.2.1' koha_1 | # at t/db_dependent/api/v1/transfer_limits.t line 210. koha_1 | # got: undef koha_1 | # expected: '201' koha_1 | # Looks like you failed 2 tests of 26. koha_1 | koha_1 | # Failed test 'batch_add() and batch_delete() tests' koha_1 | # at t/db_dependent/api/v1/transfer_limits.t line 269. koha_1 | # Looks like you failed 1 test of 4. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 16:56:59 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 15:56:59 +0000 Subject: [Koha-bugs] [Bug 36277] t/db_dependent/api/v1/transfer_limits.t is failing In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36277 --- Comment #1 from Katrin Fischer --- Passes locally for me. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 17:04:14 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 16:04:14 +0000 Subject: [Koha-bugs] [Bug 36176] [23.11 and below] We need tests to check for 'cud-' operations in stable branches (pre-24.05) In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36176 Katrin Fischer changed: What |Removed |Added ---------------------------------------------------------------------------- Summary|We need tests to check for |[23.11 and below] We need |'cud-' operations in stable |tests to check for 'cud-' |branches (pre-24.05) |operations in stable | |branches (pre-24.05) -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 17:11:04 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 16:11:04 +0000 Subject: [Koha-bugs] [Bug 36271] Bookings should respect circulation rules for max loan periods In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36271 --- Comment #2 from Thibaud Guillot --- Hello :) I'm actually working on that, for now, I defined a CanItemBeBookedInAdvance function in Bookings to deal with some rules, 4 in fact : - booking_total_allowed - booking_per_item - booking_per_itemtype ( related to bug 35906 ) - booking_period_length Does this seem useful to you? -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 17:13:11 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 16:13:11 +0000 Subject: [Koha-bugs] [Bug 18729] Librarian unable to update hold pickup library from patron pages without "modify_holds_priority" permission In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=18729 koha-US bug tracker changed: What |Removed |Added ---------------------------------------------------------------------------- CC|bugzilla at koha-us.org | -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 17:13:33 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 16:13:33 +0000 Subject: [Koha-bugs] [Bug 30220] Purchase suggestion defaults to first library In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30220 koha-US bug tracker changed: What |Removed |Added ---------------------------------------------------------------------------- CC|bugzilla at koha-us.org | -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 17:13:55 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 16:13:55 +0000 Subject: [Koha-bugs] [Bug 7374] Add remote image option for authorized values In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=7374 koha-US bug tracker changed: What |Removed |Added ---------------------------------------------------------------------------- CC|bugzilla at koha-us.org | -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 17:15:45 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 16:15:45 +0000 Subject: [Koha-bugs] [Bug 36196] Handling NULL data in ajax calls for cities In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36196 --- Comment #6 from Thibaud Guillot --- Hi, Thanks Victor for your feedback, I think that will be better too... to be honest I look into the code and I found the same behavior in identity_providers.tt#L419.. I will modify this -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 17:17:07 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 16:17:07 +0000 Subject: [Koha-bugs] [Bug 35906] Add bookable option on itemtypes In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35906 --- Comment #22 from Thibaud Guillot --- Hello Martin, Thanks for your feedback, so I asked him to test it as soon as possible and SO (I hope so) -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 17:28:25 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 16:28:25 +0000 Subject: [Koha-bugs] [Bug 35357] Item not removed from holds queue when checked out to a different patron In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35357 --- Comment #19 from Katrin Fischer --- Just wondering about the direct SQL in this patch. We do have HoldsQueueItems.pm - should we not be able to use a delete? -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 17:30:52 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 16:30:52 +0000 Subject: [Koha-bugs] [Bug 36103] Remove the "Cancel hold" link for item level holds In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36103 Katrin Fischer changed: What |Removed |Added ---------------------------------------------------------------------------- Version|23.11 |master -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 17:32:10 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 16:32:10 +0000 Subject: [Koha-bugs] [Bug 36120] Add pickup locations to Bookings In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36120 --- Comment #2 from Martin Renvoize --- Created attachment 162911 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162911&action=edit Bug 36120: Add pickup_items to the pickup_locations response This patch adds pickup_items as a list of itemnumbers that can be picked from the library should it be selected as a pickup location. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 17:32:13 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 16:32:13 +0000 Subject: [Koha-bugs] [Bug 36120] Add pickup locations to Bookings In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36120 --- Comment #3 from Martin Renvoize --- Created attachment 162912 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162912&action=edit Bug 36120: Add pickup locations to bookings This patch adds a call to /biblios/biblionumber/pickup_locations to fetch valid pickup locations for the biblio. Upon selecting a pickup location we adapt the item select to only allow for selecting items returned as valid for pickup at the selected location. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 17:37:10 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 16:37:10 +0000 Subject: [Koha-bugs] [Bug 35357] Item not removed from holds queue when checked out to a different patron In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35357 Katrin Fischer changed: What |Removed |Added ---------------------------------------------------------------------------- Version(s)| |24.05.00 released in| | Status|Passed QA |Pushed to master -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 17:37:12 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 16:37:12 +0000 Subject: [Koha-bugs] [Bug 35357] Item not removed from holds queue when checked out to a different patron In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35357 --- Comment #20 from Katrin Fischer --- Pushed for 24.05! Well done everyone, thank you! -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 17:37:13 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 16:37:13 +0000 Subject: [Koha-bugs] [Bug 35469] Cannot create bookings without circulation permissions In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35469 Katrin Fischer changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Passed QA |Pushed to master Version(s)| |24.05.00 released in| | -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 17:37:15 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 16:37:15 +0000 Subject: [Koha-bugs] [Bug 35469] Cannot create bookings without circulation permissions In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35469 --- Comment #30 from Katrin Fischer --- Pushed for 24.05! Well done everyone, thank you! -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 17:37:17 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 16:37:17 +0000 Subject: [Koha-bugs] [Bug 35773] Cannot create bookings without edit_borrowers, label_creator, routing or order_manage permissions In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35773 Katrin Fischer changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Passed QA |Pushed to master Version(s)| |24.05.00 released in| | -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 17:37:18 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 16:37:18 +0000 Subject: [Koha-bugs] [Bug 35773] Cannot create bookings without edit_borrowers, label_creator, routing or order_manage permissions In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35773 --- Comment #8 from Katrin Fischer --- Pushed for 24.05! Well done everyone, thank you! -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 17:37:20 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 16:37:20 +0000 Subject: [Koha-bugs] [Bug 35924] The 'checkin slip' button should not be available for patrons whose privacy is set to never In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35924 Katrin Fischer changed: What |Removed |Added ---------------------------------------------------------------------------- Version(s)| |24.05.00 released in| | Status|Passed QA |Pushed to master -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 17:37:22 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 16:37:22 +0000 Subject: [Koha-bugs] [Bug 35924] The 'checkin slip' button should not be available for patrons whose privacy is set to never In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35924 --- Comment #10 from Katrin Fischer --- Pushed for 24.05! Well done everyone, thank you! -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 17:37:23 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 16:37:23 +0000 Subject: [Koha-bugs] [Bug 36056] Clarify subpermissions check behavior in C4::Auth In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36056 Katrin Fischer changed: What |Removed |Added ---------------------------------------------------------------------------- Version(s)| |24.05.00 released in| | Status|Passed QA |Pushed to master -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 17:37:25 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 16:37:25 +0000 Subject: [Koha-bugs] [Bug 36056] Clarify subpermissions check behavior in C4::Auth In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36056 --- Comment #4 from Katrin Fischer --- Pushed for 24.05! Well done everyone, thank you! -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 17:37:26 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 16:37:26 +0000 Subject: [Koha-bugs] [Bug 36134] Elasticsearch authentication using userinfo parameter crashes about.pl In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36134 Katrin Fischer changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Passed QA |Pushed to master Version(s)| |24.05.00 released in| | -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 17:37:28 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 16:37:28 +0000 Subject: [Koha-bugs] [Bug 36134] Elasticsearch authentication using userinfo parameter crashes about.pl In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36134 --- Comment #8 from Katrin Fischer --- Pushed for 24.05! Well done everyone, thank you! -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 17:37:29 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 16:37:29 +0000 Subject: [Koha-bugs] [Bug 36212] transferbook should not look for items without barcode In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36212 Katrin Fischer changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Passed QA |Pushed to master Version(s)| |24.05.00 released in| | -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 17:37:31 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 16:37:31 +0000 Subject: [Koha-bugs] [Bug 36212] transferbook should not look for items without barcode In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36212 --- Comment #3 from Katrin Fischer --- Pushed for 24.05! Well done everyone, thank you! -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 17:41:55 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 16:41:55 +0000 Subject: [Koha-bugs] [Bug 36120] Add pickup locations to Bookings In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36120 Martin Renvoize changed: What |Removed |Added ---------------------------------------------------------------------------- See Also| |https://bugs.koha-community | |.org/bugzilla3/show_bug.cgi | |?id=27340 -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 17:41:55 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 16:41:55 +0000 Subject: [Koha-bugs] [Bug 27340] We should introduce Koha::PickupLocation(s) In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=27340 Martin Renvoize changed: What |Removed |Added ---------------------------------------------------------------------------- See Also| |https://bugs.koha-community | |.org/bugzilla3/show_bug.cgi | |?id=36120 -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 17:42:04 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 16:42:04 +0000 Subject: [Koha-bugs] [Bug 36120] Add pickup locations to Bookings In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36120 Martin Renvoize changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |tomascohen at gmail.com -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 17:42:43 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 16:42:43 +0000 Subject: [Koha-bugs] [Bug 36120] Add pickup locations to Bookings In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36120 --- Comment #4 from Martin Renvoize --- Still a lot to tie in here, but I wanted to put up the UI proof of concept to start facilitating feedback from Tomas and people regarding the calls to fetch pickup locations from the API. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 17:42:56 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 16:42:56 +0000 Subject: [Koha-bugs] [Bug 36120] Add pickup locations to Bookings In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36120 Martin Renvoize changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |lucas at bywatersolutions.com -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 17:43:28 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 16:43:28 +0000 Subject: [Koha-bugs] [Bug 36120] Add pickup locations to Bookings In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36120 --- Comment #5 from Martin Renvoize --- I've not considered overrides really yet either. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 17:45:53 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 16:45:53 +0000 Subject: [Koha-bugs] [Bug 36004] Typo in "Your concern was successfully submitted" OPAC text In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36004 Katrin Fischer changed: What |Removed |Added ---------------------------------------------------------------------------- Severity|enhancement |trivial -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 17:45:57 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 16:45:57 +0000 Subject: [Koha-bugs] [Bug 36005] Typo in "Your concern was successfully submitted" in staff interface In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36005 Katrin Fischer changed: What |Removed |Added ---------------------------------------------------------------------------- Severity|enhancement |trivial -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 17:48:23 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 16:48:23 +0000 Subject: [Koha-bugs] [Bug 35911] Archived suggestions show in patron's account In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35911 Katrin Fischer changed: What |Removed |Added ---------------------------------------------------------------------------- Severity|enhancement |minor -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 17:59:48 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 16:59:48 +0000 Subject: [Koha-bugs] [Bug 36269] ElasticSearch: publisher-location (pl) index should use 264a In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36269 --- Comment #2 from Thomas Klausner --- Created attachment 162913 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162913&action=edit Bug 36269: ElasticSearch: publisher-location (pl) should use260a/264a Currently the index `pl` points to 008/15-17. It should (additionally/instead?) point to 260a and/or 264a. Test plan (for koha-testing-docker with ElasticSearch via `ktd --es7 up`) Verify the old/broken behaviour: * Go to Staff/Advanced Search * Select "Publisher Location" and enter "cau", start search * You will get some hits (~16), eg "Perl best practices / Damian Conway", which has 008 of "051222s2005 caua b 001 0 eng d" with "cau" on 15-17 * Edit this record (cgi-bin/koha/cataloguing/addbiblio.pl?biblionumber=5) * Inspect 260$a, which should containt "Sebastopol, CA :" * Go back to Advanced Search and search for "Publisher Location" = "Sebastopol" * No hits! Apply the patch! * exit ktd and stop it (ktd --es7 down; ktd --es7 stop) * start it again * Go to Staff / Administration / Search Engine Config (Elasticsearch) * Click on the Tab "Bibliographic records" and search/filter for "pl" * you should see 3 entries for "pl", with Mapping values of "008_/15-17", "260a" and "264a" * Go to Search, * Select "Publisher Location" and enter "cau", start search * same hits as befor * Search again, but for "Sebastopol" * Now you'll get 9 hits!! Bonus: Test 264a * Got to Admin / MARC bibl framework, select BKS -> MARC structure * search for tag "264", edit subfields * in tabs a, b, c: Check the "Editor" Checkbox (Visibility) * Save changes * find a book, eg again "Perl best practices" and edit it * find field 264 and enter "Test" into 264a, Save * Depending on your setup, you might have to manually re-index the book: * enter ktd: ktd --shell * reindex the one book (via --bn) or all (might also need a -d) /usr/share/koha/bin/search_tools/rebuild_elasticsearch.pl -v -b -d * Go again to Advanced Search, Publisher Location = "Test" * You should find the book If your NOT running ktd, you might be able to just edit the ElasticSearch Mappings to add / change the mapping for "pl" to point to "260a". One rather harsh way to do this (which I needed to do, because the ES Mappings UI did not work for me) is via this SQL: update search_marc_map set marc_field='260a' where marc_field='008_/15-17'; Sponsored-by: Steiermärkische Landesbibliothek -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 18:00:20 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 17:00:20 +0000 Subject: [Koha-bugs] [Bug 36269] ElasticSearch: publisher-location (pl) index should use 264a In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36269 Thomas Klausner changed: What |Removed |Added ---------------------------------------------------------------------------- Change sponsored?|--- |Sponsored Status|NEW |Needs Signoff -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 18:22:02 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 17:22:02 +0000 Subject: [Koha-bugs] [Bug 36120] Add pickup locations to Bookings In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36120 --- Comment #6 from Martin Renvoize --- Created attachment 162914 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162914&action=edit Bug 36120: Schema update -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 18:22:05 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 17:22:05 +0000 Subject: [Koha-bugs] [Bug 36120] Add pickup locations to Bookings In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36120 Martin Renvoize changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #162911|0 |1 is obsolete| | --- Comment #7 from Martin Renvoize --- Created attachment 162915 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162915&action=edit Bug 36120: Add pickup_items to the pickup_locations response This patch adds pickup_items as a list of itemnumbers that can be picked from the library should it be selected as a pickup location. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 18:22:07 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 17:22:07 +0000 Subject: [Koha-bugs] [Bug 36120] Add pickup locations to Bookings In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36120 --- Comment #8 from Martin Renvoize --- Created attachment 162916 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162916&action=edit Bug 36120: Add pickup_library support to bookings API -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 18:22:10 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 17:22:10 +0000 Subject: [Koha-bugs] [Bug 36120] Add pickup locations to Bookings In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36120 --- Comment #9 from Martin Renvoize --- Created attachment 162917 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162917&action=edit Bug 36120: Add pickup locations to place bookings modal This patch adds a call to /biblios/biblionumber/pickup_locations to fetch valid pickup locations for the biblio. Upon selecting a pickup location we adapt the item select to only allow for selecting items returned as valid for pickup at the selected location. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 18:22:33 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 17:22:33 +0000 Subject: [Koha-bugs] [Bug 36120] Add pickup locations to Bookings In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36120 Martin Renvoize changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #162912|0 |1 is obsolete| | -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 18:23:17 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 17:23:17 +0000 Subject: [Koha-bugs] [Bug 36120] Add pickup locations to Bookings In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36120 --- Comment #10 from Martin Renvoize --- Created attachment 162918 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162918&action=edit Bug 36120: Add pickup_library_id to bookings table -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 18:23:19 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 17:23:19 +0000 Subject: [Koha-bugs] [Bug 36120] Add pickup locations to Bookings In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36120 Martin Renvoize changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #162914|0 |1 is obsolete| | --- Comment #11 from Martin Renvoize --- Created attachment 162919 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162919&action=edit Bug 36120: Schema update -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 18:23:22 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 17:23:22 +0000 Subject: [Koha-bugs] [Bug 36120] Add pickup locations to Bookings In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36120 Martin Renvoize changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #162915|0 |1 is obsolete| | --- Comment #12 from Martin Renvoize --- Created attachment 162920 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162920&action=edit Bug 36120: Add pickup_items to the pickup_locations response This patch adds pickup_items as a list of itemnumbers that can be picked from the library should it be selected as a pickup location. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 18:23:24 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 17:23:24 +0000 Subject: [Koha-bugs] [Bug 36120] Add pickup locations to Bookings In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36120 Martin Renvoize changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #162916|0 |1 is obsolete| | --- Comment #13 from Martin Renvoize --- Created attachment 162921 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162921&action=edit Bug 36120: Add pickup_library support to bookings API -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 18:23:27 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 17:23:27 +0000 Subject: [Koha-bugs] [Bug 36120] Add pickup locations to Bookings In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36120 Martin Renvoize changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #162917|0 |1 is obsolete| | --- Comment #14 from Martin Renvoize --- Created attachment 162922 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162922&action=edit Bug 36120: Add pickup locations to place bookings modal This patch adds a call to /biblios/biblionumber/pickup_locations to fetch valid pickup locations for the biblio. Upon selecting a pickup location we adapt the item select to only allow for selecting items returned as valid for pickup at the selected location. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 18:35:51 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 17:35:51 +0000 Subject: [Koha-bugs] [Bug 36120] Add pickup locations to Bookings In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36120 Martin Renvoize changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #162918|0 |1 is obsolete| | --- Comment #15 from Martin Renvoize --- Created attachment 162923 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162923&action=edit Bug 36120: Add pickup_library_id to bookings table -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 18:35:54 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 17:35:54 +0000 Subject: [Koha-bugs] [Bug 36120] Add pickup locations to Bookings In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36120 Martin Renvoize changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #162919|0 |1 is obsolete| | --- Comment #16 from Martin Renvoize --- Created attachment 162924 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162924&action=edit Bug 36120: Schema update -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 18:35:56 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 17:35:56 +0000 Subject: [Koha-bugs] [Bug 36120] Add pickup locations to Bookings In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36120 Martin Renvoize changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #162920|0 |1 is obsolete| | --- Comment #17 from Martin Renvoize --- Created attachment 162925 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162925&action=edit Bug 36120: Add pickup_items to the pickup_locations response This patch adds pickup_items as a list of itemnumbers that can be picked from the library should it be selected as a pickup location. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 18:35:59 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 17:35:59 +0000 Subject: [Koha-bugs] [Bug 36120] Add pickup locations to Bookings In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36120 Martin Renvoize changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #162921|0 |1 is obsolete| | --- Comment #18 from Martin Renvoize --- Created attachment 162926 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162926&action=edit Bug 36120: Add pickup_library support to bookings API -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 18:36:02 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 17:36:02 +0000 Subject: [Koha-bugs] [Bug 36120] Add pickup locations to Bookings In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36120 Martin Renvoize changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #162922|0 |1 is obsolete| | --- Comment #19 from Martin Renvoize --- Created attachment 162927 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162927&action=edit Bug 36120: Add pickup locations to place bookings modal This patch adds a call to /biblios/biblionumber/pickup_locations to fetch valid pickup locations for the biblio. Upon selecting a pickup location we adapt the item select to only allow for selecting items returned as valid for pickup at the selected location. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 18:36:04 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 17:36:04 +0000 Subject: [Koha-bugs] [Bug 36120] Add pickup locations to Bookings In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36120 --- Comment #20 from Martin Renvoize --- Created attachment 162928 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162928&action=edit Bug 36120: Add pickup library to bookings list table -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 18:40:49 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 17:40:49 +0000 Subject: [Koha-bugs] [Bug 36120] Add pickup locations to Bookings In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36120 --- Comment #21 from Martin Renvoize --- OK, ready for testing now as a whole :) Test plan 1) Enable some items to be bookable as per the test plan for 29002 2) Click 'Place booking' on any of the biblio pages for those bilios marked bookable as above 3) Note you are now required to pick a pickup location 4) Experiment with different pickup location rules as per the holds system 5) Note that items are enabled/disabled from the item selection based on pickup location 6) Place your booking 7) Note that 'Pickup location' is now listed in the table on the 'Bookings' page. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 18:40:53 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 17:40:53 +0000 Subject: [Koha-bugs] [Bug 36120] Add pickup locations to Bookings In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36120 Martin Renvoize changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |Needs Signoff -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 18:41:03 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 17:41:03 +0000 Subject: [Koha-bugs] [Bug 36120] Add pickup locations to Bookings In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36120 Martin Renvoize changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |david at davidnind.com -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 18:41:13 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 17:41:13 +0000 Subject: [Koha-bugs] [Bug 36120] Add pickup locations to Bookings In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36120 Martin Renvoize changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |nick at bywatersolutions.com -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 18:41:17 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 17:41:17 +0000 Subject: [Koha-bugs] [Bug 34962] Add a system messages feature to Koha to report issues and failures in a more visible way In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=34962 Katie Bliss changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |kebliss at dmpl.org -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 18:42:44 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 17:42:44 +0000 Subject: [Koha-bugs] [Bug 15500] Add FRBRized view to OPAC & staff interface results In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=15500 Lisette Scheer changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |lisette.scheer at bywatersolut | |ions.com -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 18:52:46 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 17:52:46 +0000 Subject: [Koha-bugs] [Bug 36120] Add pickup locations to Bookings In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36120 Martin Renvoize changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |lisette.scheer at bywatersolut | |ions.com -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 19:04:03 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 18:04:03 +0000 Subject: [Koha-bugs] [Bug 36274] OPAC suggestions form doesn't display In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36274 --- Comment #3 from Owen Leonard --- This works to display the form I think there's still a problem with the check for duplicates. I filled out the form (title, author, isbn, and year) using information from a book already in the catalog and when I submitted it I got a blank page. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 19:10:03 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 18:10:03 +0000 Subject: [Koha-bugs] [Bug 36262] Under an item's status, provide the shelving location drop down menu In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36262 Katie Bliss changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |kebliss at dmpl.org -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 19:31:41 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 18:31:41 +0000 Subject: [Koha-bugs] [Bug 35672] Update and Run SQL button should save changes even if report fails to run In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35672 Katie Bliss changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |kebliss at dmpl.org -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 19:35:57 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 18:35:57 +0000 Subject: [Koha-bugs] [Bug 34631] Independentbranches - Non-superuser should not be able to write Additional contents for other branches In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=34631 --- Comment #13 from Matthias Le Gac --- Bug 34631 - Independentbranches - Non-superuser should not be able to write Additional contents for other branches 162856 - Bug 34631: Independentbranches - Non-superuser should not be able to write Additional contents for other branches Apply? [(y)es, (n)o, (i)nteractive] y Applying: Bug 34631: Independentbranches - Non-superuser should not be able to write Additional contents for other branches I have no problem to apply the patch, I don't understand your problem. Your master is up to date ? -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 19:41:46 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 18:41:46 +0000 Subject: [Koha-bugs] [Bug 36278] New: Relabel "Gone no address" Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36278 Bug ID: 36278 Summary: Relabel "Gone no address" Change sponsored?: --- Product: Koha Version: unspecified Hardware: All OS: All Status: NEW Severity: trivial Priority: P5 - low Component: Patrons Assignee: koha-bugs at lists.koha-community.org Reporter: sbrown at bywatersolutions.com QA Contact: testopia at bugs.koha-community.org CC: gmcharlt at gmail.com, kyle.m.hall at gmail.com Many libraries find the "Gone no address" patron account flag awkwardly phrased/named. Perhaps "Address block", "Wrong address", "Address correction needed", or similar would more clearly indicate to library staff what this flag does. -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 19:44:51 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 18:44:51 +0000 Subject: [Koha-bugs] [Bug 31572] E-mail and SMS verification In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31572 Amanda Campbell changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |acampbell at hmcpl.org -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 19:49:15 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 18:49:15 +0000 Subject: [Koha-bugs] [Bug 34631] Independentbranches - Non-superuser should not be able to write Additional contents for other branches In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=34631 --- Comment #14 from Myka Kennedy Stephens --- Matthias: I don't understand it either. I tried again just now. Fresh boot of Koha Testing Docker, fresh git pull, and an extra git reset just for extra measure. When I did the hard reset it said: HEAD is now at fee4368cd8 Bug 35930: Add guards for plugins_enabled Applying the patch with git bz, I get the same errors as yesterday: error: sha1 information is lacking or useless (koha-tmpl/intranet-tmpl/prog/en/modules/tools/additional-contents.tt). error: could not build fake ancestor I was able to test and sign off on another patch for another bug yesterday, so I'm fairly certain the issue is with this patch and not my setup. I'm sorry I don't have any more insights than that. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 19:50:25 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 18:50:25 +0000 Subject: [Koha-bugs] [Bug 36122] NEW_SUGGESTION is sent for every modification to the suggestion In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36122 Matthias Le Gac changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |matthias.le-gac at inlibro.com Assignee|koha-bugs at lists.koha-commun |matthias.le-gac at inlibro.com |ity.org | -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 19:55:15 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 18:55:15 +0000 Subject: [Koha-bugs] [Bug 34631] Independentbranches - Non-superuser should not be able to write Additional contents for other branches In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=34631 Blou changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Patch doesn't apply |Needs Signoff --- Comment #15 from Blou --- Myka, Bug 35930 has been on the stack for a while. My grep tells me it's number 486 on the master stack. It's possible to test plenty of issue with an old master, but when it fails, it fails. The issue right now seems with your setup, I'm sorry. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 20:00:55 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 19:00:55 +0000 Subject: [Koha-bugs] [Bug 36279] New: Resending notice after changing delivery method still uses old method Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36279 Bug ID: 36279 Summary: Resending notice after changing delivery method still uses old method Change sponsored?: --- Product: Koha Version: unspecified Hardware: All OS: All Status: NEW Severity: enhancement Priority: P5 - low Component: Notices Assignee: koha-bugs at lists.koha-community.org Reporter: cbrannon at cdalibrary.org QA Contact: testopia at bugs.koha-community.org If you update a patron's messaging preference, say from email to sms, then go to their sent notices and try to resend, it tries to resend using the method it used before (still email in this case). I know we fixed the notices so that if, for example, the email address is updated, when you hit resend, it sends to the new address. But changing formats doesn't seem to affect any change. -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 20:16:09 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 19:16:09 +0000 Subject: [Koha-bugs] [Bug 34631] Independentbranches - Non-superuser should not be able to write Additional contents for other branches In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=34631 Myka Kennedy Stephens changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Needs Signoff |Signed Off -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 20:16:12 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 19:16:12 +0000 Subject: [Koha-bugs] [Bug 34631] Independentbranches - Non-superuser should not be able to write Additional contents for other branches In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=34631 Myka Kennedy Stephens changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #162856|0 |1 is obsolete| | --- Comment #16 from Myka Kennedy Stephens --- Created attachment 162929 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162929&action=edit Bug 34631: Independentbranches - Non-superuser should not be able to write Additional contents for other branches When syspref Independentbranches is enabled Non-superuser should not be able to write Additional contents for other branches To reproduce: 1- Connect to staff interface as superlibrarian 2- Enable IndependentBranches preference 3- Go to Tools -> HTML customizations 4- Crete an additional content for all libraries 5- Create or edit a borrower 5-1- Set permission for the borrower - catalogue - edit_additional_contents 4- Log in to the staff interface with the non-superlibrarian staff user 5- Go to Tools -> HTML customizations --> you can delete or edit the additional contents created by superlibrarian for All libraries 6- Click on New entry --> you can add additional content for other branches 7- Apply the patch 8- Repeat step 5 --> you cannot delete or edit the additional contents create by superlibrarian for All libraries 9- Repeat step 6 --> you cannot add additional content for other branches 10- submit the form --> the branch of the created additional content is the current user branch Signed-off-by: Myka Kennedy Stephens -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 20:19:09 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 19:19:09 +0000 Subject: [Koha-bugs] [Bug 36070] "Place recall" hover styling on OPAC not consistent In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36070 Emily Lamancusa changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #162035|0 |1 is obsolete| | --- Comment #3 from Emily Lamancusa --- Created attachment 162930 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162930&action=edit Bug 36070: Fix css class 1) Enable UseRecalls 2) Checkout an item to a patron: Top INTRA search bar: pick 'check out' and paste a patron cardnumber: 23529000035676 press enter 3) Enter an item barcode: 39999000003154 Press checkout 4) As user koha/koha, visit OPAC page for this biblio: opac-url/cgi-bin/koha/opac-detail.pl?biblionumber=76 5) Notice all sidebar actions on the right have hover effect except for 'Place recall' Apply patch, repeat test plan. Signed-off-by: Owen Leonard Signed-off-by: Emily Lamancusa -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 20:19:50 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 19:19:50 +0000 Subject: [Koha-bugs] [Bug 36070] "Place recall" hover styling on OPAC not consistent In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36070 Emily Lamancusa changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Signed Off |Passed QA CC| |emily.lamancusa at montgomeryc | |ountymd.gov --- Comment #4 from Emily Lamancusa --- Nice catch! Fixes the problem and QA script passes. Passing QA -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 20:21:20 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 19:21:20 +0000 Subject: [Koha-bugs] [Bug 36070] "Place recall" hover styling on OPAC not consistent In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36070 Emily Lamancusa changed: What |Removed |Added ---------------------------------------------------------------------------- QA Contact|testopia at bugs.koha-communit |emily.lamancusa at montgomeryc |y.org |ountymd.gov -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 20:38:12 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 19:38:12 +0000 Subject: [Koha-bugs] [Bug 34631] Independentbranches - Non-superuser should not be able to write Additional contents for other branches In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=34631 --- Comment #17 from Myka Kennedy Stephens --- I've been doing git pulls outside of Koha testing docker, which was making it look like my Koha repository was updating, but I guess it wasn't. I did a git pull from within the ktd shell, applied the patch, and then it worked! Applying the patch has the desired effect that a non-superuser from another branch has the option to preview HTML content but the edit and delete buttons are hidden from content for other branches and all libraries. After signing-off, I am having some trouble with steps 9 and 10 of the test plan. After trying to save new content with the limited-access user, I get the following error: Template process failed: undef error - The method Koha::AdditionalContent->idnew is not covered by tests! This error persists to the superuser login. When I do a hard reset to master, the error goes away and I can see the content that I attempted to add and save before I got the error. Hoping QA or a second tester can look into this further. I'm leaving it as signed off, but please change if there's a more appropriate status. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 20:48:36 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 19:48:36 +0000 Subject: [Koha-bugs] [Bug 36188] Allow to sort lists by items.dateaccessioned of item records In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36188 Esther Melander changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |esther.melander at bywatersolu | |tions.com --- Comment #15 from Esther Melander --- I tested this and it appears to work when selecting the date accessioned. However, I couldn't sort the list at all when clicking on the sort button for the other columns. Even though I selected the sort order by date accessioned, I would expect to retain the ability to continue to sort the list in different way when viewing. For example, maybe I want the date accessioned to reverse the sort, or maybe I need to sort by call number next. Clicking on the sort icons in the column header does nothing. -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 20:51:19 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 19:51:19 +0000 Subject: [Koha-bugs] [Bug 34631] Independentbranches - Non-superuser should not be able to write Additional contents for other branches In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=34631 Blou changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Signed Off |Failed QA --- Comment #18 from Blou --- Well, I'll fail it myself :-P Matthias, the code for additional-contents.pl has been all reformated, like you passed it in perltidy. It makes it very hard to see the actual modifications. Please resend the patch with no extra formating, please (beside the lines with actual changes). -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 20:55:34 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 19:55:34 +0000 Subject: [Koha-bugs] [Bug 36188] Allow to sort lists by items.dateaccessioned of item records In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36188 --- Comment #16 from Esther Melander --- Testing other tables in Koha, it is possible to click on the sort arrows and have the column sort. In lists, it looks like you have to click on the column name. This is inconsistent behavior, but is perhaps a separate bug. -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 20:57:31 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 19:57:31 +0000 Subject: [Koha-bugs] [Bug 34631] Independentbranches - Non-superuser should not be able to write Additional contents for other branches In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=34631 Matthias Le Gac changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #162929|0 |1 is obsolete| | -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 20:58:28 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 19:58:28 +0000 Subject: [Koha-bugs] [Bug 34631] Independentbranches - Non-superuser should not be able to write Additional contents for other branches In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=34631 Matthias Le Gac changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #154890|1 |0 is obsolete| | -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 21:11:28 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 20:11:28 +0000 Subject: [Koha-bugs] [Bug 36188] Allow to sort lists by items.dateaccessioned of item records In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36188 Biblibre Sandboxes changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #162555|0 |1 is obsolete| | --- Comment #17 from Biblibre Sandboxes --- Created attachment 162931 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162931&action=edit Bug 36188: Sort lists by items.dateaccessioned in the OPAC When a list is sorted by dateaccessioned it should be ordered descending by default. This is to ensure the newest items are displayed first. Test plan: 1. Apply patches and restart services 2. In the Staff client, go to the Lists module and create a new list 3. Set the 'Sort this list by' dropdown = 'Date accessioned' 4. Add several barcodes to the list belonging to items with a range of different items.dateaccessioned dates 5. In the staff client observe the list records are ordered by the 'Date accessioned' in descending order - i.e. titles with newest dateaccessioned are displayed first 6. In a new browser window navigate to the list in the Koha OPAC 7. Confirm the list titles in the OPAC are ordered in the same order as the staff client 8. In the OPAC click on the 'Sort' button and select 'Date accession (oldest to newest) 9. Confirm the OPAC list order reverses 10. In the OPAC choose other values from the 'Sort' button and confirm the list is re-sorted correctly Sponsored-By: The Treasury, New Zealand Signed-off-by: esther -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 21:15:21 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 20:15:21 +0000 Subject: [Koha-bugs] [Bug 36188] Allow to sort lists by items.dateaccessioned of item records In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36188 Esther Melander changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Needs Signoff |Signed Off --- Comment #18 from Esther Melander --- Signing off because this works according to the test plan. I agree that Date Added versus Date Accessioned are a bit confusing. They could mean the same thing, but these dates are pulled from different places. Date Added comes from the bibliographic record (?) and Date accessioned comes from the item record, if I understand the difference. -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 21:27:30 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 20:27:30 +0000 Subject: [Koha-bugs] [Bug 36122] NEW_SUGGESTION is sent for every modification to the suggestion In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36122 Matthias Le Gac changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |ASSIGNED -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 21:30:40 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 20:30:40 +0000 Subject: [Koha-bugs] [Bug 36188] Allow to sort lists by items.dateaccessioned of item records In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36188 --- Comment #19 from Lucas Gass --- (In reply to Esther Melander from comment #16) > Testing other tables in Koha, it is possible to click on the sort arrows and > have the column sort. In lists, it looks like you have to click on the > column name. This is inconsistent behavior, but is perhaps a separate bug. Lists are one place in Koha that are not yet "DataTable'ed". There is an open bug regarding this: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30031 -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 22:07:14 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 21:07:14 +0000 Subject: [Koha-bugs] [Bug 36269] ElasticSearch: publisher-location (pl) index should use 264a In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36269 Caroline Cyr La Rose changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Needs Signoff |Signed Off -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 22:07:17 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 21:07:17 +0000 Subject: [Koha-bugs] [Bug 36269] ElasticSearch: publisher-location (pl) index should use 264a In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36269 Caroline Cyr La Rose changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #162913|0 |1 is obsolete| | --- Comment #3 from Caroline Cyr La Rose --- Created attachment 162932 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162932&action=edit Bug 36269: ElasticSearch: publisher-location (pl) should use260a/264a Currently the index `pl` points to 008/15-17. It should (additionally/instead?) point to 260a and/or 264a. Test plan (for koha-testing-docker with ElasticSearch via `ktd --es7 up`) Verify the old/broken behaviour: * Go to Staff/Advanced Search * Select "Publisher Location" and enter "cau", start search * You will get some hits (~16), eg "Perl best practices / Damian Conway", which has 008 of "051222s2005 caua b 001 0 eng d" with "cau" on 15-17 * Edit this record (cgi-bin/koha/cataloguing/addbiblio.pl?biblionumber=5) * Inspect 260$a, which should containt "Sebastopol, CA :" * Go back to Advanced Search and search for "Publisher Location" = "Sebastopol" * No hits! Apply the patch! * exit ktd and stop it (ktd --es7 down; ktd --es7 stop) * start it again * Go to Staff / Administration / Search Engine Config (Elasticsearch) * Click on the Tab "Bibliographic records" and search/filter for "pl" * you should see 3 entries for "pl", with Mapping values of "008_/15-17", "260a" and "264a" * Go to Search, * Select "Publisher Location" and enter "cau", start search * same hits as befor * Search again, but for "Sebastopol" * Now you'll get 9 hits!! Bonus: Test 264a * Got to Admin / MARC bibl framework, select BKS -> MARC structure * search for tag "264", edit subfields * in tabs a, b, c: Check the "Editor" Checkbox (Visibility) * Save changes * find a book, eg again "Perl best practices" and edit it * find field 264 and enter "Test" into 264a, Save * Depending on your setup, you might have to manually re-index the book: * enter ktd: ktd --shell * reindex the one book (via --bn) or all (might also need a -d) /usr/share/koha/bin/search_tools/rebuild_elasticsearch.pl -v -b -d * Go again to Advanced Search, Publisher Location = "Test" * You should find the book If your NOT running ktd, you might be able to just edit the ElasticSearch Mappings to add / change the mapping for "pl" to point to "260a". One rather harsh way to do this (which I needed to do, because the ES Mappings UI did not work for me) is via this SQL: update search_marc_map set marc_field='260a' where marc_field='008_/15-17'; Sponsored-by: Steiermärkische Landesbibliothek Signed-off-by: Caroline Cyr La Rose -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 22:08:20 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 21:08:20 +0000 Subject: [Koha-bugs] [Bug 36269] ElasticSearch: publisher-location (pl) index should use 264a In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36269 Caroline Cyr La Rose changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |caroline.cyr-la-rose at inlibr | |o.com --- Comment #4 from Caroline Cyr La Rose --- I was able to rebuild and get the new mappings using the following command in ktd --shell koha-elasticsearch --rebuild -r -d -b -v kohadev -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 22:14:17 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 21:14:17 +0000 Subject: [Koha-bugs] [Bug 35357] Item not removed from holds queue when checked out to a different patron In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35357 --- Comment #21 from Victor Grousset/tuxayo --- (In reply to Katrin Fischer from comment #19) > Just wondering about the direct SQL in this patch. > We do have HoldsQueueItems.pm - should we not be able to use a delete? Indeed it seems so , thanks for seeing that. @Kyle: up for a follow up patch? I can open the ticket. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 23:15:39 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 22:15:39 +0000 Subject: [Koha-bugs] [Bug 33898] background_jobs_worker.pl may leave defunct children processes for extended periods of time In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33898 --- Comment #13 from David Cook --- (In reply to Asymar Riu from comment #12) > A reboot of the server kills the zombie process. That's overkill. To get child zombie processes reaped, you'd just need to stop the parent process. Then the child process gets inherited by PID 1 and they'll get reaped. > Since it seems like a problem that doesn't affect everyone, could it be > something related to the Server settings? No, it's a real issue. It's more likely to happen to systems that use background jobs more, especially sporadically. This is just how parent/child processes work. Parent processes are responsible for reaping their child processes. As Kyle pointed out, currently child processes are only reaped under certain conditions. It's just about tweaking the code to reap them in a more responsible way. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 7 23:42:31 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 22:42:31 +0000 Subject: [Koha-bugs] [Bug 20644] Per itemtype setting for CheckPrevCheckout In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=20644 Lisette Scheer changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |lisette.scheer at bywatersolut | |ions.com Status|Needs Signoff |Patch doesn't apply -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 8 00:02:04 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 23:02:04 +0000 Subject: [Koha-bugs] [Bug 36221] Improve styling of Standard backend create OPAC form In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36221 Lisette Scheer changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #162716|0 |1 is obsolete| | --- Comment #3 from Lisette Scheer --- Created attachment 162933 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162933&action=edit Bug 36221: OPAC Styling Test plan, dont apply patches yet: 1) Enable ILLModule 2) Create a new OPAC ILL request, visit: /cgi-bin/koha/opac-illrequests.pl?method=create&backend=Standard 3) Notice the style. Apply patches. Repeat Signed-off-by: Lisette Scheer -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 8 00:03:23 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 23:03:23 +0000 Subject: [Koha-bugs] [Bug 36221] Improve styling of Standard backend create OPAC form In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36221 Lisette Scheer changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Needs Signoff |Signed Off -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 8 00:03:26 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 23:03:26 +0000 Subject: [Koha-bugs] [Bug 36221] Improve styling of Standard backend create OPAC form In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36221 Lisette Scheer changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #162715|0 |1 is obsolete| | --- Comment #4 from Lisette Scheer --- Created attachment 162934 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162934&action=edit Attachment to Bug 36221 - Improve styling of Standard backend create OPAC form Bug 36221: Preparation This refactors the code for more DRY Signed-off-by: Lisette Scheer -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 8 00:16:32 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 23:16:32 +0000 Subject: [Koha-bugs] [Bug 36274] OPAC suggestions form doesn't display In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36274 Lucas Gass changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #162907|0 |1 is obsolete| | --- Comment #4 from Lucas Gass --- Created attachment 162935 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162935&action=edit Bug 36274: Correct links leading to purchase suggestion page To test: 1. APPLY PATCH 2. As a logged in OPAC user go to 'Your account' > Purchase suggestion. The form should display. 3. Make a suggestion and confirm it works. 4. Try to make a suggestion using title, author, isbn information from an item that already exists. 5. See the "A similar document already exists:" warning. Confirm the suggestion anyways. 6. Set MaxTotalSuggestions to 4 and NumberOfSuggestionDays to 2. Make sure you can still navigate to the purchase suggestion form. 7. Do an OPAC search that will yield no results as a logged in user. 8. Click the "Make a purchase suggestion" link, making sure it works. 9. Turn on AnonSuggestions and log out of the OPAC. 10. Do an OPAC search that will yield no results. Again click the "Make a purchase suggestion", confirm it works. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 8 00:17:21 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 23:17:21 +0000 Subject: [Koha-bugs] [Bug 36274] OPAC suggestions form doesn't display In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36274 --- Comment #5 from Lucas Gass --- (In reply to Owen Leonard from comment #3) > This works to display the form I think there's still a problem with the > check for duplicates. I filled out the form (title, author, isbn, and year) > using information from a book already in the catalog and when I submitted it > I got a blank page. Good catch. I approached this the wrong way. My new patch should be better. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 8 00:21:10 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 23:21:10 +0000 Subject: [Koha-bugs] [Bug 33544] Squash some ILL fields to alleviate request table overflow In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33544 Lisette Scheer changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Needs Signoff |Failed QA --- Comment #13 from Lisette Scheer --- The table doesn't load and there's this error in the console: SyntaxError: Unexpected token ':' (at ill-list-table_23.1200006.js:231:23) -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 8 00:26:03 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 23:26:03 +0000 Subject: [Koha-bugs] [Bug 15516] Allow to place a hold on first available item from a group of titles In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=15516 Lisette Scheer changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Needs Signoff |Patch doesn't apply CC| |lisette.scheer at bywatersolut | |ions.com -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 8 00:27:47 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 23:27:47 +0000 Subject: [Koha-bugs] [Bug 15565] Place multiple item-level holds at once for the same record In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=15565 Lisette Scheer changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Needs Signoff |Patch doesn't apply --- Comment #289 from Lisette Scheer --- CONFLICT (content): Merge conflict in koha-tmpl/intranet-tmpl/prog/en/modules/reserve/request.tt -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 8 00:29:21 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 23:29:21 +0000 Subject: [Koha-bugs] [Bug 8137] Checkout limit for all libraries In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=8137 Lisette Scheer changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Needs Signoff |Patch doesn't apply --- Comment #106 from Lisette Scheer --- Applying: Bug 8137: Add 'global' has_priority rules for checkouts Using index info to reconstruct a base tree... M C4/Circulation.pm M admin/smart-rules.pl M koha-tmpl/intranet-tmpl/prog/en/modules/admin/smart-rules.tt .git/rebase-apply/patch:315: new blank line at EOF. + warning: 1 line adds whitespace errors. Falling back to patching base and 3-way merge... Auto-merging koha-tmpl/intranet-tmpl/prog/en/modules/admin/smart-rules.tt CONFLICT (content): Merge conflict in koha-tmpl/intranet-tmpl/prog/en/modules/admin/smart-rules.tt Auto-merging admin/smart-rules.pl Auto-merging C4/Circulation.pm error: Failed to merge in the changes. Patch failed at 0001 Bug 8137: Add 'global' has_priority rules for checkouts -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 8 00:37:33 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 07 Mar 2024 23:37:33 +0000 Subject: [Koha-bugs] [Bug 35169] Make long overdue borrower category options configurable in interface In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35169 Lisette Scheer changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Needs Signoff |Failed QA --- Comment #14 from Lisette Scheer --- Currently, you can set different lengths for different patrons, running the cron multiple times with different settings. Ideally a solution in the staff interface would also allow this. This + the option to add different settings at the patron category level with different settings would be ideal: longoverdue.pl --skip-category PT --lost 14=2 --confirm longoverdue.pl --skip-category PT2 --lost 21=2 --confirm -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Fri Mar 8 04:59:25 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 08 Mar 2024 03:59:25 +0000 Subject: [Koha-bugs] [Bug 33268] Overlay rules don't work correctly when source is set to * In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33268 --- Comment #56 from Victor Grousset/tuxayo --- (In reply to David Gustafsson from comment #55) > Yes, exactly. I retried and it works!!! :D I might have messed something because I should have been blocked at step: > 8. Change the values of the two subfields to something else Because the * overlay rules also include the editor. And back then I was able to change the values with the editor and now as expected, I can't. So likely had mess the rules. (You likely hit that too with my bogus test plan and that was an hint that I did something wrong) Anyway, I'm fixing the test plan and putting it in the patch commit message. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 8 05:04:13 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 08 Mar 2024 04:04:13 +0000 Subject: [Koha-bugs] [Bug 33268] Overlay rules don't work correctly when source is set to * In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33268 Victor Grousset/tuxayo changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #162801|0 |1 is obsolete| | --- Comment #57 from Victor Grousset/tuxayo --- Created attachment 162936 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162936&action=edit Bug 33268: Add tests Sponsored-by: Gothenburg University Library Signed-off-by: David Nind Signed-off-by: Tomas Cohen Arazi Signed-off-by: Martin Renvoize Signed-off-by: Victor Grousset/tuxayo -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 8 05:04:50 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 08 Mar 2024 04:04:50 +0000 Subject: [Koha-bugs] [Bug 33268] Overlay rules don't work correctly when source is set to * In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33268 Victor Grousset/tuxayo changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #162802|0 |1 is obsolete| | --- Comment #58 from Victor Grousset/tuxayo --- Created attachment 162937 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162937&action=edit Bug 33268: Add tests for context module priority Signed-off-by: David Nind Signed-off-by: Tomas Cohen Arazi Edit: tidied inline (tcohen) Signed-off-by: Martin Renvoize Signed-off-by: Victor Grousset/tuxayo -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 8 05:05:29 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 08 Mar 2024 04:05:29 +0000 Subject: [Koha-bugs] [Bug 33268] Overlay rules don't work correctly when source is set to * In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33268 Victor Grousset/tuxayo changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #162803|0 |1 is obsolete| | --- Comment #59 from Victor Grousset/tuxayo --- Created attachment 162938 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162938&action=edit Bug 33268: Overlay rules don't work correctly when source is set to * Fallback to overlay rules with wildcard filter if no match found for exact filter match. To test: 1. Administration => record overlay rules 2. Add this: Module Filter Tag Preset Added Appended Removed Deleted Source Z39.50 245 Protect Skip Skip Skip Skip Source * 300 Protect Skip Skip Skip Skip Source Batch record modification 245 Protect Skip Skip Skip Skip 3. Add MARC modification templates: Update existing or add new field 245$a with value CATSCATSCATSCATS Update existing or add new field 300$a with value CATSCATSCATSCATS 4. Find a record that has those fields (likely any record would) 5. Use batch record modification on the record 6. 300$a should have been catified (expected, that's the bug) 7. 245$a is preserved 8. Change the value of the 300$a to something else. Temporarly disable MARCOverlayRules to be able to do so. And reenable it. 9. Apply the patch, restart services 10. Use batch record modification on the record 11. 300$a should be preserved, cat protection should have worked 12. Run tests: prove t/db_dependent/Biblio/MarcOverlayRules.t 13. Celebrate! :D Sponsored-by: Gothenburg University Library Signed-off-by: David Nind Signed-off-by: Tomas Cohen Arazi Edit: tidied inline (tcohen) Signed-off-by: Martin Renvoize Signed-off-by: Victor Grousset/tuxayo -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 8 05:06:08 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 08 Mar 2024 04:06:08 +0000 Subject: [Koha-bugs] [Bug 33268] Overlay rules don't work correctly when source is set to * In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33268 Victor Grousset/tuxayo changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #162804|0 |1 is obsolete| | --- Comment #60 from Victor Grousset/tuxayo --- Created attachment 162939 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162939&action=edit Bug 33268: If rules exists add rules to preserve current behavior Signed-off-by: Victor Grousset/tuxayo -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 8 05:06:44 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 08 Mar 2024 04:06:44 +0000 Subject: [Koha-bugs] [Bug 33268] Overlay rules don't work correctly when source is set to * In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33268 Victor Grousset/tuxayo changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #162805|0 |1 is obsolete| | --- Comment #61 from Victor Grousset/tuxayo --- Created attachment 162940 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162940&action=edit Bug 33268: (QA follow-up): tidy up code -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 8 06:06:32 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 08 Mar 2024 05:06:32 +0000 Subject: [Koha-bugs] [Bug 33268] Overlay rules don't work correctly when source is set to * In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33268 Victor Grousset/tuxayo changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Needs Signoff |Signed Off --- Comment #62 from Victor Grousset/tuxayo --- It works :) -- @QA here is an example of the changes from the DB upgrade on the data used in test plan: +----+-----+--------+----------+-----+--------+--------+--------+ | id | tag | module | filter | add | append | remove | delete | +----+-----+--------+----------+-----+--------+--------+--------+ | 2 | 245 | source | z3950 | 0 | 0 | 0 | 0 | | 3 | 300 | source | * | 0 | 0 | 0 | 0 | | 4 | 245 | source | batchmod | 0 | 0 | 0 | 0 | +----+-----+--------+----------+-----+--------+--------+--------+ ↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓ +----+-----+--------+----------+-----+--------+--------+--------+ | id | tag | module | filter | add | append | remove | delete | +----+-----+--------+----------+-----+--------+--------+--------+ | 2 | 245 | source | z3950 | 0 | 0 | 0 | 0 | | 3 | 300 | source | * | 0 | 0 | 0 | 0 | | 4 | 245 | source | batchmod | 0 | 0 | 0 | 0 | | 12 | * | source | z3950 | 1 | 1 | 1 | 1 | | 13 | * | source | batchmod | 1 | 1 | 1 | 1 | +----+-----+--------+----------+-----+--------+--------+--------+ --- @David G. to address Comment 28 's point 3 (release notes) you can look at latest release announcement: https://koha-community.org/koha-23-11-released/ Some tickets have grey boxes with text. That's from the "Text to go in the release notes" field here. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 8 06:35:07 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 08 Mar 2024 05:35:07 +0000 Subject: [Koha-bugs] [Bug 33898] background_jobs_worker.pl may leave defunct children processes for extended periods of time In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33898 --- Comment #14 from Victor Grousset/tuxayo --- (In reply to David Cook from comment #13) > To get child zombie processes reaped, you'd just need to stop the parent process. Then the child process gets inherited by PID 1 and they'll get reaped. In other words @Asymar just restart the koha services (plack more specifically). I think it's here: https://wiki.koha-community.org/wiki/Commands_provided_by_the_Debian_packages#koha-plack -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 8 06:47:05 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 08 Mar 2024 05:47:05 +0000 Subject: [Koha-bugs] [Bug 36280] New: Viewing batch of staged records broken: CSRF token error Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36280 Bug ID: 36280 Summary: Viewing batch of staged records broken: CSRF token error Change sponsored?: --- Product: Koha Version: master Hardware: All OS: All Status: NEW Severity: normal Priority: P5 - low Component: Cataloging Assignee: koha-bugs at lists.koha-community.org Reporter: victor at tuxayo.net QA Contact: testopia at bugs.koha-community.org CC: m.de.rooy at rijksmuseum.nl 1. Stage a batch 2. When it's done, click on "view batch" 3. Page loads but pops an alert that says "403: Forbidden" and table stays empty network tool show an XHR to /cgi-bin/koha/tools/batch_records_ajax.pl that returns 403. The content can be save in an HTML file and opened to show a page that says: > An error has occurred! > Error 403 > Programming error - No CSRF token passed for POST Going to "Manage staged MARC records" and view an existing batch has the same outcome. -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 8 06:47:31 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 08 Mar 2024 05:47:31 +0000 Subject: [Koha-bugs] [Bug 36280] Viewing batch of staged records broken: CSRF token error In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36280 Victor Grousset/tuxayo changed: What |Removed |Added ---------------------------------------------------------------------------- Depends on| |34478 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=34478 [Bug 34478] Full CSRF protection -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Fri Mar 8 06:47:31 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 08 Mar 2024 05:47:31 +0000 Subject: [Koha-bugs] [Bug 34478] Full CSRF protection In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=34478 Victor Grousset/tuxayo changed: What |Removed |Added ---------------------------------------------------------------------------- Blocks| |36280 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36280 [Bug 36280] Viewing batch of staged records broken: CSRF token error -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 8 07:03:31 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 08 Mar 2024 06:03:31 +0000 Subject: [Koha-bugs] [Bug 33898] background_jobs_worker.pl may leave defunct children processes for extended periods of time In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33898 Victor Grousset/tuxayo changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #153194|0 |1 is obsolete| | --- Comment #15 from Victor Grousset/tuxayo --- Created attachment 162941 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162941&action=edit Bug 33898: background_jobs_worker.pl may leave defunct children processes for extended periods of time It appears that the background jobs worker can leave defunct processes for periods of time. Though it is mostly harmless, it would be nice if that did not happen. Children are reaped automatically when start or wait_all_children are called. We only call start when a new job is found, and wait_all_children after exiting our while loop. The solution is to simply call reap_all_children after we sleep. This is a non-blocking call that will clean up those defunct processes. Test Plan: 1) Disable Rabbit 2) Set background_jobs_worker/max_processes to something like 5 3) Restart all the things! 4) Run a bunch of elastic index updates 5) Verify you have defunct processes 6) Apply this patch 7) Run more elastic index updates 8) Defunct processes should disappear every 10 seconds or so! If you do not see defunct processes, the test plan is to simply verify everything continues to work as expected. Signed-off-by: Emily Lamancusa Signed-off-by: Victor Grousset/tuxayo Used Asymar's test plan from comment 12. (based on record import) -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 8 07:12:35 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 08 Mar 2024 06:12:35 +0000 Subject: [Koha-bugs] [Bug 33898] background_jobs_worker.pl may leave defunct children processes for extended periods of time In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33898 --- Comment #16 from Victor Grousset/tuxayo --- Thanks Asymar for your test plan, it's very simple and I was able to reproduce the issue and confirm that the patch prevents it. So with comment 12's test plan, there one zombie at the time. It's killed when the next staging/import starts. And a new zombie will stay at the end of the operation. So that blocking point is no more. (unless the elastic index update based test plan shows something more subtle or impactful that would benefit from being tested) Remaining is «there seems to be some discussion about implementation». -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 8 08:36:54 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 08 Mar 2024 07:36:54 +0000 Subject: [Koha-bugs] [Bug 33898] background_jobs_worker.pl may leave defunct children processes for extended periods of time In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33898 --- Comment #17 from Marcel de Rooy --- In the above test plan Elastic is used, but note that those updates do not go via the regular worker script. There is another one (with more ore less the same code). Still to be merged :) -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 8 08:38:42 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 08 Mar 2024 07:38:42 +0000 Subject: [Koha-bugs] [Bug 33898] background_jobs_worker.pl may leave defunct children processes for extended periods of time In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33898 --- Comment #18 from Marcel de Rooy --- Created attachment 162942 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162942&action=edit Bug 33898: Alternative approach with receive frame timeout See bug 33898 comment6. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 8 08:52:21 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 08 Mar 2024 07:52:21 +0000 Subject: [Koha-bugs] [Bug 33898] background_jobs_worker.pl may leave defunct children processes for extended periods of time In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33898 Marcel de Rooy changed: What |Removed |Added ---------------------------------------------------------------------------- Patch complexity|--- |Small patch -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 8 08:52:24 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 08 Mar 2024 07:52:24 +0000 Subject: [Koha-bugs] [Bug 33898] background_jobs_worker.pl may leave defunct children processes for extended periods of time In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33898 Marcel de Rooy changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #162942|0 |1 is obsolete| | --- Comment #19 from Marcel de Rooy --- Created attachment 162943 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162943&action=edit Bug 33898: Alternative approach with receive frame timeout See bug 33898 comment6. Test plan: Based on comment12: Stage MARC import and manage. Look at the same time to the results of ps aux|grep Z. Verify that the lines with [background_jobs] disappear within 10 seconds. Signed-off-by: Marcel de Rooy -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 8 08:53:53 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 08 Mar 2024 07:53:53 +0000 Subject: [Koha-bugs] [Bug 33898] background_jobs_worker.pl may leave defunct children processes for extended periods of time In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33898 --- Comment #20 from Marcel de Rooy --- The alternative patch addresses the issues raised earlier on the use of signals and follows the suggestions of David. Kyle, Victor and Asymar: Would this work for you? Note that you should apply only the second patch as an alternative for the first one. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 8 08:57:44 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 08 Mar 2024 07:57:44 +0000 Subject: [Koha-bugs] [Bug 33898] background_jobs_worker.pl may leave defunct children processes for extended periods of time In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33898 --- Comment #21 from Marcel de Rooy --- Created attachment 162944 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162944&action=edit Bug 33898: (follow-up) Apply same solution to es_indexer_daemon Test plan: Similar as first patch with Elastic index jobs. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 8 09:01:06 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 08 Mar 2024 08:01:06 +0000 Subject: [Koha-bugs] [Bug 33898] background_jobs_worker.pl may leave defunct children processes for extended periods of time In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33898 Marcel de Rooy changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #162944|0 |1 is obsolete| | --- Comment #22 from Marcel de Rooy --- Comment on attachment 162944 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162944 Bug 33898: (follow-up) Apply same solution to es_indexer_daemon Oops this still needs a bit of attention -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 8 09:01:54 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 08 Mar 2024 08:01:54 +0000 Subject: [Koha-bugs] [Bug 33898] background_jobs_worker.pl may leave defunct children processes for extended periods of time In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33898 --- Comment #23 from Marcel de Rooy --- (In reply to Marcel de Rooy from comment #22) > Comment on attachment 162944 [details] [review] > Bug 33898: (follow-up) Apply same solution to es_indexer_daemon > > Oops this still needs a bit of attention Ah I see $pm is not even used in the es_indexer_daemon.. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 8 09:15:31 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 08 Mar 2024 08:15:31 +0000 Subject: [Koha-bugs] [Bug 36176] [23.11 and below] We need tests to check for 'cud-' operations in stable branches (pre-24.05) In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36176 Fridolin Somers changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Passed QA |Pushed to stable CC| |fridolin.somers at biblibre.co | |m Version(s)| |23.11.04 released in| | --- Comment #9 from Fridolin Somers --- Pushed to 23.11.x for 23.11.04 -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 8 09:16:08 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 08 Mar 2024 08:16:08 +0000 Subject: [Koha-bugs] [Bug 33544] Squash some ILL fields to alleviate request table overflow In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33544 Martin Renvoize changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #159528|0 |1 is obsolete| | --- Comment #14 from Martin Renvoize --- Created attachment 162945 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162945&action=edit Bug 33544: Replace title details with one column Combine the request title details fields into onea column for display. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 8 09:16:10 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 08 Mar 2024 08:16:10 +0000 Subject: [Koha-bugs] [Bug 33544] Squash some ILL fields to alleviate request table overflow In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33544 Martin Renvoize changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #159529|0 |1 is obsolete| | --- Comment #15 from Martin Renvoize --- Created attachment 162946 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162946&action=edit Bug 33544: Update columns_settings.yml Wonder if year should be out of the details? In case we want to sort by year, its not sortable anyway at the moment but we need to keep in mind that fields bundled here will not be sortable. It does not seem to cause any issues on searching at first glance, at least. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 8 09:16:13 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 08 Mar 2024 08:16:13 +0000 Subject: [Koha-bugs] [Bug 33544] Squash some ILL fields to alleviate request table overflow In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33544 Martin Renvoize changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #159530|0 |1 is obsolete| | --- Comment #16 from Martin Renvoize --- Created attachment 162947 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162947&action=edit Bug 33544: Link title in details to biblio This patch removes the biblio id column and instead adds the biblio link to the title field in the request details column when appropriate. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 8 09:17:05 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 08 Mar 2024 08:17:05 +0000 Subject: [Koha-bugs] [Bug 33544] Squash some ILL fields to alleviate request table overflow In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33544 --- Comment #17 from Martin Renvoize --- Just a quick rebase here now that master has moved again.. I couldn't replicate your bug I'm afraid though Lisette. I'll try to swing back around and dig a little deeper when I get a moment. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 8 09:24:58 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 08 Mar 2024 08:24:58 +0000 Subject: [Koha-bugs] [Bug 35248] Bookings needs unit tests In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35248 --- Comment #67 from Martin Renvoize --- I just applied the whole tree this morning against the current master and it was seamless.. not sure what problems your facing? -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 8 09:36:07 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 08 Mar 2024 08:36:07 +0000 Subject: [Koha-bugs] [Bug 2244] RFID Cataloguing - Programming RFID tags from Koha In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=2244 Jan Kissig changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |bibliothek at th-wildau.de --- Comment #10 from Jan Kissig --- if there is any -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Fri Mar 8 10:35:56 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 08 Mar 2024 09:35:56 +0000 Subject: [Koha-bugs] [Bug 35604] ILL - Allow for automatic backend selection In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35604 Pedro Amorim changed: What |Removed |Added ---------------------------------------------------------------------------- Depends on|35725 |36221 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35725 [Bug 35725] ILL - Generic master form does not keep patron and cardnumber when changing type https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36221 [Bug 36221] Improve styling of Standard backend create OPAC form -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 8 10:35:56 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 08 Mar 2024 09:35:56 +0000 Subject: [Koha-bugs] [Bug 35725] ILL - Generic master form does not keep patron and cardnumber when changing type In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35725 Pedro Amorim changed: What |Removed |Added ---------------------------------------------------------------------------- Blocks|35604 | Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35604 [Bug 35604] ILL - Allow for automatic backend selection -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 8 10:35:56 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 08 Mar 2024 09:35:56 +0000 Subject: [Koha-bugs] [Bug 36221] Improve styling of Standard backend create OPAC form In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36221 Pedro Amorim changed: What |Removed |Added ---------------------------------------------------------------------------- Blocks| |35604 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35604 [Bug 35604] ILL - Allow for automatic backend selection -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 8 10:57:34 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 08 Mar 2024 09:57:34 +0000 Subject: [Koha-bugs] [Bug 35862] Display patron search result on the right of the form (modal) In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35862 --- Comment #7 from Martin Renvoize --- I like the 100% myself. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 8 11:00:43 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 08 Mar 2024 10:00:43 +0000 Subject: [Koha-bugs] [Bug 30657] Make patron attributes available via Template Toolkit in overdues In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30657 Martin Renvoize changed: What |Removed |Added ---------------------------------------------------------------------------- Blocks| |36270 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36270 [Bug 36270] Remove special handling for <> -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 8 11:00:43 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 08 Mar 2024 10:00:43 +0000 Subject: [Koha-bugs] [Bug 36270] Remove special handling for <> In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36270 Martin Renvoize changed: What |Removed |Added ---------------------------------------------------------------------------- Depends on| |30657 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30657 [Bug 30657] Make patron attributes available via Template Toolkit in overdues -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 8 11:01:15 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 08 Mar 2024 10:01:15 +0000 Subject: [Koha-bugs] [Bug 30657] Make patron attributes available via Template Toolkit in overdues In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30657 Martin Renvoize changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |kyle at bywatersolutions.com, | |martin.renvoize at ptfs-europe | |.com Blocks|36270 | Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36270 [Bug 36270] Remove special handling for <> -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Fri Mar 8 11:01:15 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 08 Mar 2024 10:01:15 +0000 Subject: [Koha-bugs] [Bug 36270] Remove special handling for <> In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36270 Martin Renvoize changed: What |Removed |Added ---------------------------------------------------------------------------- Depends on|30657 | Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30657 [Bug 30657] Make patron attributes available via Template Toolkit in overdues -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 8 11:10:25 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 08 Mar 2024 10:10:25 +0000 Subject: [Koha-bugs] [Bug 32611] Not for loan items don't show the specific not for loan value in OPAC detail page In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=32611 Fridolin Somers changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |fridolin.somers at biblibre.co | |m See Also| |https://bugs.koha-community | |.org/bugzilla3/show_bug.cgi | |?id=32445 -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 8 11:10:25 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 08 Mar 2024 10:10:25 +0000 Subject: [Koha-bugs] [Bug 32445] Status display of 'not for loan' items is broken in OPAC/staff In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=32445 Fridolin Somers changed: What |Removed |Added ---------------------------------------------------------------------------- See Also| |https://bugs.koha-community | |.org/bugzilla3/show_bug.cgi | |?id=32611 -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 8 11:13:48 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 08 Mar 2024 10:13:48 +0000 Subject: [Koha-bugs] [Bug 33575] Add table settings to the holds table for a specific record in the staff interface In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33575 lasse.pouru at koha-suomi.fi changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |lasse.pouru at koha-suomi.fi --- Comment #17 from lasse.pouru at koha-suomi.fi --- Is there a reason why pagination is explicitly turned off ("bPaginate":false)? -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 8 11:20:53 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 08 Mar 2024 10:20:53 +0000 Subject: [Koha-bugs] [Bug 30657] Make patron attributes available via Template Toolkit in overdues In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30657 --- Comment #7 from Martin Renvoize --- There are already a couple of options here I believe.. but I think we should perhaps make it simpler/clearer. You can use all accessors available from the Koha::Patron object assuming you've been passed said object into the template. We have a few different attribute accessors: * 'extended_attributes' which returns a resultset of attached extended attributes * 'get_extended_attribute(code)' which returns the attribute associated with the code passed (but doesn't work properly for repeatable attributes) To use those in TT: * [% FOREACH extendedattribute IN patron.extended_attributes %]
  • [% extendedattribute.type.description | html %]: [% extendedattribute.description | html %]
  • [% END %] * [% SET attribute = patron.get_extended_attribute('code') %] [% attribute.description | html %] The second one is clearly simpler to use, but only works for non-repeatable attributes so you need to know a little about the underlying patron data setup. I also think it's a get wordy 'get_' and would prefer, I think, to have a simple 'extended_attribute($code)' accessor. -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 8 11:21:00 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 08 Mar 2024 10:21:00 +0000 Subject: [Koha-bugs] [Bug 36221] Improve styling of Standard backend create OPAC form In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36221 Pedro Amorim changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #162934|0 |1 is obsolete| | -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 8 11:21:01 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 08 Mar 2024 10:21:01 +0000 Subject: [Koha-bugs] [Bug 36221] Improve styling of Standard backend create OPAC form In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36221 Pedro Amorim changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #162933|0 |1 is obsolete| | -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 8 11:21:10 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 08 Mar 2024 10:21:10 +0000 Subject: [Koha-bugs] [Bug 36221] Improve styling of Standard backend create OPAC form In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36221 Pedro Amorim changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #162716|1 |0 is obsolete| | -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 8 11:21:13 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 08 Mar 2024 10:21:13 +0000 Subject: [Koha-bugs] [Bug 36221] Improve styling of Standard backend create OPAC form In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36221 Pedro Amorim changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #162715|1 |0 is obsolete| | -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 8 11:22:10 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 08 Mar 2024 10:22:10 +0000 Subject: [Koha-bugs] [Bug 36221] Improve styling of Standard backend create OPAC form In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36221 Pedro Amorim changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #162715|0 |1 is obsolete| | --- Comment #5 from Pedro Amorim --- Created attachment 162948 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162948&action=edit Bug 36221: Preparation This refactors the code for more DRY Signed-off-by: Lisette Scheer -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 8 11:22:13 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 08 Mar 2024 10:22:13 +0000 Subject: [Koha-bugs] [Bug 36221] Improve styling of Standard backend create OPAC form In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36221 Pedro Amorim changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #162716|0 |1 is obsolete| | --- Comment #6 from Pedro Amorim --- Created attachment 162949 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162949&action=edit Bug 36221: OPAC Styling Test plan, dont apply patches yet: 1) Enable ILLModule 2) Create a new OPAC ILL request, visit: /cgi-bin/koha/opac-illrequests.pl?method=create&backend=Standard 3) Notice the style. Apply patches. Repeat Signed-off-by: Lisette Scheer -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 8 11:22:51 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 08 Mar 2024 10:22:51 +0000 Subject: [Koha-bugs] [Bug 36221] Improve styling of Standard backend create OPAC form In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36221 --- Comment #7 from Pedro Amorim --- Patches became out of order after Lisette's sign-off and did not apply. It's now fixed. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 8 11:33:11 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 08 Mar 2024 10:33:11 +0000 Subject: [Koha-bugs] [Bug 30657] Make patron attributes available via Template Toolkit in overdues In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30657 --- Comment #8 from Martin Renvoize --- Annoyingly the extended_attributes accessor is also set to be a setter which means it won't pass through any filters you want to pass.. we should really rectify that. In my opinion we should have two simple accessors that both accept standard dbic query filters. * extended_attributes($where, $attr); * extended_attribute($where,$attr); We wrap our DBIx::Clas objects and thus remove the nice easy scalar handling of _rs on accessors which means we also have to deal with that in 'clever' ways at the TT level.. I can't remember the details for that off the top of my head though. We really need to document all this better somewhere in short. -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 8 11:44:14 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 08 Mar 2024 10:44:14 +0000 Subject: [Koha-bugs] [Bug 36281] New: Restricted info is displayed even if item is not restricted (OPAC details) Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36281 Bug ID: 36281 Summary: Restricted info is displayed even if item is not restricted (OPAC details) Change sponsored?: --- Product: Koha Version: master Hardware: All OS: All Status: NEW Severity: normal Priority: P5 - low Component: OPAC Assignee: oleonard at myacpl.org Reporter: fridolin.somers at biblibre.com QA Contact: testopia at bugs.koha-community.org If you define a description for restricted = 0 : In OPAC details, restricted info is displayed even if item is not restricted (value 0). -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 8 11:44:32 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 08 Mar 2024 10:44:32 +0000 Subject: [Koha-bugs] [Bug 36281] Restricted info is displayed even if item is not restricted (OPAC details) In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36281 Fridolin Somers changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |ASSIGNED Depends on| |32445 --- Comment #1 from Fridolin Somers --- Since Bug 32445 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=32445 [Bug 32445] Status display of 'not for loan' items is broken in OPAC/staff -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 8 11:44:32 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 08 Mar 2024 10:44:32 +0000 Subject: [Koha-bugs] [Bug 32445] Status display of 'not for loan' items is broken in OPAC/staff In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=32445 Fridolin Somers changed: What |Removed |Added ---------------------------------------------------------------------------- Blocks| |36281 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36281 [Bug 36281] Restricted info is displayed even if item is not restricted (OPAC details) -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 8 11:44:38 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 08 Mar 2024 10:44:38 +0000 Subject: [Koha-bugs] [Bug 36281] Restricted info is displayed even if item is not restricted (OPAC details) In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36281 Fridolin Somers changed: What |Removed |Added ---------------------------------------------------------------------------- Assignee|oleonard at myacpl.org |fridolin.somers at biblibre.co | |m -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 8 11:51:46 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 08 Mar 2024 10:51:46 +0000 Subject: [Koha-bugs] [Bug 36281] Restricted info is displayed even if item is not restricted (OPAC details) In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36281 Fridolin Somers changed: What |Removed |Added ---------------------------------------------------------------------------- Patch complexity|--- |Trivial patch Status|ASSIGNED |Needs Signoff -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 8 11:51:48 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 08 Mar 2024 10:51:48 +0000 Subject: [Koha-bugs] [Bug 36281] Restricted info is displayed even if item is not restricted (OPAC details) In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36281 --- Comment #2 from Fridolin Somers --- Created attachment 162950 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162950&action=edit Bug 36281: Display restricted info only if item is not restricted (OPAC details) If you define a description for restricted = 0 : In OPAC details, restricted info is displayed even if item is not restricted (value 0). This patch fixes by adding 'IF item.restricted'. Also creates a BLOCK to avoid code duplication. Also adds span around status text to create easier translation. Test plan : 1) Create a description in restricted autorised values category for value 0 2) Create a description in restricted autorised values category for value 1 3) Edit an biblio record to add an item with restricted=0 and an item with restricted=1 4) Display this biblio on OPAC details page => Check you see resticted info only for restricted item -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 8 11:57:41 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 08 Mar 2024 10:57:41 +0000 Subject: [Koha-bugs] [Bug 35920] Centralize code from workers In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35920 Marcel de Rooy changed: What |Removed |Added ---------------------------------------------------------------------------- Assignee|koha-bugs at lists.koha-commun |m.de.rooy at rijksmuseum.nl |ity.org | -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 8 11:58:18 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 08 Mar 2024 10:58:18 +0000 Subject: [Koha-bugs] [Bug 35920] Centralize code from workers In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35920 --- Comment #8 from Marcel de Rooy --- Giving this a try on top of 33898 -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 8 11:58:33 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 08 Mar 2024 10:58:33 +0000 Subject: [Koha-bugs] [Bug 35920] Centralize code from workers In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35920 Marcel de Rooy changed: What |Removed |Added ---------------------------------------------------------------------------- Depends on| |33898 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33898 [Bug 33898] background_jobs_worker.pl may leave defunct children processes for extended periods of time -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 8 11:58:33 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 08 Mar 2024 10:58:33 +0000 Subject: [Koha-bugs] [Bug 33898] background_jobs_worker.pl may leave defunct children processes for extended periods of time In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33898 Marcel de Rooy changed: What |Removed |Added ---------------------------------------------------------------------------- Blocks| |35920 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35920 [Bug 35920] Centralize code from workers -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 8 12:03:25 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 08 Mar 2024 11:03:25 +0000 Subject: [Koha-bugs] [Bug 35920] Centralize code from workers In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35920 Marcel de Rooy changed: What |Removed |Added ---------------------------------------------------------------------------- Patch complexity|--- |Small patch -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 8 12:03:28 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 08 Mar 2024 11:03:28 +0000 Subject: [Koha-bugs] [Bug 35920] Centralize code from workers In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35920 --- Comment #9 from Marcel de Rooy --- Created attachment 162951 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162951&action=edit Bug 35920: Centralize worker code Test plan: Confirm that running jobs still works as expected. Restart workers and try to stage a MARC file and import it. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 8 12:03:30 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 08 Mar 2024 11:03:30 +0000 Subject: [Koha-bugs] [Bug 35920] Centralize code from workers In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35920 --- Comment #10 from Marcel de Rooy --- Created attachment 162952 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162952&action=edit Bug 35920: Use BackgroundWorker in es_indexer_daemon This needs incorporating the batch_size in the main loop. Test plan: Test both regular worker and es indexer daemon here. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 8 12:05:32 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 08 Mar 2024 11:05:32 +0000 Subject: [Koha-bugs] [Bug 35920] Centralize code from workers In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35920 Marcel de Rooy changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |nick at bywatersolutions.com -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 8 12:06:19 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 08 Mar 2024 11:06:19 +0000 Subject: [Koha-bugs] [Bug 35920] Centralize code from workers In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35920 --- Comment #11 from Marcel de Rooy --- (In reply to Jonathan Druart from comment #1) > This is WIP. We need bug 35819 pushed first, then to clean this, it is not > very nice. But at least it will prevent the code to be duplicated. Hmm. Didnt notice your patch when I did something similar with patch 2 and 3.. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 8 12:08:24 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 08 Mar 2024 11:08:24 +0000 Subject: [Koha-bugs] [Bug 33898] background_jobs_worker.pl may leave defunct children processes for extended periods of time In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33898 Kyle M Hall changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Failed QA |Signed Off -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 8 12:08:26 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 08 Mar 2024 11:08:26 +0000 Subject: [Koha-bugs] [Bug 33898] background_jobs_worker.pl may leave defunct children processes for extended periods of time In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33898 Kyle M Hall changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #162941|0 |1 is obsolete| | Attachment #162943|0 |1 is obsolete| | --- Comment #24 from Kyle M Hall --- Created attachment 162953 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162953&action=edit Bug 33898: Alternative approach with receive frame timeout See bug 33898 comment6. Test plan: Based on comment12: Stage MARC import and manage. Look at the same time to the results of ps aux|grep Z. Verify that the lines with [background_jobs] disappear within 10 seconds. Signed-off-by: Marcel de Rooy Signed-off-by: Kyle M Hall -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 8 12:08:33 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 08 Mar 2024 11:08:33 +0000 Subject: [Koha-bugs] [Bug 33898] background_jobs_worker.pl may leave defunct children processes for extended periods of time In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33898 --- Comment #25 from Kyle M Hall --- Created attachment 162954 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162954&action=edit Bug 33898: Implement reaping for database polling Signed-off-by: Kyle M Hall -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 8 12:40:53 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 08 Mar 2024 11:40:53 +0000 Subject: [Koha-bugs] [Bug 35716] Duplicated assets in both koha-tmpl/intra-tmpl and koha-tmpl/opac-tmpl In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35716 Pedro Amorim changed: What |Removed |Added ---------------------------------------------------------------------------- See Also| |https://bugs.koha-community | |.org/bugzilla3/show_bug.cgi | |?id=36282 -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 8 12:40:53 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 08 Mar 2024 11:40:53 +0000 Subject: [Koha-bugs] [Bug 36282] New: OPAC - Remove trailing and leading blank space from translated strings Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36282 Bug ID: 36282 Summary: OPAC - Remove trailing and leading blank space from translated strings Change sponsored?: --- Product: Koha Version: master Hardware: All OS: All Status: NEW Severity: enhancement Priority: P5 - low Component: Templates Assignee: pedro.amorim at ptfs-europe.com Reporter: pedro.amorim at ptfs-europe.com QA Contact: testopia at bugs.koha-community.org CC: david at davidnind.com, martin.renvoize at ptfs-europe.com, oleonard at myacpl.org -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 8 12:40:53 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 08 Mar 2024 11:40:53 +0000 Subject: [Koha-bugs] [Bug 26816] Remove extra space before comma in staff results item list In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=26816 Pedro Amorim changed: What |Removed |Added ---------------------------------------------------------------------------- See Also| |https://bugs.koha-community | |.org/bugzilla3/show_bug.cgi | |?id=36282 -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 8 12:42:51 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 08 Mar 2024 11:42:51 +0000 Subject: [Koha-bugs] [Bug 36282] OPAC - Remove trailing and leading blank space from translated strings In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36282 --- Comment #1 from Pedro Amorim --- The 2 files have diverged in logic: opac-tmpl/bootstrap/en/includes/i18n.inc koha-tmpl/bootstrap/en/includes/i18n.inc Adding bug 35716 as "See also" as this logic should ideally be DRY. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 8 12:46:36 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 08 Mar 2024 11:46:36 +0000 Subject: [Koha-bugs] [Bug 35357] Item not removed from holds queue when checked out to a different patron In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35357 --- Comment #22 from Kyle M Hall --- (In reply to Victor Grousset/tuxayo from comment #21) > (In reply to Katrin Fischer from comment #19) > > Just wondering about the direct SQL in this patch. > > We do have HoldsQueueItems.pm - should we not be able to use a delete? > > Indeed it seems so , thanks for seeing that. > > @Kyle: up for a follow up patch? I can open the ticket. Using DBIC to find and delete the lines in the two tables will result in 4 queries compared to the one query we have now. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 8 12:49:10 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 08 Mar 2024 11:49:10 +0000 Subject: [Koha-bugs] [Bug 36282] OPAC - Remove trailing and leading blank space from translated strings In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36282 Pedro Amorim changed: What |Removed |Added ---------------------------------------------------------------------------- Patch complexity|--- |Trivial patch Status|NEW |Needs Signoff -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 8 12:49:12 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 08 Mar 2024 11:49:12 +0000 Subject: [Koha-bugs] [Bug 36282] OPAC - Remove trailing and leading blank space from translated strings In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36282 --- Comment #2 from Pedro Amorim --- Created attachment 162955 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162955&action=edit Bug 36282: [DO NOT PUSH] For test plan only -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 8 12:49:14 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 08 Mar 2024 11:49:14 +0000 Subject: [Koha-bugs] [Bug 36282] OPAC - Remove trailing and leading blank space from translated strings In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36282 --- Comment #3 from Pedro Amorim --- Created attachment 162956 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162956&action=edit Bug 36282: Chomp whitespace around opac i18n strings Same logic as bug 26816 but to OPAC Test plan: 1) Apply test plan patch only 2) Visit opac home: /cgi-bin/koha/opac-main.pl 3) Notice there's a space between 'Translated string' and ':', even though the markup does not contain a whitespace 4) Apply 2nd patch 5) Notice the white space is gone -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 8 12:49:40 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 08 Mar 2024 11:49:40 +0000 Subject: [Koha-bugs] [Bug 36282] OPAC - Remove trailing and leading blank space from translated strings In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36282 Pedro Amorim changed: What |Removed |Added ---------------------------------------------------------------------------- Blocks| |36221 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36221 [Bug 36221] Improve styling of Standard backend create OPAC form -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 8 12:49:40 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 08 Mar 2024 11:49:40 +0000 Subject: [Koha-bugs] [Bug 36221] Improve styling of Standard backend create OPAC form In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36221 Pedro Amorim changed: What |Removed |Added ---------------------------------------------------------------------------- Depends on| |36282 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36282 [Bug 36282] OPAC - Remove trailing and leading blank space from translated strings -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 8 12:59:06 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 08 Mar 2024 11:59:06 +0000 Subject: [Koha-bugs] [Bug 35364] Update serials pop-up windows with consistent footer markup In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35364 Kyle M Hall changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |kyle at bywatersolutions.com Status|Signed Off |Patch doesn't apply -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 8 13:03:18 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 08 Mar 2024 12:03:18 +0000 Subject: [Koha-bugs] [Bug 36013] update_totalissues.pl should not log In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36013 Magnus Enger changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |magnus at libriotech.no --- Comment #3 from Magnus Enger --- I had a problem where a bad record would stop the script from completing: $ misc/cronjobs/update_totalissues.pl --use-stats --commit=1000 -v Processing bib 1 (0 issues) Processing bib 2 (0 issues) Processing bib 3 (0 issues) ... Processing bib 368 (0 issues) Processing bib 369 (0 issues) :8: parser error : PCDATA invalid Char value 31 00aD000015937 ^ :9: parser error : PCDATA invalid Char value 31 00satmrnu0 ^ :9: parser error : PCDATA invalid Char value 31 00satmrnu0 ^ :9: parser error : PCDATA invalid Char value 31 00satmrnu0 ^ :9: parser error : PCDATA invalid Char value 31 00satmrnu0 ^ :10: parser error : PCDATA invalid Char value 31 00ar19881981bdkldan After deleting that record the script runs as it should: ... Processing bib 437 (0 issues) Processing bib 438 (0 issues) Update total issues count script report ======================================================= Run started at: 03/08/24 11:48:53 Run ended at: 03/08/24 11:48:57 Total run time: 4751 ms Number of bibs modified: 435 Number of bibs with error: 0 After this the cataloguing log shows one entry per record, so that will quickley amount to a lot of unnecessary data! -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 8 13:04:52 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 08 Mar 2024 12:04:52 +0000 Subject: [Koha-bugs] [Bug 36013] update_totalissues.pl should not log In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36013 Magnus Enger changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Needs Signoff |Signed Off -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 8 13:04:55 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 08 Mar 2024 12:04:55 +0000 Subject: [Koha-bugs] [Bug 36013] update_totalissues.pl should not log In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36013 Magnus Enger changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #161797|0 |1 is obsolete| | --- Comment #4 from Magnus Enger --- Created attachment 162957 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162957&action=edit Bug 36013: update_totalissues.pl should not log Even when CataloguingLog is on, misc/cronjobs/update_totalissues.pl should not log the changes. It is useless and takes database space. Do like bulkmarcimport.pl : https://git.koha-community.org/Koha-community/Koha/src/branch/23.11.x/misc/migration_tools/bulkmarcimport.pl#L165 Test plan : 1) Enable system preference CataloguingLog 2) Perform some issues and returns 3) Run : misc/cronjobs/update_totalissues.pl --use-stats --commit=1000 -v 4) Go to Tools > Log viewer 5) Check there are no new cataloguing logs Signed-off-by: Magnus Enger Works as advertised. Before the patch, running the script adds one entry to action_logs per record, with the patch nothing is logged. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 8 13:05:48 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 08 Mar 2024 12:05:48 +0000 Subject: [Koha-bugs] [Bug 35153] Convert IntranetmainUserblock system preference to additional contents In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35153 Kyle M Hall changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Signed Off |Passed QA -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 8 13:05:50 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 08 Mar 2024 12:05:50 +0000 Subject: [Koha-bugs] [Bug 35153] Convert IntranetmainUserblock system preference to additional contents In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35153 Kyle M Hall changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #159721|0 |1 is obsolete| | --- Comment #4 from Kyle M Hall --- Created attachment 162958 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162958&action=edit Bug 35153: Convert IntranetmainUserblock system preference to additional contents This patch moves the IntranetmainUserblock system preference into HTML customizations, making it possible to have language- and library-specific content. To test you should have some content in the IntranetmainUserblock system preference before applying the patch. Apply the patch and run the database update process. - In the staff client, go to Tools -> HTML customizations and verify that the content from IntranetmainUserblock is now stored there. - The HTML customization entry form should offer IntranetmainUserblock as a choice under "Display location." - Update and reinstall active translations (for instance fr-FR): - perl misc/translator/translate update fr-FR - perl misc/translator/translate install fr-FR - Enable the translation if necessary under Administration -> System preferences -> language. - Edit the IntranetmainUserblock HTML customization and add unique content to the "fr-FR" tab. - Go to the staff client home page. You should see the content you added to the IntranetmainUserblock HTML customization. - Switch to your updated translation and confirm that the content you added for your translation shows up correctly. - Go to Administration -> System preferences and search for "IntranetmainUserblock." It should return no results. Signed-off-by: David Nind Signed-off-by: Kyle M Hall -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 8 13:45:40 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 08 Mar 2024 12:45:40 +0000 Subject: [Koha-bugs] [Bug 35920] Centralize code from workers In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35920 --- Comment #12 from Jonathan Druart --- (In reply to Marcel de Rooy from comment #11) > (In reply to Jonathan Druart from comment #1) > > This is WIP. We need bug 35819 pushed first, then to clean this, it is not > > very nice. But at least it will prevent the code to be duplicated. > > Hmm. Didnt notice your patch when I did something similar with patch 2 and > 3.. Too bad to duplicate the effort again. And so what? The goal of my approach was to split Rabbit and DBMS. And also move broker's responsibilities out of Koha::BackgroundJob -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 8 13:48:28 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 08 Mar 2024 12:48:28 +0000 Subject: [Koha-bugs] [Bug 35862] Display patron search result on the right of the form (modal) In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35862 Jonathan Druart changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Signed Off |Passed QA -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 8 13:48:31 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 08 Mar 2024 12:48:31 +0000 Subject: [Koha-bugs] [Bug 35862] Display patron search result on the right of the form (modal) In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35862 Jonathan Druart changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #162862|0 |1 is obsolete| | --- Comment #8 from Jonathan Druart --- Created attachment 162959 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162959&action=edit Bug 35862: Display modal search results to the right of form above 1200px To test: 1. Apply patch 2. Rebuild CSS ( yarn build ) 3. Look at some of the places where there is a modal patron search. -suggestion/suggestion.pl: Set to patron -members/memberentry.pl: Add guarantor 4. Make sure the modal looks good before and after you have searched for a patron. 5. Play with many different screen sizes, ensuring everything looks good and makes sense. Signed-off-by: Martin Renvoize Signed-off-by: Jonathan Druart -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 8 13:54:54 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 08 Mar 2024 12:54:54 +0000 Subject: [Koha-bugs] [Bug 36195] CSRF - testing reports In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36195 --- Comment #4 from Jonathan Druart --- Created attachment 162960 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162960&action=edit Bug 36195: Replace POST batch_records_ajax.pl with GET We retrieve a list of records for DT, it does not need to be a POST request. Test plan: 1. Stage a batch 2. When it's done, click on "view batch" => Without this patch the page loads but pops an alert that says "403: Forbidden" and table stays empty -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Fri Mar 8 13:54:54 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 08 Mar 2024 12:54:54 +0000 Subject: [Koha-bugs] [Bug 36280] Viewing batch of staged records broken: CSRF token error In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36280 Jonathan Druart changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution|--- |DUPLICATE CC| |jonathan.druart at gmail.com --- Comment #1 from Jonathan Druart --- *** This bug has been marked as a duplicate of bug 36195 *** -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 8 13:56:05 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 08 Mar 2024 12:56:05 +0000 Subject: [Koha-bugs] [Bug 14806] Action Log for Modifying borrower messaging preferences In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=14806 Lari Strand changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Patch doesn't apply |Needs Signoff -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 8 13:56:08 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 08 Mar 2024 12:56:08 +0000 Subject: [Koha-bugs] [Bug 14806] Action Log for Modifying borrower messaging preferences In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=14806 Lari Strand changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #94749|0 |1 is obsolete| | Attachment #94752|0 |1 is obsolete| | --- Comment #13 from Lari Strand --- Created attachment 162961 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162961&action=edit Bug 14806 - Log changes to borrower message preferences to action logs To test: 1. Change patron's messaging preference/preferences and save 2. Note no entries in patron's modification log 3. Apply patch 4. Change patron's messaging preference/preferences and save 5. Note entries in patron's modification log, one per message type -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 8 14:02:44 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 08 Mar 2024 13:02:44 +0000 Subject: [Koha-bugs] [Bug 14806] Action Log for Modifying borrower messaging preferences In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=14806 Lari Strand changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |lmstrand at gmail.com --- Comment #14 from Lari Strand --- Mine's a bit hacky but does the job and the added code stays inside the module responsible for the modification process (Messaging.pm). The entries are not in line with other modification logs but they are readable :). -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 8 14:17:26 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 08 Mar 2024 13:17:26 +0000 Subject: [Koha-bugs] [Bug 36235] System preferences chopping everything after a semicolon. In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36235 --- Comment #5 from Jonathan Druart --- (In reply to Lucas Gass from comment #4) > I just converted Jonathan's diff into a patch. Did it fix your problem? -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 8 15:01:00 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 08 Mar 2024 14:01:00 +0000 Subject: [Koha-bugs] [Bug 36122] NEW_SUGGESTION is sent for every modification to the suggestion In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36122 Matthias Le Gac changed: What |Removed |Added ---------------------------------------------------------------------------- Status|ASSIGNED |Needs Signoff -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 8 15:01:03 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 08 Mar 2024 14:01:03 +0000 Subject: [Koha-bugs] [Bug 36122] NEW_SUGGESTION is sent for every modification to the suggestion In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36122 --- Comment #6 from Matthias Le Gac --- Created attachment 162962 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162962&action=edit Bug 36122: NEW_SUGGESTION is sent for every modification to the suggestion Test plan : To recreate: 1. Enable EmailPurchaseSuggestions 2. Go to a patron's account and add an email address, a different one than the one used for EmailPurchaseSuggestions 3. Create a suggestion from the OPAC 3.1. Go to the OPAC and log in as a patron 3.2. Go to Your account > Purchase suggestions 3.3. Click New purchase suggestion 3.4. Enter a title 3.5. Click Submit your suggestion 4. Check the message_queue, there should be one NEW_SUGGESTION message sent to whichever address you chose in EmailPurchaseSuggestions (in a fresh db, there should be 1 entry in message_queue) 5. Update the suggestion to accepted 5.1. In the staff interface, go to Acquisitions > Suggestions 5.2. In the suggestions list, check the box next to the suggestion 5.3. At the bottom of the screen, choose Mark selected as: Accepted 5.4. Click Submit 6. Check the message_queue again, there should be one ACCEPTED message sent to the patron and a new NEW_SUGGESTION message sent to whichever address you chose in EmailPurchaseSuggestions (in a fresh db, there should now be 3 entries in message_queue) 7. Order the suggestion 7.1. Go to Acquisitions 7.2. Search for a vendor 7.3. Click New > Basket 7.4. Enter a basket name (Optional: for testing I like to change Create items when: cataloging the record) 7.5. Click Save 7.6. Click Add to basket 7.7. Click From a suggestion 7.8. Click Order next to the suggestion 7.9. Enter order details 7.10. Click Save 7.11. Click Close basket 7.12. Click Yes, close 8. Check the message_queue again, there should be one ORDERED message sent to the patron and a new NEW_SUGGESTION message sent to whichever address you chose in EmailPurchaseSuggestions (in a fresh db, there should now be 5 entries in message_queue) 9. Apply the patch 10. now repeat steps 3 to 8 but : step 4 you have one NEW_SUGGESTION message in message_queue step 6 you have only one ACCEPTED message in message_queue step 8 you have only one ORDERED message in message_queue The NEW_SUGGESTION are now sent only on the submit of the suggestion and not on each steps. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 8 15:05:02 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 08 Mar 2024 14:05:02 +0000 Subject: [Koha-bugs] [Bug 36122] NEW_SUGGESTION is sent for every modification to the suggestion In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36122 Martin Renvoize changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |martin.renvoize at ptfs-europe | |.com Status|Needs Signoff |Failed QA --- Comment #7 from Martin Renvoize --- Can we have a Unit test for this please. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 8 15:25:51 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 08 Mar 2024 14:25:51 +0000 Subject: [Koha-bugs] [Bug 36270] Remove special handling for <> In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36270 --- Comment #6 from Martin Renvoize --- Do you have any clues on how often it's used with repeatable attributes Lucas? -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 8 15:33:41 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 08 Mar 2024 14:33:41 +0000 Subject: [Koha-bugs] [Bug 35840] Local use is double-counted when using both RecordLocalUseOnReturn and statistical patrons In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35840 Martin Renvoize changed: What |Removed |Added ---------------------------------------------------------------------------- QA Contact|m.de.rooy at rijksmuseum.nl |martin.renvoize at ptfs-europe | |.com -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 8 15:34:38 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 08 Mar 2024 14:34:38 +0000 Subject: [Koha-bugs] [Bug 35840] Local use is double-counted when using both RecordLocalUseOnReturn and statistical patrons In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35840 Martin Renvoize changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #161732|0 |1 is obsolete| | --- Comment #34 from Martin Renvoize --- Created attachment 162963 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162963&action=edit Bug 35840: Add option to AddReturn to skip recording of localuse To test: 1. APPLY PATCH, restart_all 2. Turn on RecordLocalUseOnReturn 3. Create a Statistical patron. 4. Check an item out to a regular patron. 5. Check the item out to a Statistical patron. 6. This should trigger a return and you will see 2 entries in the statistics table, one for localuse and one for a return. 7. Try checking out an item to the Stats patron that is NOT checked out. 8. You should only see 1 entry, localuse, in the statistics table. Signed-off-by: Andrew Fuerste Henry Signed-off-by: Martin Renvoize -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 8 15:34:41 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 08 Mar 2024 14:34:41 +0000 Subject: [Koha-bugs] [Bug 35840] Local use is double-counted when using both RecordLocalUseOnReturn and statistical patrons In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35840 Martin Renvoize changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #161733|0 |1 is obsolete| | --- Comment #35 from Martin Renvoize --- Created attachment 162964 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162964&action=edit Bug 35840: Add unit tests Signed-off-by: Andrew Fuerste Henry Signed-off-by: Martin Renvoize -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 8 15:35:30 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 08 Mar 2024 14:35:30 +0000 Subject: [Koha-bugs] [Bug 35840] Local use is double-counted when using both RecordLocalUseOnReturn and statistical patrons In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35840 Martin Renvoize changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Signed Off |Passed QA --- Comment #36 from Martin Renvoize --- All working well and tested. Passing QA -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 8 15:37:59 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 08 Mar 2024 14:37:59 +0000 Subject: [Koha-bugs] [Bug 36235] System preferences chopping everything after a semicolon. In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36235 --- Comment #6 from Lucas Gass --- (In reply to Jonathan Druart from comment #5) > (In reply to Lucas Gass from comment #4) > > I just converted Jonathan's diff into a patch. > > Did it fix your problem? Yes. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 8 15:42:51 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 08 Mar 2024 14:42:51 +0000 Subject: [Koha-bugs] [Bug 35840] Local use is double-counted when using both RecordLocalUseOnReturn and statistical patrons In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35840 --- Comment #37 from Martin Renvoize --- Created attachment 162965 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162965&action=edit Bug 35840: (QA follow-up) Tidy and critic fix -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 8 15:43:17 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 08 Mar 2024 14:43:17 +0000 Subject: [Koha-bugs] [Bug 36283] New: Autoswitch behavior change after 22.11.15 upgrade Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36283 Bug ID: 36283 Summary: Autoswitch behavior change after 22.11.15 upgrade Change sponsored?: --- Product: Koha Version: 22.11 Hardware: All OS: All Status: NEW Severity: minor Priority: P5 - low Component: Circulation Assignee: koha-bugs at lists.koha-community.org Reporter: chad at pennmanor.net QA Contact: testopia at bugs.koha-community.org CC: gmcharlt at gmail.com, kyle.m.hall at gmail.com In Koha 22.11.15 a librarian is reporting to us the audio tone when using the autoswitch functionality switched to the "error" beep. Previously this was not the case. To reproduce: 1. Make sure AutoSwitchPatron is enabled 2. Pull up a patron on cgi-bin/koha/circ/circulation.pl 3. Scan another patron barcode into the check out "Enter item barcode" field 4. The system should successfully switch to the scanned patron however it will play the error audio file. At the moment I'm not setup with any other koha machines to test newer releases. Thanks! -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Fri Mar 8 15:44:17 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 08 Mar 2024 14:44:17 +0000 Subject: [Koha-bugs] [Bug 9015] BiblioAddsAuthorities should probably be set to "allow" by default In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=9015 Myka Kennedy Stephens changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |mkstephens at fosgail.org Status|NEW |In Discussion --- Comment #2 from Myka Kennedy Stephens --- I'm doing some research on authority bugs and ran across this old one. There isn't a syspref called "BiblioAddsAuthorities" anymore. Based on the description in this bug, I'm guessing this syspref was rendered unnecessary by AutoCreateAuthorities and RequireChoosingExistingAuthority. Marking as "In Discussion," but I'm wondering if this bug could actually be marked "Resolved"? What does the community do with old bugs that are obsolete or no longer relevant? -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 8 15:46:37 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 08 Mar 2024 14:46:37 +0000 Subject: [Koha-bugs] [Bug 36284] New: Patron search within record place holds page limit by letter does not work Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36284 Bug ID: 36284 Summary: Patron search within record place holds page limit by letter does not work Change sponsored?: --- Product: Koha Version: master Hardware: All OS: All Status: NEW Severity: normal Priority: P5 - low Component: Hold requests Assignee: koha-bugs at lists.koha-community.org Reporter: kyle at bywatersolutions.com QA Contact: testopia at bugs.koha-community.org CC: gmcharlt at gmail.com When searching for a patron to place a hold on, the letters that are meant to display all patrons with a surname starting with that letter do not function correctly. Instead all patrons are listed. -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Fri Mar 8 15:57:18 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 08 Mar 2024 14:57:18 +0000 Subject: [Koha-bugs] [Bug 35950] Move the handling of statistics patron logic out of CanBookBeIssued In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35950 Martin Renvoize changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #162686|0 |1 is obsolete| | --- Comment #8 from Martin Renvoize --- Created attachment 162966 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162966&action=edit Bug 35950: Move AddReturn call into circulation.pl There should be no change in beahavior. Following the test plan from Bug 35840. To test: 1. APPLY PATCH, restart_all 2. Turn on RecordLocalUseOnReturn 3. Create a Statistical patron. 4. Check an item out to a regular patron. 5. Check the item out to a Statistical patron. 6. This should trigger a return and you will see 2 entries in the statistics table, one for localuse and one for a return. 7. Try checking out an item to the Stats patron that is NOT checked out. 8. You should only see 1 entry, localuse, in the statistics table. Signed-off-by: Andrew Fuerste Henry Signed-off-by: Martin Renvoize -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 8 15:57:21 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 08 Mar 2024 14:57:21 +0000 Subject: [Koha-bugs] [Bug 35950] Move the handling of statistics patron logic out of CanBookBeIssued In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35950 Martin Renvoize changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #162687|0 |1 is obsolete| | --- Comment #9 from Martin Renvoize --- Created attachment 162967 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162967&action=edit Bug 35950: Adjust tests Signed-off-by: Andrew Fuerste Henry Signed-off-by: Martin Renvoize -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 8 15:57:41 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 08 Mar 2024 14:57:41 +0000 Subject: [Koha-bugs] [Bug 35950] Move the handling of statistics patron logic out of CanBookBeIssued In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35950 Martin Renvoize changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Signed Off |Passed QA --- Comment #10 from Martin Renvoize --- Thanks Lucas, all looks good here, Passing QA -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 8 15:57:59 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 08 Mar 2024 14:57:59 +0000 Subject: [Koha-bugs] [Bug 33174] Have better indication when one is cancelling multiple holds on a record In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33174 Kyle M Hall changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Signed Off |Passed QA -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 8 15:58:01 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 08 Mar 2024 14:58:01 +0000 Subject: [Koha-bugs] [Bug 33174] Have better indication when one is cancelling multiple holds on a record In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33174 Kyle M Hall changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #147989|0 |1 is obsolete| | --- Comment #6 from Kyle M Hall --- Created attachment 162968 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162968&action=edit Bug 33174: Add warning about how many holds are being cancelled To test: 1. Apply patch 2. Find or make a record with many holds on it. 3. Go to the Holds tab ( request.pl ). 4. Select some hodls to cancel and press "Cancel selected" 5. A modal popup will appear. Notice the warning telling you exactly how many holds you are about to cancel. Confirm the count is accurate. 6. Try using the select all button and make sure the warning is accurate. 7. Make sure you can cancel the holds. Signed-off-by: Sally Signed-off-by: Kyle M Hall -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 8 15:58:18 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 08 Mar 2024 14:58:18 +0000 Subject: [Koha-bugs] [Bug 16122] Item record needs to keep local use count In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=16122 Martin Renvoize changed: What |Removed |Added ---------------------------------------------------------------------------- Status|BLOCKED |Needs Signoff CC| |martin.renvoize at ptfs-europe | |.com -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 8 15:58:38 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 08 Mar 2024 14:58:38 +0000 Subject: [Koha-bugs] [Bug 16122] Item record needs to keep local use count In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=16122 Martin Renvoize changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Needs Signoff |Signed Off -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 8 16:05:31 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 08 Mar 2024 15:05:31 +0000 Subject: [Koha-bugs] [Bug 30657] Make patron attributes available via Template Toolkit in overdues In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30657 Martin Renvoize changed: What |Removed |Added ---------------------------------------------------------------------------- Keywords| |Hackfest -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 8 16:09:54 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 08 Mar 2024 15:09:54 +0000 Subject: [Koha-bugs] [Bug 36285] New: Staff UI form fieldset styling needs update Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36285 Bug ID: 36285 Summary: Staff UI form fieldset styling needs update Change sponsored?: --- Product: Koha Version: master Hardware: All OS: All Status: NEW Severity: enhancement Priority: P5 - low Component: Staff interface Assignee: koha-bugs at lists.koha-community.org Reporter: pedro.amorim at ptfs-europe.com QA Contact: testopia at bugs.koha-community.org CC: gmcharlt at gmail.com -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Fri Mar 8 16:10:22 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 08 Mar 2024 15:10:22 +0000 Subject: [Koha-bugs] [Bug 36285] Staff UI form fieldset styling needs update In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36285 Pedro Amorim changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |caroline.cyr-la-rose at inlibr | |o.com, david at davidnind.com, | |jonathan.druart at gmail.com, | |katrin.fischer at bsz-bw.de, | |martin.renvoize at ptfs-europe | |.com, oleonard at myacpl.org -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 8 16:12:37 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 08 Mar 2024 15:12:37 +0000 Subject: [Koha-bugs] [Bug 36285] Staff UI form fieldset styling needs update In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36285 --- Comment #1 from Pedro Amorim --- Created attachment 162969 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162969&action=edit Bug 36285: [PoC] Move ERM specific styling to all of koha Staff forms This is just a proof of concept 1) Before applying the patch, access some (or all) of the links below. 2) Apply patch 3) Run yarn css:build to rebuild scss 4) Refresh each of the pages and notice the changes Some form examples: /cgi-bin/koha/acqui/supplier.pl?op=enter /cgi-bin/koha/serials/serials-home.pl /cgi-bin/koha/serials/subscription-add.pl /cgi-bin/koha/erm/eholdings/local/titles/add /cgi-bin/koha/virtualshelves/shelves.pl?op=add_form&referer=list /cgi-bin/koha/suggestion/suggestion.pl?op=add_form&branchcode=CPL Side menu changes: /cgi-bin/koha/members/members-home.pl /cgi-bin/koha/serials/serials-search.pl # Press Search A problem arises for some inputs that have the size property e.g. size="4" on the new purchase suggestion form, and others. With this new change, these inputs lose their initial enforced "smaller" size. I think this should be iterated and made more streamlined and use a .input-small class of the size. -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Fri Mar 8 16:14:01 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 08 Mar 2024 15:14:01 +0000 Subject: [Koha-bugs] [Bug 36285] Staff UI form fieldset styling needs update In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36285 Pedro Amorim changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |In Discussion --- Comment #2 from Pedro Amorim --- Hey all, I've submitted a PoC patch for discussion. Would be great to have others opinions on this to better make the judgement call if this is worth investing more time into or not. -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Fri Mar 8 16:21:59 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 08 Mar 2024 15:21:59 +0000 Subject: [Koha-bugs] [Bug 36221] Improve styling of Standard backend create OPAC form In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36221 --- Comment #8 from Pedro Amorim --- Created attachment 162970 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162970&action=edit Bug 36221: Move patron section to top of create form -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 8 16:22:02 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 08 Mar 2024 15:22:02 +0000 Subject: [Koha-bugs] [Bug 36221] Improve styling of Standard backend create OPAC form In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36221 --- Comment #9 from Pedro Amorim --- Created attachment 162971 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162971&action=edit Bug 36221: Update 'Create' button class btn-primary should be used here, not btn-default -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 8 16:24:22 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 08 Mar 2024 15:24:22 +0000 Subject: [Koha-bugs] [Bug 36221] Improve styling of Standard backend create OPAC form In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36221 --- Comment #10 from Pedro Amorim --- Thank you for looking and sign-off, Lisette! However I've revisited and added 2 additional patches in case you're available to take a look at those too! Cheers! -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 8 16:32:44 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 08 Mar 2024 15:32:44 +0000 Subject: [Koha-bugs] [Bug 36012] ERM/Agreements_spec.ts is failing if run too slow (?) In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36012 --- Comment #10 from Katrin Fischer --- (In reply to Katrin Fischer from comment #9) > It looks like this just happened in our last run on Jenkins, it would be > great to have a fix: > > https://jenkins.koha-community.org/job/Koha_Master/lastCompletedBuild/ > testReport/(root)/Should%20correctly%20display%20labels/ > Infinite_scroll_Should_correctly_display_labels/ Wrong link, but was the same problem as posted here previously. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 8 16:37:25 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 08 Mar 2024 15:37:25 +0000 Subject: [Koha-bugs] [Bug 34631] Independentbranches - Non-superuser should not be able to write Additional contents for other branches In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=34631 Matthias Le Gac changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Failed QA |Needs Signoff -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 8 16:37:28 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 08 Mar 2024 15:37:28 +0000 Subject: [Koha-bugs] [Bug 34631] Independentbranches - Non-superuser should not be able to write Additional contents for other branches In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=34631 Matthias Le Gac changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #154890|0 |1 is obsolete| | --- Comment #19 from Matthias Le Gac --- Created attachment 162972 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162972&action=edit Bug 34631: Independentbranches - Non-superuser should not be able to write Additional contents for other branches When syspref Independentbranches is enabled Non-superuser should not be able to write Additional contents for other branches To reproduce: 1- Connect to staff interface as superlibrarian 2- Enable IndependentBranches preference 3- Go to Tools -> HTML customizations 4- Crete an additional content for all libraries 5- Create or edit a borrower 5-1- Set permission for the borrower - catalogue - edit_additional_contents 4- Log in to the staff interface with the non-superlibrarian staff user 5- Go to Tools -> HTML customizations --> you can delete or edit the additional contents created by superlibrarian for All libraries 6- Click on New entry --> you can add additional content for other branches 7- Apply the patch 8- Repeat step 5 --> you cannot delete or edit the additional contents create by superlibrarian for All libraries 9- Repeat step 6 --> you cannot add additional content for other branches 10- submit the form --> the branch of the created additional content is the current user branch -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 8 16:42:12 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 08 Mar 2024 15:42:12 +0000 Subject: [Koha-bugs] [Bug 34631] Independentbranches - Non-superuser should not be able to write Additional contents for other branches In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=34631 --- Comment #20 from Matthias Le Gac --- Sorry for the confusion, I was working on an old master's DB, so I hadn't seen the change of a field in the DB that broke everything. Normally the problem is solved I managed to make the test plan. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 8 16:43:04 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 08 Mar 2024 15:43:04 +0000 Subject: [Koha-bugs] [Bug 35394] Tone down "!!A booking exists!!" a bit In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35394 --- Comment #3 from Martin Renvoize --- Created attachment 162973 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162973&action=edit Bug 35394: Correction to booked items logic This patch fixes the overly extreme message that was designed to appeared when someone tried to check out a booked item to the wrong user. However, the message never appeared due to a logic error within CanBookBeIssued which this patch also resolved. Test plan 1) Make an item bookable 2) Add a booking for the item to patron A from tomorrow 3) In the database, update the booking start_date to today (or wait a day before the next step) 4) Attempt to check the book out to patron B. Note that you are displayed with the new message 'The item is booked for another patron' and you are unable to check the item out. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 8 16:44:10 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 08 Mar 2024 15:44:10 +0000 Subject: [Koha-bugs] [Bug 35394] Correct the message displayed when attempting to checkout an item during it's booking period In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35394 Martin Renvoize changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |Needs Signoff Summary|Tone down "!!A booking |Correct the message |exists!!" a bit |displayed when attempting | |to checkout an item during | |it's booking period -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 8 16:44:16 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 08 Mar 2024 15:44:16 +0000 Subject: [Koha-bugs] [Bug 35394] Correct the message displayed when attempting to checkout an item during it's booking period In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35394 Martin Renvoize changed: What |Removed |Added ---------------------------------------------------------------------------- Severity|trivial |normal -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 8 17:05:59 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 08 Mar 2024 16:05:59 +0000 Subject: [Koha-bugs] [Bug 35426] Improve layout of bookings modal form In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35426 Martin Renvoize changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |martin.renvoize at ptfs-europe | |.com --- Comment #5 from Martin Renvoize --- I'm not sure I agree this looks better... now it's pushed the modal looks more odd to me than it did before. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 8 17:07:45 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 08 Mar 2024 16:07:45 +0000 Subject: [Koha-bugs] [Bug 35169] Make long overdue borrower category options configurable in interface In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35169 --- Comment #15 from Matthias Le Gac --- (In reply to Lisette Scheer from comment #14) > Currently, you can set different lengths for different patrons, running the > cron multiple times with different settings. Ideally a solution in the staff > interface would also allow this. This + the option to add different settings > at the patron category level with different settings would be ideal: > > longoverdue.pl --skip-category PT --lost 14=2 --confirm > longoverdue.pl --skip-category PT2 --lost 21=2 --confirm Currently, you can't set different values for DefaultLongOverdueLostValue and DefaultLongOverdueLostValue from the interface. So it's not possible to have two longoverdue.pl running at the same time if they're set from the interface. So I think it would be an improvement on all longoverdue.pl system preferences, not just on categories. I'm not sure it's directly related to this bz. Tell me what you think? For presition longoverdue.pl doesn't allow DefaultLongOverdueBorrowerCategories and DefaultLongOverdueSkipBorrowerCategories to be used at the same time. If they are used at the same time, DefaultLongOverdueSkipBorrowerCategories will override DefaultLongOverdueBorrowerCategories. -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Fri Mar 8 17:15:04 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 08 Mar 2024 16:15:04 +0000 Subject: [Koha-bugs] [Bug 35426] Improve layout of bookings modal form In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35426 --- Comment #6 from Martin Renvoize --- Created attachment 162974 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162974&action=edit Old vs New -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 8 17:15:52 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 08 Mar 2024 16:15:52 +0000 Subject: [Koha-bugs] [Bug 35426] Improve layout of bookings modal form In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35426 --- Comment #7 from Martin Renvoize --- Can we do better here in general for modal based forms Owen? -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 8 17:16:49 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 08 Mar 2024 16:16:49 +0000 Subject: [Koha-bugs] [Bug 36235] System preferences chopping everything after a semicolon. In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36235 Pedro Amorim changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #162778|0 |1 is obsolete| | --- Comment #7 from Pedro Amorim --- Created attachment 162975 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162975&action=edit Bug 36235: Encode system preference data with encodeURIComponent To test: 1. Add some data to a freetext system preference like IntranetUserJS or AdditionalFieldsInZ3950ResultAuthSearch that includes a semicolon; 2. Save the pref and reload the page or check the DB. Everything after the semicolon is removed. 3. Apply patch, try again. Data should remain as is. Signed-off-by: Pedro Amorim -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 8 17:17:50 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 08 Mar 2024 16:17:50 +0000 Subject: [Koha-bugs] [Bug 36235] System preferences chopping everything after a semicolon. In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36235 Pedro Amorim changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |david at davidnind.com, | |katrin.fischer at bsz-bw.de, | |martin.renvoize at ptfs-europe | |.com, | |pedro.amorim at ptfs-europe.co | |m Keywords| |regression Severity|critical |blocker --- Comment #8 from Pedro Amorim --- I stumbled upon this by chance while copying intranetuserjs from a live environment to my own local test environment. This should be QAd and/or pushed asap. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 8 17:17:55 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 08 Mar 2024 16:17:55 +0000 Subject: [Koha-bugs] [Bug 36235] System preferences chopping everything after a semicolon. In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36235 Pedro Amorim changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Needs Signoff |Signed Off -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 8 17:18:18 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 08 Mar 2024 16:18:18 +0000 Subject: [Koha-bugs] [Bug 35426] Improve layout of bookings modal form In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35426 --- Comment #8 from Martin Renvoize --- In fact.. all the modals I've created that include a form use 'rows' rather than 'brief' and personally I think they're clearer looking.. see all the modals available on the accounts pages? -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 8 17:25:36 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 08 Mar 2024 16:25:36 +0000 Subject: [Koha-bugs] [Bug 36012] ERM/Agreements_spec.ts is failing if run too slow (?) In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36012 --- Comment #11 from Katrin Fischer --- I totally missed the patch here, because the status was still NEW. I've tested it locally and will push it to see if it fixes Jenkins. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 8 17:25:43 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 08 Mar 2024 16:25:43 +0000 Subject: [Koha-bugs] [Bug 36012] ERM/Agreements_spec.ts is failing if run too slow (?) In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36012 Katrin Fischer changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |Needs Signoff -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 8 17:29:52 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 08 Mar 2024 16:29:52 +0000 Subject: [Koha-bugs] [Bug 36012] ERM/Agreements_spec.ts is failing if run too slow (?) In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36012 Katrin Fischer changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Needs Signoff |Signed Off -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 8 17:29:58 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 08 Mar 2024 16:29:58 +0000 Subject: [Koha-bugs] [Bug 36012] ERM/Agreements_spec.ts is failing if run too slow (?) In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36012 Katrin Fischer changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Signed Off |Passed QA -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 8 17:30:57 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 08 Mar 2024 16:30:57 +0000 Subject: [Koha-bugs] [Bug 36286] New: Add ability to upload files/images in Preservation Module Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36286 Bug ID: 36286 Summary: Add ability to upload files/images in Preservation Module Change sponsored?: --- Product: Koha Version: unspecified Hardware: All OS: All Status: NEW Severity: enhancement Priority: P5 - low Component: Preservation Assignee: koha-bugs at lists.koha-community.org Reporter: angela.berrett at familysearch.org QA Contact: testopia at bugs.koha-community.org CC: jonathan.druart at gmail.com The ability to upload binding and/or repair photos or documents for preservation steps in the Preservation Module, with the ability to attach them to specific bib records if possible, would be very helpful when sharing preservation techniques and instructions across branches. It will also help with consistency when binding within collections over time. These can be limited-size files, or limited to specific image types: PNG vs JPG, etc. -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Fri Mar 8 17:34:50 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 08 Mar 2024 16:34:50 +0000 Subject: [Koha-bugs] [Bug 30657] Make patron attributes available via Template Toolkit in overdues In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30657 --- Comment #9 from Katrin Fischer --- > In my opinion we should have two simple accessors that both accept standard > dbic query filters. > > * extended_attributes($where, $attr); > * extended_attribute($where,$attr); I like the look of this and I think you have made a very good point to make it easier to use. This will help people creating notices, but also be generally useful. In your example code: $attr would be the attribute code. What is $where here? -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 8 17:35:15 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 08 Mar 2024 16:35:15 +0000 Subject: [Koha-bugs] [Bug 36120] Add pickup locations to Bookings In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36120 --- Comment #22 from Martin Renvoize --- Created attachment 162976 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162976&action=edit Bug 36120: Ensure existing bookings are assigned a pickup library -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 8 17:37:52 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 08 Mar 2024 16:37:52 +0000 Subject: [Koha-bugs] [Bug 36285] Staff UI form fieldset styling needs update In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36285 --- Comment #3 from Martin Renvoize --- I was looking at forms inside modals this afternoon and I'd love to see some consistency improvements there too ;) -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Fri Mar 8 17:38:03 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 08 Mar 2024 16:38:03 +0000 Subject: [Koha-bugs] [Bug 35357] Item not removed from holds queue when checked out to a different patron In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35357 --- Comment #23 from Katrin Fischer --- (In reply to Kyle M Hall from comment #22) > (In reply to Victor Grousset/tuxayo from comment #21) > > (In reply to Katrin Fischer from comment #19) > > > Just wondering about the direct SQL in this patch. > > > We do have HoldsQueueItems.pm - should we not be able to use a delete? > > > > Indeed it seems so , thanks for seeing that. > > > > @Kyle: up for a follow up patch? I can open the ticket. > > Using DBIC to find and delete the lines in the two tables will result in 4 > queries compared to the one query we have now. Hi Kyle, can you explain a bit more about those extra queries if you can? I'd like to understand the issue better and learn. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 8 17:43:59 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 08 Mar 2024 16:43:59 +0000 Subject: [Koha-bugs] [Bug 30657] Make patron attributes available via Template Toolkit in overdues In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30657 --- Comment #10 from Martin Renvoize --- Sorry, I wasn't clear with what those parameters meant. They're a fairly standard pair of names for dbix query parameters.. i.e where is the SQL abstract where "field => value", then attr is other conditions like joins. But that give perhaps more complication than end users in notices want.. it's a balance between simplicity and functionality. -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 8 17:49:45 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 08 Mar 2024 16:49:45 +0000 Subject: [Koha-bugs] [Bug 15278] [Omnibus] Port default slips and notices from bespoke syntax to Template Toolkit In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=15278 Emily Lamancusa changed: What |Removed |Added ---------------------------------------------------------------------------- Assignee|kyle at bywatersolutions.com |emily.lamancusa at montgomeryc | |ountymd.gov --- Comment #11 from Emily Lamancusa --- All notices that still use the old bespoke syntax in their default notice text now have a linked bug on this omnibus. I grouped similar notices together in some cases when I felt it made sense, though they can be further split out in dependent bugs if needed. (Reminder that here we are focused only on updating the default notice text and making sure that all notices CAN be rendered with Template Toolkit, not on documentation (see bug 34472) or deprecating the existing functionality (bug 15279)) Many of the notices should be largely trivial to update to Template Toolkit syntax - the underlying code is already there, and it's just a matter of replacing a few lines in the sample notice itself. However, there are some that will need work on the underlying code before they can be recreated with Template Toolkit. Should be trivial to update: Bug 35925 - Port default purchase suggestion notices to Template Toolkit Bug 36020 - Port default recall notices to Template Toolkit Bug 36106 - Port default PREDUE and DUE notices to Template Toolkit Bug 36110 - Port default OVERDUES_SLIP to Template Toolkit syntax Bug 36112 - Port default CHECKOUT_NOTE notice to Template Toolkit syntax Bug 36113 - Port default RENEWAL notice to Template Toolkit syntax Bug 36114 - Port default TRANSFERSLIP notice to Template Toolkit syntax Bug 36124 - Port default Article Request notices to Template Toolkit syntax Bug 36125 - Port default HOLD_SLIP notice to Template Toolkit syntax Bug 36126 - Port default HOLD notice to Template Toolkit syntax Bug 36127 - Port default HOLDPLACED and HOLD_CHANGED notices to Template Toolkit syntax Bug 36253 - Port default acquisition notices to Template Toolkit syntax Bug 36255 - Port default OPAC_REG_VERIFY notice to Template Toolkit syntax Bug 36256 - Port default MEMBERSHIP_EXPIRY notice to Template Toolkit syntax Bug 36257 - Port default DISCHARGE notice to Template Toolkit syntax Bug 36259 - Port default SERIAL_ALERT notice to Template Toolkit syntax Bug 36260 - Port default PROBLEM_REPORT notice to Template Toolkit syntax Need work on the underlying code: Bug 15283 - Switch default ISSUEQSLIP notice to Template Toolkit Bug 15284 - Switch default ISSUESLIP notice to Template Toolkit Bug 36107 - Port default DUEDGST and PREDUEDGST notices to Template Toolkit Bug 36109 - Port default ODUE notice to Template Toolkit Bug 36254 - Port default PASSWORD_RESET and STAFF_PASSWORD_RESET notices to Template Toolkit syntax Bug 36258 - Port default SHARE_ACCEPT and SHARE_INVITE notices to Template Toolkit syntax -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 8 17:50:26 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 08 Mar 2024 16:50:26 +0000 Subject: [Koha-bugs] [Bug 36262] Under an item's status, provide the shelving location drop down menu In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36262 Angela Berrett changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |angela.berrett at familysearch | |.org --- Comment #1 from Angela Berrett --- +1 -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Fri Mar 8 17:54:02 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 08 Mar 2024 16:54:02 +0000 Subject: [Koha-bugs] [Bug 36233] Cannot search invoices if too many vendors In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36233 Angela Berrett changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |angela.berrett at familysearch | |.org -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 8 17:59:50 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 08 Mar 2024 16:59:50 +0000 Subject: [Koha-bugs] [Bug 35718] Remove ES6 warnings from JavaScript system preferences In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35718 Katrin Fischer changed: What |Removed |Added ---------------------------------------------------------------------------- Severity|enhancement |minor -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 8 18:00:26 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 08 Mar 2024 17:00:26 +0000 Subject: [Koha-bugs] [Bug 36032] The "Next" pagination button has a double instead of a single angle In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36032 Katrin Fischer changed: What |Removed |Added ---------------------------------------------------------------------------- Severity|enhancement |trivial -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 8 18:01:02 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 08 Mar 2024 17:01:02 +0000 Subject: [Koha-bugs] [Bug 35346] 'Accept essential cookies' should always appear if CookieConsent is enabled In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35346 Katrin Fischer changed: What |Removed |Added ---------------------------------------------------------------------------- Severity|enhancement |minor -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 8 18:01:26 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 08 Mar 2024 17:01:26 +0000 Subject: [Koha-bugs] [Bug 35347] 'More information' should always display in cookie consent bar In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35347 Katrin Fischer changed: What |Removed |Added ---------------------------------------------------------------------------- Severity|enhancement |minor -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 8 18:01:38 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 08 Mar 2024 17:01:38 +0000 Subject: [Koha-bugs] [Bug 35538] List of libraries on OPAC self registration form should sort by branchname rather than branchcode In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35538 Katrin Fischer changed: What |Removed |Added ---------------------------------------------------------------------------- Severity|enhancement |trivial -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 8 18:09:25 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 08 Mar 2024 17:09:25 +0000 Subject: [Koha-bugs] [Bug 35347] 'More information' should always display in cookie consent bar In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35347 Katrin Fischer changed: What |Removed |Added ---------------------------------------------------------------------------- Severity|minor |enhancement -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 8 18:09:46 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 08 Mar 2024 17:09:46 +0000 Subject: [Koha-bugs] [Bug 35346] 'Accept essential cookies' should always appear if CookieConsent is enabled In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35346 Katrin Fischer changed: What |Removed |Added ---------------------------------------------------------------------------- Severity|minor |enhancement -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 8 18:17:36 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 08 Mar 2024 17:17:36 +0000 Subject: [Koha-bugs] [Bug 15278] [Omnibus] Port default slips and notices from bespoke syntax to Template Toolkit In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=15278 --- Comment #12 from Emily Lamancusa --- One more thing to consider: do we just update the default text in sample_notices.yml for new installations at this point, or do we also include dbrevs for existing installations that use the default notice text? Normally, we don't update the default notice text for existing installations unless there is a breaking change. However, since the goal is to eventually deprecate the old syntax, which will be a breaking change, it might be better to update the defaults on both new and existing installations together... It will be unavoidable for libraries with customized notices to need to update their own notices eventually. However, I'm sure there are libraries who rely on the default notices and may not be familiar with customizing their notices at all, and I could see it being a major issue if a large number of their notices, which they haven't touched, stop working. One could argue that we should wait until we actually introduce the breaking change to update the default notice text on existing installations, but IMO it makes more sense to do it now rather than tracking down what the default used to be sometime later. (Granted, we will still probably miss some installations that have older "default" versions of notices whose defaults have already been changed in the past, but I still think we should prevent problems as much as we can now.) The downside is that it makes the current task harder, and introduces a chance of bugs/regressions...but I still think it's worth it to avoid even more difficulties later. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 8 18:20:29 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 08 Mar 2024 17:20:29 +0000 Subject: [Koha-bugs] [Bug 35840] Local use is double-counted when using both RecordLocalUseOnReturn and statistical patrons In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35840 --- Comment #38 from Katrin Fischer --- At some point, we should make this nicer and easier to understand what's going on: &AddReturn( $barcode, $branch [,$exemptfine] [,$returndate] [,$skip_localuse ] ); AddReturn( $item_object->barcode, C4::Context->userenv->{'branch'}, undef, undef, 1 ) -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 8 18:33:23 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 08 Mar 2024 17:33:23 +0000 Subject: [Koha-bugs] [Bug 15278] [Omnibus] Port default slips and notices from bespoke syntax to Template Toolkit In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=15278 --- Comment #13 from Christopher Brannon --- (In reply to Emily Lamancusa from comment #12) > One more thing to consider: do we just update the default text in > sample_notices.yml for new installations at this point, or do we also > include dbrevs for existing installations that use the default notice text? > > Normally, we don't update the default notice text for existing installations > unless there is a breaking change. However, since the goal is to eventually > deprecate the old syntax, which will be a breaking change, it might be > better to update the defaults on both new and existing installations > together... It will be unavoidable for libraries with customized notices to > need to update their own notices eventually. However, I'm sure there are > libraries who rely on the default notices and may not be familiar with > customizing their notices at all, and I could see it being a major issue if > a large number of their notices, which they haven't touched, stop working. > > One could argue that we should wait until we actually introduce the breaking > change to update the default notice text on existing installations, but IMO > it makes more sense to do it now rather than tracking down what the default > used to be sometime later. (Granted, we will still probably miss some > installations that have older "default" versions of notices whose defaults > have already been changed in the past, but I still think we should prevent > problems as much as we can now.) > > The downside is that it makes the current task harder, and introduces a > chance of bugs/regressions...but I still think it's worth it to avoid even > more difficulties later. Could you keep the old syntax functional for existing users and give them a version or two to update their notices/slips? Maybe only change the default notices that have not been modified from install? It seems reasonable to give existing users time to clean up their own notices with the new tools. That way, if there are any complications or something missed, they some wiggle room before the old stuff goes away. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 8 18:43:57 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 08 Mar 2024 17:43:57 +0000 Subject: [Koha-bugs] [Bug 35950] Move the handling of statistics patron logic out of CanBookBeIssued In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35950 --- Comment #11 from Katrin Fischer --- Looking at this I was wondering, if moving from .pm to .pl is really the right move here concerning the API. Digging a little deeper, I think we are using AddIssue without CanBookBeIssued in the API, so this would not cause a change. I'll push, but leaving this note here in case I missed something in my line of thinking! :) -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 8 18:46:41 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 08 Mar 2024 17:46:41 +0000 Subject: [Koha-bugs] [Bug 36103] Remove the "Cancel hold" link for item level holds In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36103 Katrin Fischer changed: What |Removed |Added ---------------------------------------------------------------------------- Keywords| |release-notes-needed --- Comment #10 from Katrin Fischer --- Can we add the conclusion of the discussion to the release notes please? :) -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 8 18:50:23 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 08 Mar 2024 17:50:23 +0000 Subject: [Koha-bugs] [Bug 35983] Library specific refund lost item replacement fee cannot be 'refund_unpaid' In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35983 Katrin Fischer changed: What |Removed |Added ---------------------------------------------------------------------------- Summary|Branch specific Refund lost |Library specific refund |item replacement fee cannot |lost item replacement fee |be 'refund_unpaid' |cannot be 'refund_unpaid' -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 8 18:55:01 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 08 Mar 2024 17:55:01 +0000 Subject: [Koha-bugs] [Bug 36066] REST API: We should only allow deleting cancelled order lines In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36066 --- Comment #24 from Katrin Fischer --- Thanks for also fixing POD :) -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 8 18:59:17 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 08 Mar 2024 17:59:17 +0000 Subject: [Koha-bugs] [Bug 35538] List of libraries on OPAC self registration form should sort by branchname rather than branchcode In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35538 Katrin Fischer changed: What |Removed |Added ---------------------------------------------------------------------------- Version(s)| |24.05.00 released in| | Status|Passed QA |Pushed to master -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 8 18:59:18 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 08 Mar 2024 17:59:18 +0000 Subject: [Koha-bugs] [Bug 35538] List of libraries on OPAC self registration form should sort by branchname rather than branchcode In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35538 --- Comment #5 from Katrin Fischer --- Pushed for 24.05! Well done everyone, thank you! -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 8 18:59:20 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 08 Mar 2024 17:59:20 +0000 Subject: [Koha-bugs] [Bug 35718] Remove ES6 warnings from JavaScript system preferences In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35718 Katrin Fischer changed: What |Removed |Added ---------------------------------------------------------------------------- Version(s)| |24.05.00 released in| | Status|Passed QA |Pushed to master -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 8 18:59:22 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 08 Mar 2024 17:59:22 +0000 Subject: [Koha-bugs] [Bug 35718] Remove ES6 warnings from JavaScript system preferences In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35718 --- Comment #9 from Katrin Fischer --- Pushed for 24.05! Well done everyone, thank you! -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 8 18:59:23 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 08 Mar 2024 17:59:23 +0000 Subject: [Koha-bugs] [Bug 35840] Local use is double-counted when using both RecordLocalUseOnReturn and statistical patrons In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35840 Katrin Fischer changed: What |Removed |Added ---------------------------------------------------------------------------- Version(s)| |24.05.00 released in| | Status|Passed QA |Pushed to master -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 8 18:59:25 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 08 Mar 2024 17:59:25 +0000 Subject: [Koha-bugs] [Bug 35840] Local use is double-counted when using both RecordLocalUseOnReturn and statistical patrons In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35840 --- Comment #39 from Katrin Fischer --- Pushed for 24.05! Well done everyone, thank you! -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 8 18:59:27 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 08 Mar 2024 17:59:27 +0000 Subject: [Koha-bugs] [Bug 35911] Archived suggestions show in patron's account In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35911 Katrin Fischer changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Passed QA |Pushed to master Version(s)| |24.05.00 released in| | -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 8 18:59:28 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 08 Mar 2024 17:59:28 +0000 Subject: [Koha-bugs] [Bug 35911] Archived suggestions show in patron's account In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35911 --- Comment #11 from Katrin Fischer --- Pushed for 24.05! Well done everyone, thank you! -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 8 18:59:30 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 08 Mar 2024 17:59:30 +0000 Subject: [Koha-bugs] [Bug 35916] Purchase suggestions bibliographic filter should be a "contains" search In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35916 Katrin Fischer changed: What |Removed |Added ---------------------------------------------------------------------------- Version(s)| |24.05.00 released in| | Status|Passed QA |Pushed to master -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 8 18:59:32 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 08 Mar 2024 17:59:32 +0000 Subject: [Koha-bugs] [Bug 35916] Purchase suggestions bibliographic filter should be a "contains" search In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35916 --- Comment #6 from Katrin Fischer --- Pushed for 24.05! Well done everyone, thank you! -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 8 18:59:33 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 08 Mar 2024 17:59:33 +0000 Subject: [Koha-bugs] [Bug 35950] Move the handling of statistics patron logic out of CanBookBeIssued In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35950 Katrin Fischer changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Passed QA |Pushed to master Version(s)| |24.05.00 released in| | -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 8 18:59:35 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 08 Mar 2024 17:59:35 +0000 Subject: [Koha-bugs] [Bug 35950] Move the handling of statistics patron logic out of CanBookBeIssued In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35950 --- Comment #12 from Katrin Fischer --- Pushed for 24.05! Well done everyone, thank you! -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 8 18:59:36 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 08 Mar 2024 17:59:36 +0000 Subject: [Koha-bugs] [Bug 35983] Library specific refund lost item replacement fee cannot be 'refund_unpaid' In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35983 Katrin Fischer changed: What |Removed |Added ---------------------------------------------------------------------------- Version(s)| |24.05.00 released in| | Status|Passed QA |Pushed to master -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 8 18:59:38 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 08 Mar 2024 17:59:38 +0000 Subject: [Koha-bugs] [Bug 35983] Library specific refund lost item replacement fee cannot be 'refund_unpaid' In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35983 --- Comment #5 from Katrin Fischer --- Pushed for 24.05! Well done everyone, thank you! -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 8 18:59:39 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 08 Mar 2024 17:59:39 +0000 Subject: [Koha-bugs] [Bug 36004] Typo in "Your concern was successfully submitted" OPAC text In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36004 Katrin Fischer changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Passed QA |Pushed to master Version(s)| |24.05.00 released in| | -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 8 18:59:41 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 08 Mar 2024 17:59:41 +0000 Subject: [Koha-bugs] [Bug 36004] Typo in "Your concern was successfully submitted" OPAC text In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36004 --- Comment #4 from Katrin Fischer --- Pushed for 24.05! Well done everyone, thank you! -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 8 18:59:42 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 08 Mar 2024 17:59:42 +0000 Subject: [Koha-bugs] [Bug 36005] Typo in "Your concern was successfully submitted" in staff interface In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36005 Katrin Fischer changed: What |Removed |Added ---------------------------------------------------------------------------- Version(s)| |24.05.00 released in| | Status|Passed QA |Pushed to master -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 8 18:59:44 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 08 Mar 2024 17:59:44 +0000 Subject: [Koha-bugs] [Bug 36005] Typo in "Your concern was successfully submitted" in staff interface In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36005 --- Comment #4 from Katrin Fischer --- Pushed for 24.05! Well done everyone, thank you! -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 8 18:59:45 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 08 Mar 2024 17:59:45 +0000 Subject: [Koha-bugs] [Bug 36012] ERM/Agreements_spec.ts is failing if run too slow (?) In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36012 Katrin Fischer changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Passed QA |Pushed to master Version(s)| |24.05.00 released in| | -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 8 18:59:47 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 08 Mar 2024 17:59:47 +0000 Subject: [Koha-bugs] [Bug 36012] ERM/Agreements_spec.ts is failing if run too slow (?) In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36012 --- Comment #12 from Katrin Fischer --- Pushed for 24.05! Well done everyone, thank you! -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 8 18:59:48 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 08 Mar 2024 17:59:48 +0000 Subject: [Koha-bugs] [Bug 36032] The "Next" pagination button has a double instead of a single angle In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36032 Katrin Fischer changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Passed QA |Pushed to master Version(s)| |24.05.00 released in| | -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 8 18:59:50 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 08 Mar 2024 17:59:50 +0000 Subject: [Koha-bugs] [Bug 36032] The "Next" pagination button has a double instead of a single angle In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36032 --- Comment #5 from Katrin Fischer --- Pushed for 24.05! Well done everyone, thank you! -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 8 18:59:51 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 08 Mar 2024 17:59:51 +0000 Subject: [Koha-bugs] [Bug 36066] REST API: We should only allow deleting cancelled order lines In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36066 Katrin Fischer changed: What |Removed |Added ---------------------------------------------------------------------------- Version(s)| |24.05.00 released in| | Status|Passed QA |Pushed to master -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 8 18:59:53 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 08 Mar 2024 17:59:53 +0000 Subject: [Koha-bugs] [Bug 36066] REST API: We should only allow deleting cancelled order lines In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36066 --- Comment #25 from Katrin Fischer --- Pushed for 24.05! Well done everyone, thank you! -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 8 18:59:55 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 08 Mar 2024 17:59:55 +0000 Subject: [Koha-bugs] [Bug 36070] "Place recall" hover styling on OPAC not consistent In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36070 Katrin Fischer changed: What |Removed |Added ---------------------------------------------------------------------------- Version(s)| |24.05.00 released in| | Status|Passed QA |Pushed to master -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 8 18:59:56 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 08 Mar 2024 17:59:56 +0000 Subject: [Koha-bugs] [Bug 36070] "Place recall" hover styling on OPAC not consistent In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36070 --- Comment #5 from Katrin Fischer --- Pushed for 24.05! Well done everyone, thank you! -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 8 18:59:58 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 08 Mar 2024 17:59:58 +0000 Subject: [Koha-bugs] [Bug 36103] Remove the "Cancel hold" link for item level holds In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36103 Katrin Fischer changed: What |Removed |Added ---------------------------------------------------------------------------- Version(s)| |24.05.00 released in| | Status|Passed QA |Pushed to master -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 8 18:59:59 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 08 Mar 2024 17:59:59 +0000 Subject: [Koha-bugs] [Bug 36103] Remove the "Cancel hold" link for item level holds In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36103 --- Comment #11 from Katrin Fischer --- Pushed for 24.05! Well done everyone, thank you! -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 8 19:05:40 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 08 Mar 2024 18:05:40 +0000 Subject: [Koha-bugs] [Bug 35782] Remove Koha::Template::Plugin::Biblio::HoldsCount In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35782 Katrin Fischer changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Passed QA |Patch doesn't apply --- Comment #10 from Katrin Fischer --- Can I please get a rebase? Apply? [(y)es, (n)o, (i)nteractive] y Applying: Bug 35782: Replace TT plugin's method Biblio::HoldsCount Applying: Bug 35782: Fix scoping problem with "biblio" error: sha1 information is lacking or useless (koha-tmpl/intranet-tmpl/prog/en/modules/reserve/request.tt). error: could not build fake ancestor Patch failed at 0001 Bug 35782: Fix scoping problem with "biblio" hint: Use 'git am --show-current-patch=diff' to see the failed patch When you have resolved this problem run "git bz apply --continue". If you would prefer to skip this patch, instead run "git bz apply --skip". To restore the original branch and stop patching run "git bz apply --abort". Patch left in /tmp/Bug-35782-Fix-scoping-problem-with-biblio-wq6ym53n.patch -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 8 19:06:51 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 08 Mar 2024 18:06:51 +0000 Subject: [Koha-bugs] [Bug 35248] Bookings needs unit tests In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35248 --- Comment #68 from Katrin Fischer --- I looked into this again: my problem is a "could not build fake ancestor" on bug 35782 right at the top of this tree. As it all still applies for you, maybe you could reattach the patches there for me? -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 8 19:15:39 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 08 Mar 2024 18:15:39 +0000 Subject: [Koha-bugs] [Bug 35919] Add record sources CRUD In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35919 --- Comment #26 from Tomás Cohen Arazi --- (In reply to Jonathan Druart from comment #24) > I don't understand why you stubborn and obstinate to do things differently. > I have said that 10x on bug 32607, then here again. Maybe because some things didn't exist when this was submitted in the first place? Or maybe some things were rewritten by the time this got (finally) some eyes on it. I really thought I had covered all the remaining things. I removed all of the contentious snippets. I will try to understand your concerns. Vue is not my whellhouse. This is the first time I work with Vue, trying to help someone else's dev to move forward. And even learnt Cypress and wrote the darn tests for a trivial CRUD page! > 1. computed title instead of the logic in template > 2. retrieving the client api from setup() > 3. _has_value should not be needed, we have form validation already > 4. you should clean the api-client, why do you deal with headers and json > stringify? we don't need it in other places! > 5. in the routes: > BeforeUnloadEvent() { > window.location.href = "/cgi-bin/koha/admin/admin-home.pl"; > }, > Why? > 6. Why do you name the add/edit component "Edit" when all others are named > "AddForm"? > > 7. Why calling the client api this way: > .then(() => something()) > when all existing occurrences do: > .then( > success => something(), > error => {}, > ); > 8.Edit.vue > Object.keys(response).forEach(key => { > this.row[key] = response[key] > }) > What's the point of this?? > > Some are blocker, some are weirdness, others are better than what exist but > different. > > I let you decide the status of this. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 8 19:31:35 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 08 Mar 2024 18:31:35 +0000 Subject: [Koha-bugs] [Bug 15278] [Omnibus] Port default slips and notices from bespoke syntax to Template Toolkit In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=15278 --- Comment #14 from Emily Lamancusa --- (In reply to Christopher Brannon from comment #13) > Could you keep the old syntax functional for existing users and give them a > version or two to update their notices/slips? Maybe only change the default > notices that have not been modified from install? It seems reasonable to > give existing users time to clean up their own notices with the new tools. > That way, if there are any complications or something missed, they some > wiggle room before the old stuff goes away. Yes, that's basically the idea. The old syntax will still be fully functional for now. We have Bug 15279 to remove the functionality eventually, but that bug is blocked and won't happen until after we update the installation defaults (this bug), create a reference guide (bug 34472), and improve the notice editor (bug 15277) so that users actually have the tools to make good use of Template Toolkit syntax. The questions I'm trying to get at now are: 1) If a library hasn't modified a particular notice from install, should we still make them responsible for updating it themselves, or should we update it automatically in that case (since it should be relatively straightforward to check for the old default template and replace it with the new default template)? 2) If we do update it automatically, should we do it now, or wait until the old syntax actually becomes nonfunctional? -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 8 19:40:07 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 08 Mar 2024 18:40:07 +0000 Subject: [Koha-bugs] [Bug 15278] [Omnibus] Port default slips and notices from bespoke syntax to Template Toolkit In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=15278 --- Comment #15 from Christopher Brannon --- (In reply to Emily Lamancusa from comment #14) > (In reply to Christopher Brannon from comment #13) > > Could you keep the old syntax functional for existing users and give them a > > version or two to update their notices/slips? Maybe only change the default > > notices that have not been modified from install? It seems reasonable to > > give existing users time to clean up their own notices with the new tools. > > That way, if there are any complications or something missed, they some > > wiggle room before the old stuff goes away. > > Yes, that's basically the idea. The old syntax will still be fully > functional for now. We have Bug 15279 to remove the functionality > eventually, but that bug is blocked and won't happen until after we update > the installation defaults (this bug), create a reference guide (bug 34472), > and improve the notice editor (bug 15277) so that users actually have the > tools to make good use of Template Toolkit syntax. > > The questions I'm trying to get at now are: > 1) If a library hasn't modified a particular notice from install, should we > still make them responsible for updating it themselves, or should we update > it automatically in that case (since it should be relatively straightforward > to check for the old default template and replace it with the new default > template)? > > 2) If we do update it automatically, should we do it now, or wait until the > old syntax actually becomes nonfunctional? 1) You should update it automatically if it hasn't been modified. 2) Right away. This gives people more exposure to how it is used. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 8 20:08:59 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 08 Mar 2024 19:08:59 +0000 Subject: [Koha-bugs] [Bug 36250] Add preservation.js to Makefile In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36250 Tomás Cohen Arazi changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Needs Signoff |RESOLVED Resolution|--- |DUPLICATE CC| |tomascohen at gmail.com --- Comment #2 from Tomás Cohen Arazi --- It seems a fix for this has just been pushed, Kyle. Thanks for taking care anyway! *** This bug has been marked as a duplicate of bug 35759 *** -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 8 20:08:59 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 08 Mar 2024 19:08:59 +0000 Subject: [Koha-bugs] [Bug 35759] Preservation module home yields a blank page In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35759 --- Comment #8 from Tomás Cohen Arazi --- *** Bug 36250 has been marked as a duplicate of this bug. *** -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 8 20:13:57 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 08 Mar 2024 19:13:57 +0000 Subject: [Koha-bugs] [Bug 35169] Make long overdue borrower category options configurable in interface In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35169 Matthias Le Gac changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Failed QA |Needs Signoff -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Fri Mar 8 20:26:19 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 08 Mar 2024 19:26:19 +0000 Subject: [Koha-bugs] [Bug 36098] Create Koha::Session module In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36098 Tomás Cohen Arazi changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |tomascohen at gmail.com --- Comment #19 from Tomás Cohen Arazi --- This applies nicely on 23.11.x and works as expected. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 8 20:28:53 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 08 Mar 2024 19:28:53 +0000 Subject: [Koha-bugs] [Bug 34755] Error authenticating to external OpenID Connect (OIDC) identity provider : wrong_csrf_token In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=34755 --- Comment #33 from Tomás Cohen Arazi --- Applied fine on top of 36098. QA script happy. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 8 20:32:28 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 08 Mar 2024 19:32:28 +0000 Subject: [Koha-bugs] [Bug 34755] Error authenticating to external OpenID Connect (OIDC) identity provider : wrong_csrf_token In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=34755 Tomás Cohen Arazi changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #162748|0 |1 is obsolete| | --- Comment #34 from Tomás Cohen Arazi --- Created attachment 162977 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162977&action=edit Bug 34755: Backport Koha::Token change from bug 34478 This change includes the Koha::Token changes which uses Koha::Session for generating and checking CSRF tokens. 0. Apply the patch and koha-plack --restart kohadev 1. Setup Keycloak OIDC SSO according to "Testing SSO" wiki guide 2. In a regular window go to http://localhost:8080 3. In a private window go to http://localhost:8080 and click the SSO "Log in with..." button, but don't log into Keycloak 4. In the regular window, login locally, and navigate to 5-6 pages 5. In the private window, log into Keycloak 6. Note that you are redirected back to Koha and logged in successfully (no wrong_csrf_token error). Signed-off-by: Olivier Hubert Signed-off-by: Tomas Cohen Arazi -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 8 20:38:52 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 08 Mar 2024 19:38:52 +0000 Subject: [Koha-bugs] [Bug 1993] Task Scheduler Needs Re-write In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=1993 Maude changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |maude.boudreau at collecto.ca -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 8 21:03:34 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 08 Mar 2024 20:03:34 +0000 Subject: [Koha-bugs] [Bug 34472] Template Toolkit reference guide needed In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=34472 --- Comment #8 from Emily Lamancusa --- Some thoughts / useful information I've come across while digging into the code to figure out what bug 15278 will entail: (This is mostly answering the questions of "what information do we need to provide to users?" and "where can we find this information in the code if it isn't well documented?") - To get a list of what TT objects are available to notices in general, possible places to look are two subs in C4::Letters: _get_tt_params and _parseletter_sth. ~ Near the beginning of _get_tt_params, a $config variable is defined that maps database table names to Template Toolkit variable names. ~ _parseletter_sth actually prepares (and caches?) database queries for notices ~ These two subs aren't 100% in sync with each other, though (I haven't dug quite deep enough to be sure if that's a bug in and of itself) - To know which specific tables a specific notice has access to, I believe one way to do that would be to find the GetPreparedLetter call for that notice. A list of tables is passed as a parameter. (git grep is your friend here) - Due, Predue, and Overdue notices might be weird - they have some custom handling in advance_notices.pl and overdue_notices.pl. There are also a few other notices that have weird custom things that aren't handled yet in Template Toolkit syntax. (See https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=15278#c11) - Some Koha-specific TT things that aren't tied to a particular table that we should include: ~ accessing today's date ~ formatting a date ~ I feel like I've seen some environment context / syspref configuration things getting used in notices before? - We should include an explanation of how a TT variable can be singular or plural, and when and how to use each. (Is there any situation where we'd use the plural, other than a FOREACH loop or a count?) - We definitely need to make sure the '----' syntax for digest notices is documented, and probably include an explanation of when to use '----' and when to use a FOREACH. - I believe any database field in a given table is accessible as a variable in notices that have access to that table? If I'm correct in that, it would be really useful for the Template Toolkit documentation to link to the schema page for the relevant tables. - Ideally, it would be a nice idea to include some very basic, layman-friendly TT info as a starting point for users who may not have a programming background or experience reading technical documentation. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 8 21:07:48 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 08 Mar 2024 20:07:48 +0000 Subject: [Koha-bugs] [Bug 36287] New: Ability to view both the budget name and budget code in a basket Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36287 Bug ID: 36287 Summary: Ability to view both the budget name and budget code in a basket Change sponsored?: --- Product: Koha Version: master Hardware: All OS: All Status: NEW Severity: trivial Priority: P5 - low Component: Acquisitions Assignee: koha-bugs at lists.koha-community.org Reporter: Laura.escamilla at bywatersolutions.com QA Contact: testopia at bugs.koha-community.org Some libraries have expressed interest in seeing both the budget name and code in the basket table. -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 8 21:17:05 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 08 Mar 2024 20:17:05 +0000 Subject: [Koha-bugs] [Bug 36287] Ability to view both the budget name and budget code in a basket In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36287 Laura Escamilla changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |Needs Signoff -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 8 21:17:07 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 08 Mar 2024 20:17:07 +0000 Subject: [Koha-bugs] [Bug 36287] Ability to view both the budget name and budget code in a basket In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36287 --- Comment #1 from Laura Escamilla --- Created attachment 162978 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162978&action=edit Bug 36287: Add budget code to fund column in acq basket table Trivial patch is attached. I'm open for discussing whether this would work better as a system preference so that libraries could decide whether they would like to see only the fund name, code, or both. To test: 1. Create a basket and add an item. Notice that the fund column in the basket table only displays the budget name. 2. Apply the patch. 3. Refresh the page and note that the fund column now displays both the budget name and budget code. -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Fri Mar 8 21:17:41 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 08 Mar 2024 20:17:41 +0000 Subject: [Koha-bugs] [Bug 36287] Ability to view both the budget name and budget code in a basket In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36287 Laura Escamilla changed: What |Removed |Added ---------------------------------------------------------------------------- Assignee|koha-bugs at lists.koha-commun |Laura.escamilla at bywatersolu |ity.org |tions.com -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 8 21:25:21 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 08 Mar 2024 20:25:21 +0000 Subject: [Koha-bugs] [Bug 21173] Add hours as age unit to auto item modifications by age for damaged_on, itemlost_on and withdrawn_on fields In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=21173 Lisette Scheer changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |lisette.scheer at bywatersolut | |ions.com -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 8 21:34:19 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 08 Mar 2024 20:34:19 +0000 Subject: [Koha-bugs] [Bug 36235] System preferences chopping everything after a semicolon. In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36235 Laura Escamilla changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |Laura.escamilla at bywatersolu | |tions.com -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 8 21:43:22 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 08 Mar 2024 20:43:22 +0000 Subject: [Koha-bugs] [Bug 35394] Correct the message displayed when attempting to checkout an item during it's booking period In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35394 David Nind changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Needs Signoff |Signed Off -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 8 21:43:24 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 08 Mar 2024 20:43:24 +0000 Subject: [Koha-bugs] [Bug 35394] Correct the message displayed when attempting to checkout an item during it's booking period In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35394 David Nind changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #162973|0 |1 is obsolete| | --- Comment #4 from David Nind --- Created attachment 162979 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162979&action=edit Bug 35394: Correction to booked items logic This patch fixes the overly extreme message that was designed to appeared when someone tried to check out a booked item to the wrong user. However, the message never appeared due to a logic error within CanBookBeIssued which this patch also resolved. Test plan 1) Make an item bookable 2) Add a booking for the item to patron A from tomorrow 3) In the database, update the booking start_date to today (or wait a day before the next step) 4) Attempt to check the book out to patron B. Note that you are displayed with the new message 'The item is booked for another patron' and you are unable to check the item out. Signed-off-by: David Nind -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 8 21:50:49 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 08 Mar 2024 20:50:49 +0000 Subject: [Koha-bugs] [Bug 35394] Correct the message displayed when attempting to checkout an item during it's booking period In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35394 David Nind changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |david at davidnind.com Text to go in the| |This fixes the logic and release notes| |message displayed if you | |try to check out an item | |where there is a booking. | |Now you cannot check out an | |item where there is a | |booking, and the message | |displayed is: "The item is | |booked for another patron". --- Comment #5 from David Nind --- Testing notes (using KTD): 1. To make an item bookable: 1.1 In the staff interface, go to the details page for a record with items. 1.2 Click on the 'Items' tab. 1.3 For an item, change 'Bookable' to 'Yes' and click on 'Update'. 1.4 Go back to the normal tab for the record. 2. To place a booking - click on the "Place booking" button for a record. 3. SQL to update the booking start date (adjust start_date and booking_id as appropriate): 3.1 Access the database: koha-mysql kohadev 3.2 SQL query: update bookings set start_date="2024-03-08 11:00:00" where booking_id=1; -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 8 21:56:10 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 08 Mar 2024 20:56:10 +0000 Subject: [Koha-bugs] [Bug 36192] [OMNIBUS] CSRF Protection for Koha In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36192 David Nind changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |david at davidnind.com -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 8 21:57:57 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 08 Mar 2024 20:57:57 +0000 Subject: [Koha-bugs] [Bug 33312] Add circulation and fines rules table from smart-rules.pl to column settings In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33312 hebah at bywatersolutions.com changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |hebah at bywatersolutions.com -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 8 22:02:52 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 08 Mar 2024 21:02:52 +0000 Subject: [Koha-bugs] [Bug 35796] Patron password expiration date lost when patron edited by superlibrarian In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35796 Andrew Fuerste-Henry changed: What |Removed |Added ---------------------------------------------------------------------------- Summary|Patron password expiration |Patron password expiration |arbitrarily changes when |date lost when patron |account edited |edited by superlibrarian CC| |andrewfh at dubcolib.org --- Comment #1 from Andrew Fuerste-Henry --- We just noticed some missing password expiration dates and I think I see what's happening. It's important to note that the password expiration date is field is only shown and editable in the patron record if one is a superlibrarian. To recreate: - have a patron with a password expiration date - log into Koha on an account that can search and edit patrons but is not a superlibrarian - Edit the patron, confirm that password expiration date is included in the edit form, save your changes - confirm your patron still has a password expiration date - log into Koha as a superlibrarian - Edit the patron, confirm the password expiration date field is included in the patron edit form, but loads without a value. Do not add a date or click into this field. - Save the patron - confirm the patron no longer has a password expiration date I'm not sure why the expiration date value doesn't load when editing a patron, it appears that it is intended to: https://github.com/Koha-Community/Koha/blob/4032da3f964f438e913ed19d40b0b73aa4bd2533/koha-tmpl/intranet-tmpl/prog/en/modules/members/memberentrygen.tt#L1347 -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 8 22:11:53 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 08 Mar 2024 21:11:53 +0000 Subject: [Koha-bugs] [Bug 15461] Add staff equivalent for OpacLocationOnDetail In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=15461 Lucas Gass changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |Needs Signoff -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Fri Mar 8 22:11:57 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 08 Mar 2024 21:11:57 +0000 Subject: [Koha-bugs] [Bug 15461] Add staff equivalent for OpacLocationOnDetail In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=15461 --- Comment #8 from Lucas Gass --- Created attachment 162980 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162980&action=edit Bug 15461: Add StaffLocationOnDetail system preference -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 8 22:11:59 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 08 Mar 2024 21:11:59 +0000 Subject: [Koha-bugs] [Bug 15461] Add staff equivalent for OpacLocationOnDetail In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=15461 --- Comment #9 from Lucas Gass --- Created attachment 162981 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162981&action=edit Bug 15461: Implement StaffLocationOnDetail To test; 1. APPLY patch, updatedatabase, restart services 2. Search for the new system preference 'StaffLocationOnDetail' 3. Read the description and make sure it makes sense. Check that the 'Table settings' link works. 4. By default it should be set to 'below the home library'. 5. Check to make sure that is where it displays. 6. Try 'below the holding library' and 'below both home and holding libraries', making sure each works properly. 7. Try 'on a sperate column', in which case you need to make sure that 'holdings_shelvinglocation' is properly checked under Administration > Table settings 8. Play with other Table settings to make sure they all work as they should. -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Fri Mar 8 22:12:02 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 08 Mar 2024 21:12:02 +0000 Subject: [Koha-bugs] [Bug 15461] Add staff equivalent for OpacLocationOnDetail In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=15461 --- Comment #10 from Lucas Gass --- Created attachment 162982 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162982&action=edit Bug 15461: perltidy DB update -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 8 22:17:18 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 08 Mar 2024 21:17:18 +0000 Subject: [Koha-bugs] [Bug 35796] Patron password expiration date lost when patron edited by superlibrarian In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35796 Andrew Fuerste-Henry changed: What |Removed |Added ---------------------------------------------------------------------------- See Also| |https://bugs.koha-community | |.org/bugzilla3/show_bug.cgi | |?id=36288 -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Fri Mar 8 22:17:18 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 08 Mar 2024 21:17:18 +0000 Subject: [Koha-bugs] [Bug 36288] New: Password expiration date cannot be hidden with BorrowerUnwantedField Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36288 Bug ID: 36288 Summary: Password expiration date cannot be hidden with BorrowerUnwantedField Change sponsored?: --- Product: Koha Version: master Hardware: All OS: All Status: NEW Severity: enhancement Priority: P5 - low Component: Patrons Assignee: koha-bugs at lists.koha-community.org Reporter: andrewfh at dubcolib.org QA Contact: testopia at bugs.koha-community.org CC: gmcharlt at gmail.com, kyle.m.hall at gmail.com The password expiration date field is hardcoded to only show in the patron edit screen for superlibrarians. It continues to appear for superlibrarians, even if selected in the BorrowerUnwantedField system preference. We should either make this field observe the BorrowerUnwantedField syspref or remove it from the list of fields in the syspref. Tangentially, that field is currently failing to load the patron's current password expiration date into the edit form, so the date is lost when the patron is saved. That's bug 35796. -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Fri Mar 8 22:17:54 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 08 Mar 2024 21:17:54 +0000 Subject: [Koha-bugs] [Bug 35796] Patron password expiration date lost when patron edited by superlibrarian In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35796 --- Comment #2 from Andrew Fuerste-Henry --- Filed Bug 36288 for the fact that BorrowerUnwantedField doesn't hide password expiration. -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Fri Mar 8 22:18:25 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 08 Mar 2024 21:18:25 +0000 Subject: [Koha-bugs] [Bug 36289] New: Allow automatic item modification by age to set a date field to today's date Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36289 Bug ID: 36289 Summary: Allow automatic item modification by age to set a date field to today's date Change sponsored?: --- Product: Koha Version: master Hardware: All OS: All Status: NEW Severity: enhancement Priority: P5 - low Component: Cataloging Assignee: koha-bugs at lists.koha-community.org Reporter: lisette.scheer at bywatersolutions.com QA Contact: testopia at bugs.koha-community.org CC: m.de.rooy at rijksmuseum.nl It would be helpful if automatic item modification by age could set a date field to today's date. Example: Age in days: 60 Age field: items.itemlost_on Conditions: items.itemlost=5 Substitutions: items.itemlost=6 items.itemlost_on=Today Or, if you want to update the date accessioned to the first day it was circulating, you could set up a custom damaged status to put items in before they go to circulate: Age in days: 1 Age field: items.itemdamaged_on Conditions: items.itemdamaged=3 Substitutions: items.itemdamaged=0 items.dateaccessioned= Today's date -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 8 22:21:15 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 08 Mar 2024 21:21:15 +0000 Subject: [Koha-bugs] [Bug 29941] Automatic item modification by age should be able to set a value to NULL In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29941 Lisette Scheer changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |lisette.scheer at bywatersolut | |ions.com -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 8 22:33:43 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 08 Mar 2024 21:33:43 +0000 Subject: [Koha-bugs] [Bug 35796] Patron password expiration date lost when patron edited by superlibrarian In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35796 Lucas Gass changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |Needs Signoff -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Fri Mar 8 22:33:46 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 08 Mar 2024 21:33:46 +0000 Subject: [Koha-bugs] [Bug 35796] Patron password expiration date lost when patron edited by superlibrarian In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35796 --- Comment #3 from Lucas Gass --- Created attachment 162983 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162983&action=edit Bug 35796: Properly set patron_expiration value To test: 1) Set an expiration on the password in a patron account and save. 2) Go to patron details (moremember.pl) and confirm the password has an expiration. 3) Edit the patron account without touching anything and save the account. 4) Go back to patron details (moremember.pl) and note that the expiration on the password has been removed. 5) APPLY PATCH 6) Try 1 - 4 again except this time password expiration is not removed. -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Fri Mar 8 22:34:33 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 08 Mar 2024 21:34:33 +0000 Subject: [Koha-bugs] [Bug 35796] Patron password expiration date lost when patron edited by superlibrarian In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35796 Lucas Gass changed: What |Removed |Added ---------------------------------------------------------------------------- Assignee|koha-bugs at lists.koha-commun |lucas at bywatersolutions.com |ity.org | CC| |lucas at bywatersolutions.com Patch complexity|--- |Trivial patch --- Comment #4 from Lucas Gass --- Trivial fix but this bug can result in some data loss, correctly set as major. -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 8 22:35:08 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 08 Mar 2024 21:35:08 +0000 Subject: [Koha-bugs] [Bug 36177] We need integration tests to cover csrf checks In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36177 David Nind changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Needs Signoff |Signed Off -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 8 22:35:11 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 08 Mar 2024 21:35:11 +0000 Subject: [Koha-bugs] [Bug 36177] We need integration tests to cover csrf checks In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36177 David Nind changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #162532|0 |1 is obsolete| | --- Comment #8 from David Nind --- Created attachment 162984 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162984&action=edit Bug 36177: Cypress tests - yarn add cypress-mysql Signed-off-by: David Nind -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 8 22:35:14 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 08 Mar 2024 21:35:14 +0000 Subject: [Koha-bugs] [Bug 36177] We need integration tests to cover csrf checks In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36177 David Nind changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #162533|0 |1 is obsolete| | --- Comment #9 from David Nind --- Created attachment 162985 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162985&action=edit Bug 36177: Cypress tests - cypress-mysql config Signed-off-by: David Nind -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 8 22:35:17 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 08 Mar 2024 21:35:17 +0000 Subject: [Koha-bugs] [Bug 36177] We need integration tests to cover csrf checks In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36177 David Nind changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #162576|0 |1 is obsolete| | --- Comment #10 from David Nind --- Created attachment 162986 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162986&action=edit Bug 36177: Add Cypress tests Signed-off-by: David Nind -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 8 22:36:26 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 08 Mar 2024 21:36:26 +0000 Subject: [Koha-bugs] [Bug 15461] Add staff equivalent for OpacLocationOnDetail In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=15461 Lucas Gass changed: What |Removed |Added ---------------------------------------------------------------------------- Assignee|koha-bugs at lists.koha-commun |lucas at bywatersolutions.com |ity.org | -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Fri Mar 8 22:38:58 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 08 Mar 2024 21:38:58 +0000 Subject: [Koha-bugs] [Bug 36177] We need integration tests to cover csrf checks In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36177 David Nind changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |david at davidnind.com --- Comment #11 from David Nind --- Testing notes (using KTD): 1. Ran cypress tests before applying the patches: perl /kohadevbox/misc4dev/run_tests.pl --run-cypress-tests-only 2. Ran the tests again after patches applied (I think I did a yarn there as well to add the new module/package, but I did a reset_all and shut down KTD and restarted as well - not sure of the correct way to do this). Results after patches applied: Spec Tests Passing Failing Pending Skipped ┌────────────────────────────────────────────────────────────────────────────────────────────────┐ │ ✔ InfiniteScrollSelect_spec.ts 00:14 4 4 - - - │ ├────────────────────────────────────────────────────────────────────────────────────────────────┤ │ ✔ KohaTable_spec.ts 00:03 1 1 - - - │ ├────────────────────────────────────────────────────────────────────────────────────────────────┤ │ ✔ Auth/csrf.ts 00:18 6 6 - - - │ ├────────────────────────────────────────────────────────────────────────────────────────────────┤ │ ✔ ERM/Agreements_spec.ts 00:31 5 5 - - - │ ├────────────────────────────────────────────────────────────────────────────────────────────────┤ │ ✔ ERM/DataProviders_spec.ts 00:49 13 13 - - - │ ├────────────────────────────────────────────────────────────────────────────────────────────────┤ │ ✔ ERM/Dialog_spec.ts 00:11 4 4 - - - │ ├────────────────────────────────────────────────────────────────────────────────────────────────┤ │ ✔ ERM/Licenses_spec.ts 00:21 5 5 - - - │ ├────────────────────────────────────────────────────────────────────────────────────────────────┤ │ ✔ ERM/Packages_spec.ts 00:22 5 5 - - - │ ├────────────────────────────────────────────────────────────────────────────────────────────────┤ │ ✔ ERM/Searchbar_spec.ts 00:11 4 4 - - - │ ├────────────────────────────────────────────────────────────────────────────────────────────────┤ │ ✔ ERM/Titles_spec.ts 00:34 6 6 - - - │ ├────────────────────────────────────────────────────────────────────────────────────────────────┤ │ ✔ ERM/UsageReports_spec.ts 00:42 13 13 - - - │ ├────────────────────────────────────────────────────────────────────────────────────────────────┤ │ ✔ ERM/UserRoles_spec.ts 00:03 1 1 - - - │ ├────────────────────────────────────────────────────────────────────────────────────────────────┤ │ ✔ Preservation/Settings.ts 00:15 5 5 - - - │ ├────────────────────────────────────────────────────────────────────────────────────────────────┤ │ ✔ Preservation/Trains.ts 00:20 8 8 - - - │ ├────────────────────────────────────────────────────────────────────────────────────────────────┤ │ ✔ Preservation/WaitingList.ts 00:08 3 3 - - - │ └────────────────────────────────────────────────────────────────────────────────────────────────┘ ✔ All specs passed! 05:09 83 83 - - - Done in 349.96s. all good Running [koha-shell kohadev -c "touch testing.success"]... -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 8 22:43:18 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 08 Mar 2024 21:43:18 +0000 Subject: [Koha-bugs] [Bug 15461] Add staff equivalent for OpacLocationOnDetail In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=15461 --- Comment #11 from Lucas Gass --- Created attachment 162987 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162987&action=edit Bug 15461: Fix typo in system prefererence description -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 8 22:44:08 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 08 Mar 2024 21:44:08 +0000 Subject: [Koha-bugs] [Bug 36120] Add pickup locations to Bookings In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36120 --- Comment #23 from Lisette Scheer --- I can't apply one of the dependencies: Applying: Bug 35787: Remove Koha::Template::Plugin::Biblio::CanBook error: sha1 information is lacking or useless (Koha/Template/Plugin/Biblio.pm). error: could not build fake ancestor Patch failed at 0001 Bug 35787: Remove Koha::Template::Plugin::Biblio::CanBook -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 8 22:49:24 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 08 Mar 2024 21:49:24 +0000 Subject: [Koha-bugs] [Bug 35796] Patron password expiration date lost when patron edited by superlibrarian In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35796 ByWater Sandboxes changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #162983|0 |1 is obsolete| | --- Comment #5 from ByWater Sandboxes --- Created attachment 162988 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162988&action=edit Bug 35796: Properly set patron_expiration value To test: 1) Set an expiration on the password in a patron account and save. 2) Go to patron details (moremember.pl) and confirm the password has an expiration. 3) Edit the patron account without touching anything and save the account. 4) Go back to patron details (moremember.pl) and note that the expiration on the password has been removed. 5) APPLY PATCH 6) Try 1 - 4 again except this time password expiration is not removed. Signed-off-by: Andrew Fuerste-Henry -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 8 22:49:41 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 08 Mar 2024 21:49:41 +0000 Subject: [Koha-bugs] [Bug 35796] Patron password expiration date lost when patron edited by superlibrarian In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35796 Andrew Fuerste-Henry changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Needs Signoff |Signed Off -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 8 22:53:43 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 08 Mar 2024 21:53:43 +0000 Subject: [Koha-bugs] [Bug 36122] NEW_SUGGESTION is sent for every modification to the suggestion In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36122 Matthias Le Gac changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Failed QA |Needs Signoff -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 8 22:53:45 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 08 Mar 2024 21:53:45 +0000 Subject: [Koha-bugs] [Bug 36122] NEW_SUGGESTION is sent for every modification to the suggestion In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36122 --- Comment #8 from Matthias Le Gac --- Created attachment 162989 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162989&action=edit Bug 36122: add unit test Test plan : To recreate: 1. Enable EmailPurchaseSuggestions 2. Go to a patron's account and add an email address, a different one than the one used for EmailPurchaseSuggestions 3. Create a suggestion from the OPAC 3.1. Go to the OPAC and log in as a patron 3.2. Go to Your account > Purchase suggestions 3.3. Click New purchase suggestion 3.4. Enter a title 3.5. Click Submit your suggestion 4. Check the message_queue, there should be one NEW_SUGGESTION message sent to whichever address you chose in EmailPurchaseSuggestions (in a fresh db, there should be 1 entry in message_queue) 5. Update the suggestion to accepted 5.1. In the staff interface, go to Acquisitions > Suggestions 5.2. In the suggestions list, check the box next to the suggestion 5.3. At the bottom of the screen, choose Mark selected as: Accepted 5.4. Click Submit 6. Check the message_queue again, there should be one ACCEPTED message sent to the patron and a new NEW_SUGGESTION message sent to whichever address you chose in EmailPurchaseSuggestions (in a fresh db, there should now be 3 entries in message_queue) 7. Order the suggestion 7.1. Go to Acquisitions 7.2. Search for a vendor 7.3. Click New > Basket 7.4. Enter a basket name (Optional: for testing I like to change Create items when: cataloging the record) 7.5. Click Save 7.6. Click Add to basket 7.7. Click From a suggestion 7.8. Click Order next to the suggestion 7.9. Enter order details 7.10. Click Save 7.11. Click Close basket 7.12. Click Yes, close 8. Check the message_queue again, there should be one ORDERED message sent to the patron and a new NEW_SUGGESTION message sent to whichever address you chose in EmailPurchaseSuggestions (in a fresh db, there should now be 5 entries in message_queue) 9. Apply the patch 10. now repeat steps 3 to 8 but : step 4 you have one NEW_SUGGESTION message in message_queue step 6 you have only one ACCEPTED message in message_queue step 8 you have only one ORDERED message in message_queue The NEW_SUGGESTION are now sent only on the submit of the suggestion and not on each steps. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 8 22:55:11 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 08 Mar 2024 21:55:11 +0000 Subject: [Koha-bugs] [Bug 36122] NEW_SUGGESTION is sent for every modification to the suggestion In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36122 --- Comment #9 from Matthias Le Gac --- this is the first time I do test for Koha, so let me know if there's anything to improve. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 8 22:57:40 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 08 Mar 2024 21:57:40 +0000 Subject: [Koha-bugs] [Bug 15461] Add staff equivalent for OpacLocationOnDetail In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=15461 ByWater Sandboxes changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #162980|0 |1 is obsolete| | --- Comment #12 from ByWater Sandboxes --- Created attachment 162990 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162990&action=edit Bug 15461: Add StaffLocationOnDetail system preference Signed-off-by: Andrew Fuerste-Henry -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 8 22:57:43 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 08 Mar 2024 21:57:43 +0000 Subject: [Koha-bugs] [Bug 15461] Add staff equivalent for OpacLocationOnDetail In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=15461 ByWater Sandboxes changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #162981|0 |1 is obsolete| | --- Comment #13 from ByWater Sandboxes --- Created attachment 162991 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162991&action=edit Bug 15461: Implement StaffLocationOnDetail To test; 1. APPLY patch, updatedatabase, restart services 2. Search for the new system preference 'StaffLocationOnDetail' 3. Read the description and make sure it makes sense. Check that the 'Table settings' link works. 4. By default it should be set to 'below the home library'. 5. Check to make sure that is where it displays. 6. Try 'below the holding library' and 'below both home and holding libraries', making sure each works properly. 7. Try 'on a sperate column', in which case you need to make sure that 'holdings_shelvinglocation' is properly checked under Administration > Table settings 8. Play with other Table settings to make sure they all work as they should. Signed-off-by: Andrew Fuerste-Henry -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 8 22:57:46 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 08 Mar 2024 21:57:46 +0000 Subject: [Koha-bugs] [Bug 15461] Add staff equivalent for OpacLocationOnDetail In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=15461 ByWater Sandboxes changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #162982|0 |1 is obsolete| | --- Comment #14 from ByWater Sandboxes --- Created attachment 162992 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162992&action=edit Bug 15461: perltidy DB update Signed-off-by: Andrew Fuerste-Henry -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 8 22:57:48 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 08 Mar 2024 21:57:48 +0000 Subject: [Koha-bugs] [Bug 15461] Add staff equivalent for OpacLocationOnDetail In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=15461 ByWater Sandboxes changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #162987|0 |1 is obsolete| | --- Comment #15 from ByWater Sandboxes --- Created attachment 162993 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162993&action=edit Bug 15461: Fix typo in system prefererence description Signed-off-by: Andrew Fuerste-Henry -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 8 22:58:07 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 08 Mar 2024 21:58:07 +0000 Subject: [Koha-bugs] [Bug 15461] Add staff equivalent for OpacLocationOnDetail In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=15461 Andrew Fuerste-Henry changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Needs Signoff |Signed Off -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 8 23:07:35 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 08 Mar 2024 22:07:35 +0000 Subject: [Koha-bugs] [Bug 36274] OPAC suggestions form doesn't display In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36274 David Nind changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Needs Signoff |Signed Off -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 8 23:07:38 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 08 Mar 2024 22:07:38 +0000 Subject: [Koha-bugs] [Bug 36274] OPAC suggestions form doesn't display In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36274 David Nind changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #162935|0 |1 is obsolete| | --- Comment #6 from David Nind --- Created attachment 162994 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162994&action=edit Bug 36274: Correct links leading to purchase suggestion page To test: 1. APPLY PATCH 2. As a logged in OPAC user go to 'Your account' > Purchase suggestion. The form should display. 3. Make a suggestion and confirm it works. 4. Try to make a suggestion using title, author, isbn information from an item that already exists. 5. See the "A similar document already exists:" warning. Confirm the suggestion anyways. 6. Set MaxTotalSuggestions to 4 and NumberOfSuggestionDays to 2. Make sure you can still navigate to the purchase suggestion form. 7. Do an OPAC search that will yield no results as a logged in user. 8. Click the "Make a purchase suggestion" link, making sure it works. 9. Turn on AnonSuggestions and log out of the OPAC. 10. Do an OPAC search that will yield no results. Again click the "Make a purchase suggestion", confirm it works. Signed-off-by: David Nind -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 8 23:12:27 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 08 Mar 2024 22:12:27 +0000 Subject: [Koha-bugs] [Bug 35796] Patron password expiration date lost when patron edited by superlibrarian In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35796 Andrew Fuerste-Henry changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |katrin.fischer at bsz-bw.de -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 8 23:35:12 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 08 Mar 2024 22:35:12 +0000 Subject: [Koha-bugs] [Bug 36290] New: Make it possible to turn off all notices for a single branch Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36290 Bug ID: 36290 Summary: Make it possible to turn off all notices for a single branch Change sponsored?: --- Product: Koha Version: master Hardware: All OS: All Status: NEW Severity: enhancement Priority: P5 - low Component: Notices Assignee: koha-bugs at lists.koha-community.org Reporter: lisette.scheer at bywatersolutions.com QA Contact: testopia at bugs.koha-community.org An option, probably in the libraries settings, to turn of notices for a branch, even better if it's within a date range would be very helpful for library closures. -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Fri Mar 8 23:43:03 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 08 Mar 2024 22:43:03 +0000 Subject: [Koha-bugs] [Bug 15278] [Omnibus] Port default slips and notices from bespoke syntax to Template Toolkit In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=15278 --- Comment #16 from Katrin Fischer --- Hi all, first of all: Emily, you are awesome and we don't tell you nearly often enough! Something that hasn't come up here yet, but we need to keep in mind is translations and they complicate things a bit. We install translated notices now, which makes it much harder to tell which ones are "unchanged". And on the other side it makes it harder to insert new nice notices for everyone. It's even hard to determine which language was used when installing or which language a notice is in. Some other ideas: * Have a page on the wiki with the new nice notice sample templates, so it's easy for libraries to get them (sometimes you might just break something and want to go a step back). * Have a deprecation period for the old syntax to help people switch. I think that's almost a given. * Visually highlight notices in the old syntax that require updating? * Maybe a wild idea: Could we have something like a "reset to sample notice" button? If it could get the translated version from the YAML files that would be pretty awesome too. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 8 23:54:11 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 08 Mar 2024 22:54:11 +0000 Subject: [Koha-bugs] [Bug 15278] [Omnibus] Port default slips and notices from bespoke syntax to Template Toolkit In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=15278 --- Comment #17 from Lucas Gass --- > * Maybe a wild idea: Could we have something like a "reset to sample notice" > button? If it could get the translated version from the YAML files that > would be pretty awesome too. +1 to this! -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 8 23:56:19 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 08 Mar 2024 22:56:19 +0000 Subject: [Koha-bugs] [Bug 15278] [Omnibus] Port default slips and notices from bespoke syntax to Template Toolkit In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=15278 --- Comment #18 from George Williams (NEKLS) --- > * Maybe a wild idea: Could we have something like a "reset to sample notice" > button? If it could get the translated version from the YAML files that > would be pretty awesome too. +1 here too. Awesome idea. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sat Mar 9 02:05:56 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 09 Mar 2024 01:05:56 +0000 Subject: [Koha-bugs] [Bug 34631] Independentbranches - Non-superuser should not be able to write Additional contents for other branches In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=34631 Myka Kennedy Stephens changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #162972|0 |1 is obsolete| | --- Comment #21 from Myka Kennedy Stephens --- Created attachment 162995 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162995&action=edit Bug 34631: Independentbranches - Non-superuser should not be able to write Additional contents for other branches When syspref Independentbranches is enabled Non-superuser should not be able to write Additional contents for other branches To reproduce: 1- Connect to staff interface as superlibrarian 2- Enable IndependentBranches preference 3- Go to Tools -> HTML customizations 4- Crete an additional content for all libraries 5- Create or edit a borrower 5-1- Set permission for the borrower - catalogue - edit_additional_contents 4- Log in to the staff interface with the non-superlibrarian staff user 5- Go to Tools -> HTML customizations --> you can delete or edit the additional contents created by superlibrarian for All libraries 6- Click on New entry --> you can add additional content for other branches 7- Apply the patch 8- Repeat step 5 --> you cannot delete or edit the additional contents create by superlibrarian for All libraries 9- Repeat step 6 --> you cannot add additional content for other branches 10- submit the form --> the branch of the created additional content is the current user branch Signed-off-by: Myka Kennedy Stephens -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sat Mar 9 02:05:53 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 09 Mar 2024 01:05:53 +0000 Subject: [Koha-bugs] [Bug 34631] Independentbranches - Non-superuser should not be able to write Additional contents for other branches In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=34631 Myka Kennedy Stephens changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Needs Signoff |Signed Off -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sat Mar 9 02:12:35 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 09 Mar 2024 01:12:35 +0000 Subject: [Koha-bugs] [Bug 34631] Independentbranches - Non-superuser should not be able to write Additional contents for other branches In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=34631 --- Comment #22 from Myka Kennedy Stephens --- This patch works beautifully! I completed the test plan and everything worked as expected this time, very smooth. With the patch applied, the non-superlibrarian staff user can preview HTML customizations for all libraries and for other branches -- the edit and delete buttons are suppressed. This user can also edit existing content for their branch. When creating new content, the drop-down to select all libraries or a particular branch is suppressed. The user can create new content successfully and when returned to the table of all HTML customizations, the new content appears under the user's branch and has the edit and delete buttons available. Great work! Glad all the back-and-forth finally paid off and it sounds like we both learned a little in the process. :-) -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sat Mar 9 06:09:00 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 09 Mar 2024 05:09:00 +0000 Subject: [Koha-bugs] [Bug 35989] Searching Geographic authorities generates error In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35989 Thomas Sycko changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |tsycko at tswarren.com -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sat Mar 9 06:12:24 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 09 Mar 2024 05:12:24 +0000 Subject: [Koha-bugs] [Bug 35989] Searching Geographic authorities generates error In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35989 --- Comment #1 from Thomas Sycko --- I am able to replicate the error when searching all authorities and geographic authorities. Searching other authority types works as expected. -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Sat Mar 9 10:36:21 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 09 Mar 2024 09:36:21 +0000 Subject: [Koha-bugs] [Bug 35796] Patron password expiration date lost when patron edited by superlibrarian In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35796 Katrin Fischer changed: What |Removed |Added ---------------------------------------------------------------------------- Keywords| |RM_priority -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sat Mar 9 10:37:56 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 09 Mar 2024 09:37:56 +0000 Subject: [Koha-bugs] [Bug 36122] NEW_SUGGESTION is sent for every modification to the suggestion In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36122 Katrin Fischer changed: What |Removed |Added ---------------------------------------------------------------------------- Severity|enhancement |minor -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sat Mar 9 10:39:25 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 09 Mar 2024 09:39:25 +0000 Subject: [Koha-bugs] [Bug 36177] We need integration tests to cover CSRF checks In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36177 Katrin Fischer changed: What |Removed |Added ---------------------------------------------------------------------------- Summary|We need integration tests |We need integration tests |to cover csrf checks |to cover CSRF checks -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sat Mar 9 12:05:06 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 09 Mar 2024 11:05:06 +0000 Subject: [Koha-bugs] [Bug 36274] OPAC suggestions form doesn't display In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36274 Katrin Fischer changed: What |Removed |Added ---------------------------------------------------------------------------- Keywords| |RM_priority -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sat Mar 9 12:11:04 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 09 Mar 2024 11:11:04 +0000 Subject: [Koha-bugs] [Bug 36283] Autoswitch behavior change after 22.11.15 upgrade In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36283 Katrin Fischer changed: What |Removed |Added ---------------------------------------------------------------------------- Version|22.11 |master -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sat Mar 9 12:12:10 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 09 Mar 2024 11:12:10 +0000 Subject: [Koha-bugs] [Bug 36284] Patron search within record place holds page limit by letter does not work In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36284 Katrin Fischer changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution|--- |DUPLICATE --- Comment #1 from Katrin Fischer --- *** This bug has been marked as a duplicate of bug 36251 *** -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sat Mar 9 12:12:10 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 09 Mar 2024 11:12:10 +0000 Subject: [Koha-bugs] [Bug 36251] Patron search by letter broken in holds In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36251 Katrin Fischer changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |kyle at bywatersolutions.com --- Comment #5 from Katrin Fischer --- *** Bug 36284 has been marked as a duplicate of this bug. *** -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sat Mar 9 12:20:36 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 09 Mar 2024 11:20:36 +0000 Subject: [Koha-bugs] [Bug 36287] Ability to view both the budget name and budget code in a basket In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36287 --- Comment #2 from Katrin Fischer --- Hi Laura, had a quick look here: * If you are worried about customization, we could wrap the code in a span with a class. * Also wondering if something like "budget name (budget code)" would work a little better to save on display space. * I believe terminology might not be quite right. Should it not be fund instead of budget? As things got renamed after initial development of the acquisition module, there is an unfortunate mismatch between what we call things and the variable names. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sat Mar 9 12:20:53 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 09 Mar 2024 11:20:53 +0000 Subject: [Koha-bugs] [Bug 36287] Ability to view both the budget name and budget code in a basket In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36287 Katrin Fischer changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Needs Signoff |Failed QA -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sat Mar 9 12:24:15 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 09 Mar 2024 11:24:15 +0000 Subject: [Koha-bugs] [Bug 36269] Elasticsearch: publisher-location (pl) index should include 264a/264a In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36269 Katrin Fischer changed: What |Removed |Added ---------------------------------------------------------------------------- Summary|ElasticSearch: |Elasticsearch: |publisher-location (pl) |publisher-location (pl) |index should use 264a |index should include | |264a/264a -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sat Mar 9 12:26:38 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 09 Mar 2024 11:26:38 +0000 Subject: [Koha-bugs] [Bug 36269] Elasticsearch: publisher-location (pl) index should include 264a/264a In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36269 Katrin Fischer changed: What |Removed |Added ---------------------------------------------------------------------------- Severity|enhancement |normal --- Comment #5 from Katrin Fischer --- I believe this is more of a bug fix really, as we offer "publisher location" as a search option in the advanced search and have search links in the detail pages. Thanks, Thomas! -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Sat Mar 9 12:37:42 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 09 Mar 2024 11:37:42 +0000 Subject: [Koha-bugs] [Bug 36236] Web installer broken with error 500 In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36236 Katrin Fischer changed: What |Removed |Added ---------------------------------------------------------------------------- Severity|enhancement |major Summary|minimum initial |Web installer broken with |configuration |error 500 --- Comment #1 from Katrin Fischer --- Hi Gabriele, I just tested the web installer for 23.11 and it finished without any problem. This makes me think, that this might be more of a support issue, than a bug. What you could do is try to drop the database, create it again and re-run the web installer. sudo koha-mysql instancename drop database koha_instancename; create database koha_instancename; quit; You might need to restart after this to trigger the installer. You can watch the logs, while working through the settings, if you hit the error 500 again, it might give a better clue on what is going on: tail -f /var/log/koha/instancename/*.log Please note your steps and what you have entered, if you hit the error 500 again, we might have more information that helps to resolve. -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sat Mar 9 13:01:40 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 09 Mar 2024 12:01:40 +0000 Subject: [Koha-bugs] [Bug 34755] Error authenticating to external OpenID Connect (OIDC) identity provider : wrong_csrf_token In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=34755 Tomás Cohen Arazi changed: What |Removed |Added ---------------------------------------------------------------------------- QA Contact|testopia at bugs.koha-communit |tomascohen at gmail.com |y.org | Status|Signed Off |Passed QA --- Comment #35 from Tomás Cohen Arazi --- Today I managed to test this properly. Looks good and works as expected. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sat Mar 9 13:09:25 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 09 Mar 2024 12:09:25 +0000 Subject: [Koha-bugs] [Bug 36285] Staff UI form fieldset styling needs update In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36285 --- Comment #4 from Katrin Fischer --- Hi Pedro, thanks for taking the initiative! Working on this now might even be good timing with the CSRF changes also requiring testing a lot of the forms. I noticed some things, that we maybe could improve on: /cgi-bin/koha/acqui/supplier.pl?op=enter * The pull-downs for currencies and others have a lower height than the input fields. I think it would help readability and consistency if the heights of the fields matched. The select2 pull-downs don't appear to have this issue (edit item form for an example). * Not related to the new CSS... but maybe I can still bring it up for consideration: German labels are often a lot longer than English ones and that leads to quite a lot of display issues we have to counter with custom CSS. I see a lot of the labels already wrap on this form in English already ("Account number". Could we consider making the label area a bit more spacious/flexible in general? /cgi-bin/koha/suggestion/suggestion.pl?op=add_form&branchcode=CPL * Input field lengths appear longer in general - I quite like that in general. But wondering about fields with a set max-length like the copyright year in this form. It's still not the same length as the other input fields with the patch applied, but also not 'year-sized' anymore. Similar for zipcode in administration/libraries. /cgi-bin/koha/admin/categories.pl?op=add_form&categorycode=HB * In the messaging preferences table, the pull down for "days in advance" is now too small to fit the number. Without the patch the width is ok. Hope this helps! -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Sat Mar 9 13:12:22 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 09 Mar 2024 12:12:22 +0000 Subject: [Koha-bugs] [Bug 25796] Allow REST API to use external OAuth2 authorization server In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=25796 Sven changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |sven+koha at geeq.de -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sat Mar 9 13:12:40 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 09 Mar 2024 12:12:40 +0000 Subject: [Koha-bugs] [Bug 34755] Error authenticating to external OpenID Connect (OIDC) identity provider : wrong_csrf_token In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=34755 --- Comment #36 from Katrin Fischer --- Hi Tomas, thanks for testing! Am I correct, that the patches on bug 36098 and here are supposed to go in 23.11 directly now? -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sat Mar 9 13:15:11 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 09 Mar 2024 12:15:11 +0000 Subject: [Koha-bugs] [Bug 34755] Error authenticating to external OpenID Connect (OIDC) identity provider : wrong_csrf_token In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=34755 --- Comment #37 from Tomás Cohen Arazi --- (In reply to Katrin Fischer from comment #36) > Hi Tomas, thanks for testing! Am I correct, that the patches on bug 36098 > and here are supposed to go in 23.11 directly now? Bug 36098 is already in master. So on the maintainers queue. And this one is marked for 23.11 (not master). They should all get backported as much as possible. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sat Mar 9 13:15:14 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 09 Mar 2024 12:15:14 +0000 Subject: [Koha-bugs] [Bug 25796] Allow REST API to use external OAuth2 authorization server In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=25796 --- Comment #6 from Sven --- Alternatively, it would be possible to support the integration of Apache2 mod_auth_openidc (https://github.com/OpenIDC/mod_auth_openidc) similar to Shibboleth (https://wiki.koha-community.org/wiki/Shibboleth_Configuration). -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sat Mar 9 13:16:27 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 09 Mar 2024 12:16:27 +0000 Subject: [Koha-bugs] [Bug 36277] t/db_dependent/api/v1/transfer_limits.t is failing In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36277 Katrin Fischer changed: What |Removed |Added ---------------------------------------------------------------------------- Keywords| |RM_priority --- Comment #2 from Katrin Fischer --- We have the same in the latest run #2808: koha_1 | # Inactivity timeout koha_1 | koha_1 | # Failed test 'POST //RukUTMflvmiFmWiGbiMJbpcClr5uXXjA4MqgN_LRiINumkvxboZcrYkP:thePassword123@/api/v1/transfer_limits/batch' koha_1 | # at t/db_dependent/api/v1/transfer_limits.t line 210. koha_1 | koha_1 | # Failed test 'SWAGGER3.2.1' koha_1 | # at t/db_dependent/api/v1/transfer_limits.t line 210. koha_1 | # got: undef koha_1 | # expected: '201' koha_1 | # Looks like you failed 2 tests of 26. koha_1 | koha_1 | # Failed test 'batch_add() and batch_delete() tests' -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sat Mar 9 13:22:29 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 09 Mar 2024 12:22:29 +0000 Subject: [Koha-bugs] [Bug 32671] basic_workflow.t is failing randomly In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=32671 Katrin Fischer changed: What |Removed |Added ---------------------------------------------------------------------------- Keywords| |RM_priority --- Comment #6 from Katrin Fischer --- We have another of these in run #2808: koha_1 | # Failed test at t/db_dependent/selenium/basic_workflow.t line 122. koha_1 | Wide character in print at /usr/share/perl/5.32/Test2/Formatter/TAP.pm line 125. koha_1 | # 'Add patron (test cat description) › Patrons › Koha' koha_1 | # doesn't match '(?^u:Patron details for test_patron_surname)' Help much appreciated! -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sat Mar 9 13:24:12 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 09 Mar 2024 12:24:12 +0000 Subject: [Koha-bugs] [Bug 34755] Error authenticating to external OpenID Connect (OIDC) identity provider : wrong_csrf_token In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=34755 --- Comment #38 from Katrin Fischer --- (In reply to Tomás Cohen Arazi from comment #37) > (In reply to Katrin Fischer from comment #36) > > Hi Tomas, thanks for testing! Am I correct, that the patches on bug 36098 > > and here are supposed to go in 23.11 directly now? > > Bug 36098 is already in master. So on the maintainers queue. > And this one is marked for 23.11 (not master). They should all get > backported as much as possible. Thanks for clarifying! -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sat Mar 9 13:28:03 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 09 Mar 2024 12:28:03 +0000 Subject: [Koha-bugs] [Bug 36231] Koha Not Calculating in Fine Amount In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36231 Katrin Fischer changed: What |Removed |Added ---------------------------------------------------------------------------- Resolution|--- |INVALID Status|NEW |RESOLVED --- Comment #1 from Katrin Fischer --- Hi Lal, this sounds like a support request rather than a bug. Questions about Koha should be asked on the Koha mailing list (http://koha-community.org/support/koha-mailing-lists/) or in the #koha IRC channel (http://koha-community.org/get-involved/irc/). Hopefully you've already seen the Koha documentation: http://koha-community.org/documentation/ You can also find options for paid support here: https://koha-community.org/support/ -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sat Mar 9 13:30:26 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 09 Mar 2024 12:30:26 +0000 Subject: [Koha-bugs] [Bug 36230] Search function does not work properly with sinhala in OPAC In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36230 Katrin Fischer changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution|--- |INVALID --- Comment #1 from Katrin Fischer --- Hi Vinavi, if you are using Zebra and original scripts, you need to activate ICU for searching. This will most likely resolve your issue and make things work correctly. Please see in the wiki: https://wiki.koha-community.org/wiki/ICU_chains_configuration As this is more of a support request than a bug, please note: Questions about Koha should be asked on the Koha mailing list (http://koha-community.org/support/koha-mailing-lists/) or in the #koha IRC channel (http://koha-community.org/get-involved/irc/). Hopefully you've already seen the Koha documentation: http://koha-community.org/documentation/ You can also find options for paid support here: https://koha-community.org/support/ -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Sat Mar 9 14:07:04 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 09 Mar 2024 13:07:04 +0000 Subject: [Koha-bugs] [Bug 19605] ILL backends should be pluggable through regular Koha plugins In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=19605 Tomás Cohen Arazi changed: What |Removed |Added ---------------------------------------------------------------------------- Patch complexity|--- |Small patch Status|Signed Off |Passed QA -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sat Mar 9 14:07:07 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 09 Mar 2024 13:07:07 +0000 Subject: [Koha-bugs] [Bug 19605] ILL backends should be pluggable through regular Koha plugins In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=19605 Tomás Cohen Arazi changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #160433|0 |1 is obsolete| | Attachment #160434|0 |1 is obsolete| | Attachment #160435|0 |1 is obsolete| | --- Comment #16 from Tomás Cohen Arazi --- Created attachment 162996 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162996&action=edit Bug 19605: Add 'ill_backend' plugin category Signed-off-by: David Nind -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sat Mar 9 14:07:10 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 09 Mar 2024 13:07:10 +0000 Subject: [Koha-bugs] [Bug 19605] ILL backends should be pluggable through regular Koha plugins In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=19605 --- Comment #17 from Tomás Cohen Arazi --- Created attachment 162997 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162997&action=edit Bug 19605: Update expandTemplate to expand_template method name Signed-off-by: David Nind -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sat Mar 9 14:07:13 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 09 Mar 2024 13:07:13 +0000 Subject: [Koha-bugs] [Bug 19605] ILL backends should be pluggable through regular Koha plugins In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=19605 --- Comment #18 from Tomás Cohen Arazi --- Created attachment 162998 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162998&action=edit Bug 19605: Add support for ILL backends as plugins This is designed to maintain existing functionality of loading ILL backends through the backend_dir config (default Koha/Illbackends/). A check for a plugin of a given backend name takes precedence over a backend of the same name loaded the old way through backend_dir, this means that if this happens, the backend plugin is used and NOT the backend present in backend_dir. Old backend_dir backends AND new backend plugins coexist. Test plan, k-t-d: 1) Enable ILLModule and install FreeForm, run: bash <(curl -s https://raw.githubusercontent.com/ammopt/koha-ill-dev/master/start-ill-dev.sh) 2) Install the plugin ILL backend example .kpz located at: https://github.com/ammopt/koha-ill-backend-plugin/releases/tag/1.0.0 3) koha-plack --restart kohadev 4) Visit ILL requests: /cgi-bin/koha/ill/ill-requests.pl 5) Click "+ New ILL request". Notice it lists 'FreeForm' and 'PluginBackend' 6) Click 'PluginBackend'. Enter a '123' in pubmedid, '42' in cardnumber and pick a library. Click 'Marke request' 7) Notice the request is created successfully. 8) Visit plugins: /cgi-bin/koha/plugins/plugins-home.pl 9) Click "View plugin by class". Pick "ill backend plugins". Notice the correct plugin is listed. 10) Click "configure" on the ILL backend plugin. Notice it's a normal plugin configuration page Signed-off-by: David Nind -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sat Mar 9 14:07:16 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 09 Mar 2024 13:07:16 +0000 Subject: [Koha-bugs] [Bug 19605] ILL backends should be pluggable through regular Koha plugins In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=19605 --- Comment #19 from Tomás Cohen Arazi --- Created attachment 162999 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162999&action=edit Bug 19605: Tidy Signed-off-by: Tomas Cohen Arazi -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sat Mar 9 14:07:19 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 09 Mar 2024 13:07:19 +0000 Subject: [Koha-bugs] [Bug 19605] ILL backends should be pluggable through regular Koha plugins In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=19605 --- Comment #20 from Tomás Cohen Arazi --- Created attachment 163000 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163000&action=edit Bug 19605: Rename method and use the instantiated plugin in the call This patch makes the backend instantiation happen through a plugin object method instead of a static one. This way, the (already) instantiated plugin can be reused (if needed) in the plugin workflow like this: sub new_il_backend { my ($self, $params) = @_; return Custom::Backend->new( { config => $params->{config}, logger => $params->{logger}, plugin => $self, } ); } The passed plugin object would then be used to retrieve whatever plugin-defined configurations, template paths or even helper methods. On INN-Reach, it gives the backend access to API user agents, task queue injection, etc. This patch also renames the method so it is more straight-forward this is related to ILL. Signed-off-by: Tomas Cohen Arazi -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sat Mar 9 14:07:23 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 09 Mar 2024 13:07:23 +0000 Subject: [Koha-bugs] [Bug 19605] ILL backends should be pluggable through regular Koha plugins In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=19605 --- Comment #21 from Tomás Cohen Arazi --- Created attachment 163001 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163001&action=edit Bug 19605: Clarify method name Signed-off-by: Tomas Cohen Arazi -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sat Mar 9 14:08:07 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 09 Mar 2024 13:08:07 +0000 Subject: [Koha-bugs] [Bug 19605] ILL backends should be pluggable through regular Koha plugins In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=19605 Tomás Cohen Arazi changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #162996|0 |1 is obsolete| | Attachment #162997|0 |1 is obsolete| | Attachment #162998|0 |1 is obsolete| | Attachment #162999|0 |1 is obsolete| | Attachment #163000|0 |1 is obsolete| | Attachment #163001|0 |1 is obsolete| | --- Comment #22 from Tomás Cohen Arazi --- Created attachment 163002 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163002&action=edit Bug 19605: Add 'ill_backend' plugin category Signed-off-by: David Nind Signed-off-by: Tomas Cohen Arazi -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sat Mar 9 14:08:10 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 09 Mar 2024 13:08:10 +0000 Subject: [Koha-bugs] [Bug 19605] ILL backends should be pluggable through regular Koha plugins In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=19605 --- Comment #23 from Tomás Cohen Arazi --- Created attachment 163003 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163003&action=edit Bug 19605: Update expandTemplate to expand_template method name Signed-off-by: David Nind Signed-off-by: Tomas Cohen Arazi -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sat Mar 9 14:08:13 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 09 Mar 2024 13:08:13 +0000 Subject: [Koha-bugs] [Bug 19605] ILL backends should be pluggable through regular Koha plugins In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=19605 --- Comment #24 from Tomás Cohen Arazi --- Created attachment 163004 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163004&action=edit Bug 19605: Add support for ILL backends as plugins This is designed to maintain existing functionality of loading ILL backends through the backend_dir config (default Koha/Illbackends/). A check for a plugin of a given backend name takes precedence over a backend of the same name loaded the old way through backend_dir, this means that if this happens, the backend plugin is used and NOT the backend present in backend_dir. Old backend_dir backends AND new backend plugins coexist. Test plan, k-t-d: 1) Enable ILLModule and install FreeForm, run: bash <(curl -s https://raw.githubusercontent.com/ammopt/koha-ill-dev/master/start-ill-dev.sh) 2) Install the plugin ILL backend example .kpz located at: https://github.com/ammopt/koha-ill-backend-plugin/releases/tag/1.0.0 3) koha-plack --restart kohadev 4) Visit ILL requests: /cgi-bin/koha/ill/ill-requests.pl 5) Click "+ New ILL request". Notice it lists 'FreeForm' and 'PluginBackend' 6) Click 'PluginBackend'. Enter a '123' in pubmedid, '42' in cardnumber and pick a library. Click 'Marke request' 7) Notice the request is created successfully. 8) Visit plugins: /cgi-bin/koha/plugins/plugins-home.pl 9) Click "View plugin by class". Pick "ill backend plugins". Notice the correct plugin is listed. 10) Click "configure" on the ILL backend plugin. Notice it's a normal plugin configuration page Signed-off-by: David Nind Signed-off-by: Tomas Cohen Arazi -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sat Mar 9 14:08:16 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 09 Mar 2024 13:08:16 +0000 Subject: [Koha-bugs] [Bug 19605] ILL backends should be pluggable through regular Koha plugins In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=19605 --- Comment #25 from Tomás Cohen Arazi --- Created attachment 163005 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163005&action=edit Bug 19605: Tidy Signed-off-by: Tomas Cohen Arazi -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sat Mar 9 14:08:20 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 09 Mar 2024 13:08:20 +0000 Subject: [Koha-bugs] [Bug 19605] ILL backends should be pluggable through regular Koha plugins In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=19605 --- Comment #26 from Tomás Cohen Arazi --- Created attachment 163006 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163006&action=edit Bug 19605: Rename method and use the instantiated plugin in the call This patch makes the backend instantiation happen through a plugin object method instead of a static one. This way, the (already) instantiated plugin can be reused (if needed) in the plugin workflow like this: sub new_il_backend { my ($self, $params) = @_; return Custom::Backend->new( { config => $params->{config}, logger => $params->{logger}, plugin => $self, } ); } The passed plugin object would then be used to retrieve whatever plugin-defined configurations, template paths or even helper methods. On INN-Reach, it gives the backend access to API user agents, task queue injection, etc. This patch also renames the method so it is more straight-forward this is related to ILL. Signed-off-by: Tomas Cohen Arazi -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sat Mar 9 14:08:23 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 09 Mar 2024 13:08:23 +0000 Subject: [Koha-bugs] [Bug 19605] ILL backends should be pluggable through regular Koha plugins In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=19605 --- Comment #27 from Tomás Cohen Arazi --- Created attachment 163007 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163007&action=edit Bug 19605: Clarify method name Signed-off-by: Tomas Cohen Arazi -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sat Mar 9 14:13:15 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 09 Mar 2024 13:13:15 +0000 Subject: [Koha-bugs] [Bug 19605] ILL backends should be pluggable through regular Koha plugins In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=19605 --- Comment #28 from Tomás Cohen Arazi --- Sorry for the noise, I forgot to stamp my signature. Remarks: * I will submit on a follow-up bug an idea for some error checking we are lacking here. No rush though. Will do on monday for sure. * I didn't understand why you changed the expandTemplate method name here. No problem for me but we usually do it on a separate report. * I'm not sure we should tag 'this is the new way' in the code, as it might be confusing for readers a couple months later. I fixed this in one place, making the code and comments assume 'plugins is the way' and the 'old one' is a 'fallback' mechanism. I prefer such terminology. This all looks great. Awesome job! Sorry for the delay! -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sat Mar 9 14:16:56 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 09 Mar 2024 13:16:56 +0000 Subject: [Koha-bugs] [Bug 19605] ILL backends should be pluggable through regular Koha plugins In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=19605 Tomás Cohen Arazi changed: What |Removed |Added ---------------------------------------------------------------------------- URL| |https://github.com/ammopt/k | |oha-ill-backend-plugin -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sat Mar 9 14:19:39 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 09 Mar 2024 13:19:39 +0000 Subject: [Koha-bugs] [Bug 21821] We should bundle an up to date RangeMessage.xml for Business::ISBN In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=21821 --- Comment #3 from Katrin Fischer --- This sounds logical, what is required for bundling the newer file exactly? -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Sat Mar 9 14:24:50 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 09 Mar 2024 13:24:50 +0000 Subject: [Koha-bugs] [Bug 19605] ILL backends should be pluggable through regular Koha plugins In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=19605 --- Comment #29 from Tomás Cohen Arazi --- I've just sent a PR for adjusting the sample plugin to the proposed changes. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sat Mar 9 15:04:26 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 09 Mar 2024 14:04:26 +0000 Subject: [Koha-bugs] [Bug 36130] ILL batches table not showing all batches In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36130 Tomás Cohen Arazi changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |tomascohen at gmail.com Status|Signed Off |Failed QA --- Comment #7 from Tomás Cohen Arazi --- Pagination works are advertised with this patch. I had to use your data faker script [1] in order to test. But when I scroll down on the page, some weird behavior is trying to scroll up again. Please check. [1] https://github.com/ammopt/koha-ill-dev/blob/master/fake_data.pl -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sat Mar 9 16:59:50 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 09 Mar 2024 15:59:50 +0000 Subject: [Koha-bugs] [Bug 13932] Allow a header to be considered trusted to provide the userid In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=13932 Sven changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |sven+koha at geeq.de --- Comment #4 from Sven --- It would be really useful to get support for the REMOTE_USER environment variable as a way for authentication. This would at once enable support for many different authentication providers, for example mod_auth_openidc. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sat Mar 9 18:27:14 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 09 Mar 2024 17:27:14 +0000 Subject: [Koha-bugs] [Bug 36236] Web installer broken with error 500 In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36236 --- Comment #2 from Gabriele --- Hi Katrin, I followed your instructions and I solved it, in the meantime I had done another installation and by not installing the Italian language before doing the setup via the web it had worked as per the manual. At this point, do you think it could have been the Italian language? Thanks for replying to me even if it wasn't a BUG. I would like to ask you if you can kindly tell me if there is support, how much it costs and where I can find it in Italy. Thank you -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sat Mar 9 18:39:02 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 09 Mar 2024 17:39:02 +0000 Subject: [Koha-bugs] [Bug 36122] NEW_SUGGESTION is sent for every modification to the suggestion In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36122 Lucas Gass changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |lucas at bywatersolutions.com Status|Needs Signoff |Failed QA --- Comment #10 from Lucas Gass --- Mattais, Can you review these tests? Something seems not quite right: # Subtest: store 1..8 ok 1 - If suggesteddate not passed in, it will default to today ok 2 - If suggesteddate passed in, it should be taken into account ok 3 - If suggestion id modified, suggesteddate should not be modified ok 4 - If EmailPurchaseSuggestions is not enabled, a message should not be sent not ok 5 - No message was sent # Failed test 'No message was sent' # at /kohadevbox/koha/t/db_dependent/Koha/Suggestions.t line 89. ok 6 - If the status of suggestion is not set to ASKED, a message should not be sent ok 7 - store raises an exception on invalid STATUS ok 8 - UNKNOWN status stored # Looks like you failed 1 test of 8. not ok 1 - store Thanks! -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sat Mar 9 18:41:42 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 09 Mar 2024 17:41:42 +0000 Subject: [Koha-bugs] [Bug 35169] Make long overdue borrower category options configurable in interface In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35169 Lucas Gass changed: What |Removed |Added ---------------------------------------------------------------------------- Assignee|koha-bugs at lists.koha-commun |matthias.le-gac at inlibro.com |ity.org | -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Sat Mar 9 18:44:48 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 09 Mar 2024 17:44:48 +0000 Subject: [Koha-bugs] [Bug 36236] Web installer broken with error 500 In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36236 Katrin Fischer changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution|--- |FIXED --- Comment #3 from Katrin Fischer --- It could be that an error in the translation broke something in the process, that should not happen, but it does sometimes. You can find free and paid support options via the community website, see here: https://koha-community.org/support/ -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sat Mar 9 18:54:06 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 09 Mar 2024 17:54:06 +0000 Subject: [Koha-bugs] [Bug 35169] Make long overdue borrower category options configurable in interface In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35169 --- Comment #16 from Lucas Gass --- Created attachment 163008 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163008&action=edit Bug 35169: (follow-up) perltidy Signed-off-by: Lucas Gass -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sat Mar 9 18:54:21 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 09 Mar 2024 17:54:21 +0000 Subject: [Koha-bugs] [Bug 35169] Make long overdue borrower category options configurable in interface In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35169 Lucas Gass changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Needs Signoff |Signed Off -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sat Mar 9 18:56:52 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 09 Mar 2024 17:56:52 +0000 Subject: [Koha-bugs] [Bug 36270] Remove special handling for <> In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36270 --- Comment #7 from Lucas Gass --- (In reply to Martin Renvoize from comment #6) > Do you have any clues on how often it's used with repeatable attributes > Lucas? Sorry Martin, I cannot really say with any certainty. I know I see it, but cannot say how widespread it is. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sat Mar 9 19:01:37 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 09 Mar 2024 18:01:37 +0000 Subject: [Koha-bugs] [Bug 14806] Action Log for Modifying borrower messaging preferences In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=14806 Lucas Gass changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Needs Signoff |Failed QA CC| |lucas at bywatersolutions.com --- Comment #15 from Lucas Gass --- Lari, A couple things I see: 1. FAIL C4/Members/Messaging.pm FAIL pod coverage POD is missing for 'GetPatronMessagingPreferences' The new subroutine needs POD coverage. 2. Likely need unit test for sub GetPatronMessagingPreferences 3. Processing additional checks * Commit title does not start with 'Bug XXXXX: ' - 189e368f49 -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sat Mar 9 19:11:46 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 09 Mar 2024 18:11:46 +0000 Subject: [Koha-bugs] [Bug 36281] Restricted info is displayed even if item is not restricted (OPAC details) In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36281 Lucas Gass changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Needs Signoff |Signed Off -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sat Mar 9 19:11:47 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 09 Mar 2024 18:11:47 +0000 Subject: [Koha-bugs] [Bug 36281] Restricted info is displayed even if item is not restricted (OPAC details) In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36281 Lucas Gass changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #162950|0 |1 is obsolete| | --- Comment #3 from Lucas Gass --- Created attachment 163009 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163009&action=edit Bug 36281: Display restricted info only if item is not restricted (OPAC details) If you define a description for restricted = 0 : In OPAC details, restricted info is displayed even if item is not restricted (value 0). This patch fixes by adding 'IF item.restricted'. Also creates a BLOCK to avoid code duplication. Also adds span around status text to create easier translation. Test plan : 1) Create a description in restricted autorised values category for value 0 2) Create a description in restricted autorised values category for value 1 3) Edit an biblio record to add an item with restricted=0 and an item with restricted=1 4) Display this biblio on OPAC details page => Check you see resticted info only for restricted item Signed-off-by: Lucas Gass -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sat Mar 9 19:15:22 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 09 Mar 2024 18:15:22 +0000 Subject: [Koha-bugs] [Bug 36265] Bigger font-size for headers in staff interface In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36265 Lucas Gass changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |lucas at bywatersolutions.com --- Comment #4 from Lucas Gass --- I've heard this complaint also. Is setting the font-size to 110% the right way to handle this? Or should it be set to a px amount? Also, can't this be solved by simply using "CTRL +" and "CTRL -" ? -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sat Mar 9 19:18:33 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 09 Mar 2024 18:18:33 +0000 Subject: [Koha-bugs] [Bug 36282] OPAC - Remove trailing and leading blank space from translated strings In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36282 Lucas Gass changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Needs Signoff |Signed Off -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sat Mar 9 19:18:35 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 09 Mar 2024 18:18:35 +0000 Subject: [Koha-bugs] [Bug 36282] OPAC - Remove trailing and leading blank space from translated strings In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36282 Lucas Gass changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #162956|0 |1 is obsolete| | --- Comment #4 from Lucas Gass --- Created attachment 163010 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163010&action=edit Bug 36282: Chomp whitespace around opac i18n strings Same logic as bug 26816 but to OPAC Test plan: 1) Apply test plan patch only 2) Visit opac home: /cgi-bin/koha/opac-main.pl 3) Notice there's a space between 'Translated string' and ':', even though the markup does not contain a whitespace 4) Apply 2nd patch 5) Notice the white space is gone Signed-off-by: Lucas Gass -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sat Mar 9 20:50:41 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 09 Mar 2024 19:50:41 +0000 Subject: [Koha-bugs] [Bug 35788] Remove Koha::Template::Plugin::Biblio::BookingsCount In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35788 David Nind changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |david at davidnind.com Status|Passed QA |Patch doesn't apply --- Comment #10 from David Nind --- Patch doesn't apply - sha1/fake ancestor error: ... Apply? [(y)es, (n)o, (i)nteractive] y Applying: Bug 35788: Remove Koha::Template::Plugin::Biblio::BookingsCount error: sha1 information is lacking or useless (Koha/Template/Plugin/Biblio.pm). error: could not build fake ancestor Patch failed at 0001 Bug 35788: Remove Koha::Template::Plugin::Biblio::BookingsCount -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sat Mar 9 20:51:17 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 09 Mar 2024 19:51:17 +0000 Subject: [Koha-bugs] [Bug 36120] Add pickup locations to Bookings In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36120 David Nind changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Needs Signoff |Patch doesn't apply --- Comment #24 from David Nind --- For me, it was bug 35788 that was not applying with sha1/fake ancestor error: ... Apply? [(y)es, (n)o, (i)nteractive] y Applying: Bug 35788: Remove Koha::Template::Plugin::Biblio::BookingsCount error: sha1 information is lacking or useless (Koha/Template/Plugin/Biblio.pm). error: could not build fake ancestor Patch failed at 0001 Bug 35788: Remove Koha::Template::Plugin::Biblio::BookingsCount -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sat Mar 9 21:01:43 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 09 Mar 2024 20:01:43 +0000 Subject: [Koha-bugs] [Bug 35911] Archived suggestions show in patron's account In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35911 David Nind changed: What |Removed |Added ---------------------------------------------------------------------------- Text to go in the| |This fixes an unintended release notes| |change introduced in Koha | |22.11. Archived suggestions | |are now no longer shown on | |the patron's account page | |in the staff interface. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sat Mar 9 21:09:33 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 09 Mar 2024 20:09:33 +0000 Subject: [Koha-bugs] [Bug 35718] Remove ES6 warnings from JavaScript system preferences In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35718 David Nind changed: What |Removed |Added ---------------------------------------------------------------------------- Text to go in the| |This removes some warnings release notes| |when entering JavaScript in | |UserJS system preferences | |and library specific OPAC | |JS, when using ECMAScript 6 | |features/syntax. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sat Mar 9 21:16:52 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 09 Mar 2024 20:16:52 +0000 Subject: [Koha-bugs] [Bug 36235] System preferences chopping everything after a semicolon. In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36235 David Nind changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #162975|0 |1 is obsolete| | --- Comment #9 from David Nind --- Created attachment 163011 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163011&action=edit Bug 36235: Encode system preference data with encodeURIComponent To test: 1. Add some data to a freetext system preference like IntranetUserJS or AdditionalFieldsInZ3950ResultAuthSearch that includes a semicolon; 2. Save the pref and reload the page or check the DB. Everything after the semicolon is removed. 3. Apply patch, try again. Data should remain as is. Signed-off-by: Pedro Amorim Signed-off-by: David Nind -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sat Mar 9 21:19:55 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 09 Mar 2024 20:19:55 +0000 Subject: [Koha-bugs] [Bug 36235] System preferences chopping everything after a semicolon. In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36235 --- Comment #10 from David Nind --- Adding my sign off as well, in case that will help with QA. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sat Mar 9 21:52:44 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 09 Mar 2024 20:52:44 +0000 Subject: [Koha-bugs] [Bug 36013] update_totalissues.pl should not log In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36013 David Nind changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #162957|0 |1 is obsolete| | --- Comment #5 from David Nind --- Created attachment 163012 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163012&action=edit Bug 36013: update_totalissues.pl should not log Even when CataloguingLog is on, misc/cronjobs/update_totalissues.pl should not log the changes. It is useless and takes database space. Do like bulkmarcimport.pl : https://git.koha-community.org/Koha-community/Koha/src/branch/23.11.x/misc/migration_tools/bulkmarcimport.pl#L165 Test plan : 1) Enable system preference CataloguingLog 2) Perform some issues and returns 3) Run : misc/cronjobs/update_totalissues.pl --use-stats --commit=1000 -v 4) Go to Tools > Log viewer 5) Check there are no new cataloguing logs Signed-off-by: Magnus Enger Works as advertised. Before the patch, running the script adds one entry to action_logs per record, with the patch nothing is logged. Signed-off-by: David Nind -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sat Mar 9 22:02:55 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 09 Mar 2024 21:02:55 +0000 Subject: [Koha-bugs] [Bug 36013] update_totalissues.pl should not log In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36013 David Nind changed: What |Removed |Added ---------------------------------------------------------------------------- Text to go in the| |This updates logging when release notes| |the | |misc/cronjobs/update_totali | |ssues.pl script is run and | |CataloguingLog is enabled). | |This previously added one | |entry to the log for each | |record updated - this | |information is not useful | |and can take up a lot of | |database space. --- Comment #6 from David Nind --- THanks Magnus! Have added my sign off in case that helps with getting through QA. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sat Mar 9 23:05:37 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 09 Mar 2024 22:05:37 +0000 Subject: [Koha-bugs] [Bug 36150] Circulation home page styling does not match Cataloging home page styling In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36150 David Nind changed: What |Removed |Added ---------------------------------------------------------------------------- Text to go in the| |This fixes the styling of release notes| |the circulation home page | |for the staff interface. It | |is now consistent with the | |cataloging home page, and | |includes wider side | |margins. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sat Mar 9 23:15:02 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 09 Mar 2024 22:15:02 +0000 Subject: [Koha-bugs] [Bug 35532] Use of calendar for date range in bookings is not clear In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35532 David Nind changed: What |Removed |Added ---------------------------------------------------------------------------- Text to go in the| |This updates the bookings release notes| |feature to make selecting | |the booking period clearer: | |- Changes field label from | |'Period' to 'Booking dates' | |- Adds a hint added to | |indicate that you need to | |select a start and end date | |('Select the booking start | |and end date') | |- Removes | |the date shortcut options | |from the date picker, as | |they do not make sense for | |bookings -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sat Mar 9 23:15:52 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 09 Mar 2024 22:15:52 +0000 Subject: [Koha-bugs] [Bug 35351] Adjust basket details template to avoid showing empty page-section In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35351 David Nind changed: What |Removed |Added ---------------------------------------------------------------------------- Text to go in the|This enhancement removes |This removes the empty release notes|the empty white section in |white section in |acquisitions for a basket |acquisitions for a basket |with no orders. |with no orders. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sun Mar 10 00:11:37 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 09 Mar 2024 23:11:37 +0000 Subject: [Koha-bugs] [Bug 36237] Improve set-library UI after 34478 In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36237 David Nind changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Needs Signoff |Signed Off -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sun Mar 10 00:11:39 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 09 Mar 2024 23:11:39 +0000 Subject: [Koha-bugs] [Bug 36237] Improve set-library UI after 34478 In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36237 David Nind changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #162793|0 |1 is obsolete| | --- Comment #2 from David Nind --- Created attachment 163013 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163013&action=edit Bug 36237: UI improvments for set-library page To test: 1. Enable UseCirculationDesks, make some desks via UseCashRegisters > Circulation desks 2. Enable UseCashRegisters, make some registers via UseCashRegisters > Registers 3. Go to set library page. Try changing the branch, desk, or register. 4. See that UI could use some improvements. 5. APPLY patch 6. Try 3 again, making sure everything works right. Signed-off-by: David Nind -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sun Mar 10 00:15:57 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 09 Mar 2024 23:15:57 +0000 Subject: [Koha-bugs] [Bug 36237] Improve set-library UI after 34478 In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36237 David Nind changed: What |Removed |Added ---------------------------------------------------------------------------- Text to go in the| |This improves the user release notes| |interface when setting or | |editing the library, desk, | |and cash register | |(Circulation > Set library | |and desk): | |- Adds white | |background for the update | |successful page | |- Improves | |the messages about the | |updates made CC| |david at davidnind.com -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sun Mar 10 01:31:09 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sun, 10 Mar 2024 00:31:09 +0000 Subject: [Koha-bugs] [Bug 32693] The 'About Koha' page loads slowly In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=32693 David Nind changed: What |Removed |Added ---------------------------------------------------------------------------- Text to go in the| |This enhancement improves release notes| |the 'About Koha' page | |loading time. Instead of | |loading all the tabs at | |once, the content is loaded | |when the tab is selected. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sun Mar 10 03:12:26 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sun, 10 Mar 2024 02:12:26 +0000 Subject: [Koha-bugs] [Bug 36224] It looks like spsuggest functionality was removed years ago, but the templates still refer to it In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36224 David Nind changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Needs Signoff |Signed Off -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sun Mar 10 03:12:28 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sun, 10 Mar 2024 02:12:28 +0000 Subject: [Koha-bugs] [Bug 36224] It looks like spsuggest functionality was removed years ago, but the templates still refer to it In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36224 David Nind changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #162768|0 |1 is obsolete| | --- Comment #2 from David Nind --- Created attachment 163014 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163014&action=edit Bug 36224: Remove unused spsuggest from templates To test: -APPLY PATCH -Review the OPAC results and staff interface results pages. -Nothing should change, it would be impossible to end up inside of the [% IF koha_spsuggest %] condition because there is nothing like that in the scripts! Signed-off-by: David Nind -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sun Mar 10 03:19:17 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sun, 10 Mar 2024 02:19:17 +0000 Subject: [Koha-bugs] [Bug 36082] OPACResultsSideBar not working with library specific message In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36082 David Nind changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Needs Signoff |Signed Off -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sun Mar 10 03:19:19 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sun, 10 Mar 2024 02:19:19 +0000 Subject: [Koha-bugs] [Bug 36082] OPACResultsSideBar not working with library specific message In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36082 David Nind changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #162628|0 |1 is obsolete| | --- Comment #3 from David Nind --- Created attachment 163015 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163015&action=edit Bug 36082: Set branchcode correctly in opac-facets.inc 1. Tools> HTML Customization 2. Choose OPACresultssidebar 3. Create an entry specific to a library. 4. Also try to add this same entry into a translation tab, if installed. 5. Go to the OPAC 6. Login as a patron of that library that the specific OPACresultsidebar is assigned to 7. Search the catalog, and look below the facets,where the OPACresultssidebar would appear. 8. No text. 9. APPLY PATCH 10. Try step 7 again. 11. TEXT! Signed-off-by: David Nind -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sun Mar 10 16:57:55 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sun, 10 Mar 2024 15:57:55 +0000 Subject: [Koha-bugs] [Bug 20271] Merge deleted biblio, biblioitems, biblio_metadata, and items tables In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=20271 Cab Vinton changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |bibliwho at gmail.com -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 11 08:49:12 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 11 Mar 2024 07:49:12 +0000 Subject: [Koha-bugs] [Bug 35826] Optimize building of holds queue based on transport cost matrix In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35826 --- Comment #22 from Andreas Jonsson --- Created attachment 163017 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163017&action=edit Bug 35826: Keep items on retry. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 11 08:49:15 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 11 Mar 2024 07:49:15 +0000 Subject: [Koha-bugs] [Bug 35826] Optimize building of holds queue based on transport cost matrix In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35826 --- Comment #23 from Andreas Jonsson --- Created attachment 163018 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163018&action=edit Bug 35826: Add unit tests. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 11 09:06:52 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 11 Mar 2024 08:06:52 +0000 Subject: [Koha-bugs] [Bug 35248] Bookings needs unit tests In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35248 Martin Renvoize changed: What |Removed |Added ---------------------------------------------------------------------------- URL| |https://github.com/PTFS-Eur | |ope/koha/tree/bug_35248 -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 11 09:07:10 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 11 Mar 2024 08:07:10 +0000 Subject: [Koha-bugs] [Bug 35248] Bookings needs unit tests In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35248 --- Comment #69 from Martin Renvoize --- Seems we're having sha1 issues.. branch pushed to https://github.com/PTFS-Europe/koha/tree/bug_35248 -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 11 09:09:11 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 11 Mar 2024 08:09:11 +0000 Subject: [Koha-bugs] [Bug 35788] Remove Koha::Template::Plugin::Biblio::BookingsCount In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35788 Martin Renvoize changed: What |Removed |Added ---------------------------------------------------------------------------- URL| |https://github.com/PTFS-Eur | |ope/koha/tree/bug_35788 -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 11 09:09:21 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 11 Mar 2024 08:09:21 +0000 Subject: [Koha-bugs] [Bug 35788] Remove Koha::Template::Plugin::Biblio::BookingsCount In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35788 --- Comment #11 from Martin Renvoize --- Branch pushed to https://github.com/PTFS-Europe/koha/tree/bug_35788 -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 11 09:11:42 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 11 Mar 2024 08:11:42 +0000 Subject: [Koha-bugs] [Bug 35787] Remove Koha::Template::Plugin::Biblio::CanBook In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35787 Martin Renvoize changed: What |Removed |Added ---------------------------------------------------------------------------- URL| |https://github.com/PTFS-Eur | |ope/koha/tree/bug_35787 -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 11 09:11:49 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 11 Mar 2024 08:11:49 +0000 Subject: [Koha-bugs] [Bug 35787] Remove Koha::Template::Plugin::Biblio::CanBook In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35787 --- Comment #7 from Martin Renvoize --- Branch pushed https://github.com/PTFS-Europe/koha/tree/bug_35787 -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 11 09:12:57 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 11 Mar 2024 08:12:57 +0000 Subject: [Koha-bugs] [Bug 36120] Add pickup locations to Bookings In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36120 Martin Renvoize changed: What |Removed |Added ---------------------------------------------------------------------------- URL| |https://github.com/PTFS-Eur | |ope/koha/tree/bug_36120 --- Comment #25 from Martin Renvoize --- https://github.com/PTFS-Europe/koha/tree/bug_36120 -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 11 09:13:05 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 11 Mar 2024 08:13:05 +0000 Subject: [Koha-bugs] [Bug 36120] Add pickup locations to Bookings In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36120 Martin Renvoize changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Patch doesn't apply |Needs Signoff -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 11 09:13:17 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 11 Mar 2024 08:13:17 +0000 Subject: [Koha-bugs] [Bug 35788] Remove Koha::Template::Plugin::Biblio::BookingsCount In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35788 Martin Renvoize changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Patch doesn't apply |Passed QA -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 11 09:14:39 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 11 Mar 2024 08:14:39 +0000 Subject: [Koha-bugs] [Bug 35782] Remove Koha::Template::Plugin::Biblio::HoldsCount In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35782 Martin Renvoize changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Patch doesn't apply |Passed QA URL| |https://github.com/PTFS-Eur | |ope/koha/tree/bug_35782 --- Comment #11 from Martin Renvoize --- Pushed a branch: https://github.com/PTFS-Europe/koha/tree/bug_35782 -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 11 09:30:55 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 11 Mar 2024 08:30:55 +0000 Subject: [Koha-bugs] [Bug 2244] RFID Cataloguing - Programming RFID tags from Koha In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=2244 --- Comment #11 from Jan Kissig --- sorry for the last comment, now the real one. I am working on Koha and Rfid integration for a little time now and wanted to share some insights. My library migrates from a system that has full RFID staff integration (single and bulk items checkin and checkout, writing data model to tags, secure, desecure). The self service station is using SIP2 which is already implemented in Koha and works fine. This is what my staff integration does so far: 1. Koha plugin - JS injection to circulation, returns and add item - Checkin and Checkout via AJAX to offline_circ/service.pl (details later) - rfid device is accessed via 2. or via webusb (depending on the reader) 2. A node backend server offering a RESTlike and a websocket interface to attached RFID readers commonly used in Germany (FEIG) 3. JS library to convert a 28560-3 JSON data model to bytecode This works pretty good but is using the offline circulation endpoint to fetch if a transaction was ok or not. Better would be using the API which is still in progress (#24401, #23336) If there is any interest the RFID backend is on github - https://github.com/BibliothekTHWildau/node-rfid-server ISO28560 conversion: - https://github.com/BibliothekTHWildau/ISO28560-3js Koha-Plugin: - not published yet for feedback or if someone wants to join developing a RFID plugin please feel free to contact me. -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Mon Mar 11 09:32:42 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 11 Mar 2024 08:32:42 +0000 Subject: [Koha-bugs] [Bug 36265] Bigger font-size for headers in staff interface In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36265 --- Comment #5 from Fridolin Somers --- (In reply to Lucas Gass from comment #4) > I've heard this complaint also. > > Is setting the font-size to 110% the right way to handle this? Or should it > be set to a px amount? I see there are existing rules with % (for example h1, h2...). But I'm not CSS expert. I add Owen for advice. > > Also, can't this be solved by simply using "CTRL +" and "CTRL -" ? Ah but that increases all texts ;) -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 11 09:32:52 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 11 Mar 2024 08:32:52 +0000 Subject: [Koha-bugs] [Bug 36265] Bigger font-size for headers in staff interface In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36265 Fridolin Somers changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |oleonard at myacpl.org -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 11 09:41:29 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 11 Mar 2024 08:41:29 +0000 Subject: [Koha-bugs] [Bug 35949] Useless code pointing to branchreserves.pl in request.tt In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35949 Fridolin Somers changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Pushed to master |Pushed to stable CC| |fridolin.somers at biblibre.co | |m Version(s)|24.05.00 |24.05.00,23.11.04 released in| | --- Comment #5 from Fridolin Somers --- Pushed to 23.11.x for 23.11.04 -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 11 09:44:00 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 11 Mar 2024 08:44:00 +0000 Subject: [Koha-bugs] [Bug 36017] Dead code in admin/clone-rules In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36017 Fridolin Somers changed: What |Removed |Added ---------------------------------------------------------------------------- Resolution|--- |FIXED Status|Pushed to master |RESOLVED CC| |fridolin.somers at biblibre.co | |m --- Comment #5 from Fridolin Somers --- Enhancement not pushed to 23.11.x -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 11 09:44:00 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 11 Mar 2024 08:44:00 +0000 Subject: [Koha-bugs] [Bug 34478] Full CSRF protection In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=34478 Bug 34478 depends on bug 36017, which changed state. Bug 36017 Summary: Dead code in admin/clone-rules https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36017 What |Removed |Added ---------------------------------------------------------------------------- Status|Pushed to master |RESOLVED Resolution|--- |FIXED -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 11 09:44:26 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 11 Mar 2024 08:44:26 +0000 Subject: [Koha-bugs] [Bug 36019] Dead code in tags/review In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36019 Fridolin Somers changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Pushed to master |RESOLVED Resolution|--- |FIXED CC| |fridolin.somers at biblibre.co | |m --- Comment #4 from Fridolin Somers --- Enhancement not pushed to 23.11.x -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 11 09:44:26 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 11 Mar 2024 08:44:26 +0000 Subject: [Koha-bugs] [Bug 34478] Full CSRF protection In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=34478 Bug 34478 depends on bug 36019, which changed state. Bug 36019 Summary: Dead code in tags/review https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36019 What |Removed |Added ---------------------------------------------------------------------------- Status|Pushed to master |RESOLVED Resolution|--- |FIXED -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 11 09:45:43 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 11 Mar 2024 08:45:43 +0000 Subject: [Koha-bugs] [Bug 34478] Full CSRF protection In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=34478 --- Comment #182 from Fridolin Somers --- Not for backport I bet ? -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 11 09:48:03 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 11 Mar 2024 08:48:03 +0000 Subject: [Koha-bugs] [Bug 35904] C4::Auth::checkauth cannot be tested easily In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35904 Fridolin Somers changed: What |Removed |Added ---------------------------------------------------------------------------- Version(s)|24.05.00 |24.05.00,23.11.03 released in| | CC| |fridolin.somers at biblibre.co | |m Status|Pushed to master |Pushed to stable --- Comment #23 from Fridolin Somers --- Pushed to 23.11.03 -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 11 09:48:23 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 11 Mar 2024 08:48:23 +0000 Subject: [Koha-bugs] [Bug 35904] C4::Auth::checkauth cannot be tested easily In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35904 Fridolin Somers changed: What |Removed |Added ---------------------------------------------------------------------------- Version(s)|24.05.00,23.11.03 |24.05.00,23.11.03,23.05.09 released in| | Status|Pushed to stable |Pushed to oldstable -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 11 09:48:52 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 11 Mar 2024 08:48:52 +0000 Subject: [Koha-bugs] [Bug 35904] C4::Auth::checkauth cannot be tested easily In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35904 --- Comment #24 from Fridolin Somers --- I see it in 23.05.09 -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 11 09:49:21 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 11 Mar 2024 08:49:21 +0000 Subject: [Koha-bugs] [Bug 35904] C4::Auth::checkauth cannot be tested easily In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35904 --- Comment #25 from Fridolin Somers --- Arf I dont see it in 22.11.x which contains Bug 35890 -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 11 09:49:34 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 11 Mar 2024 08:49:34 +0000 Subject: [Koha-bugs] [Bug 35904] C4::Auth::checkauth cannot be tested easily In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35904 Fridolin Somers changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |frederic at tamil.fr -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 11 09:57:09 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 11 Mar 2024 08:57:09 +0000 Subject: [Koha-bugs] [Bug 36092] sessionID not passed to the template on auth.tt In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36092 Fridolin Somers changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |fridolin.somers at biblibre.co | |m Status|Pushed to master |Pushed to stable Version(s)|24.05.00 |24.05.00,23.11.03 released in| | --- Comment #17 from Fridolin Somers --- Pushed to 23.11.03 -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 11 09:57:57 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 11 Mar 2024 08:57:57 +0000 Subject: [Koha-bugs] [Bug 36092] sessionID not passed to the template on auth.tt In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36092 Fridolin Somers changed: What |Removed |Added ---------------------------------------------------------------------------- Version(s)|24.05.00,23.11.03 |24.05.00,23.11.03,23.05.09 released in| | Status|Pushed to stable |Pushed to oldstable --- Comment #18 from Fridolin Somers --- In 23.05.09 -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 11 09:58:29 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 11 Mar 2024 08:58:29 +0000 Subject: [Koha-bugs] [Bug 36092] sessionID not passed to the template on auth.tt In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36092 --- Comment #19 from Fridolin Somers --- I see it in 22.05.x but not in 22.11.x -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 11 10:02:14 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 11 Mar 2024 09:02:14 +0000 Subject: [Koha-bugs] [Bug 35935] Wrong branch picked after an incorrect login In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35935 Fridolin Somers changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |fridolin.somers at biblibre.co | |m Status|Pushed to master |Pushed to stable Version(s)|24.05.00 |24.05.00,23.11.04 released in| | --- Comment #5 from Fridolin Somers --- Pushed to 23.11.x for 23.11.04 -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 11 10:03:19 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 11 Mar 2024 09:03:19 +0000 Subject: [Koha-bugs] [Bug 36098] Create Koha::Session module In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36098 Fridolin Somers changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Pushed to master |Pushed to stable Version(s)|24.05.00 |24.05.00,23.11.04 released in| | CC| |fridolin.somers at biblibre.co | |m --- Comment #20 from Fridolin Somers --- Pushed to 23.11.x for 23.11.04 -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 11 10:06:13 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 11 Mar 2024 09:06:13 +0000 Subject: [Koha-bugs] [Bug 35955] New CSRF token generated everytime we need one In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35955 --- Comment #12 from Fridolin Somers --- May we backport this for better performance ? -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 11 10:07:57 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 11 Mar 2024 09:07:57 +0000 Subject: [Koha-bugs] [Bug 35329] Move patron searches to a modal In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35329 Fridolin Somers changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Pushed to master |Needs documenting CC| |fridolin.somers at biblibre.co | |m --- Comment #165 from Fridolin Somers --- Enhancement not pushed to 23.11.x -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 11 10:09:43 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 11 Mar 2024 09:09:43 +0000 Subject: [Koha-bugs] [Bug 35426] Improve layout of bookings modal form In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35426 Fridolin Somers changed: What |Removed |Added ---------------------------------------------------------------------------- Version(s)|24.05.00 |24.05.00,23.11.04 released in| | Status|Pushed to master |Pushed to stable CC| |fridolin.somers at biblibre.co | |m --- Comment #9 from Fridolin Somers --- Small enhancement, I choose to backport Pushed to 23.11.x for 23.11.04 -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 11 10:10:42 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 11 Mar 2024 09:10:42 +0000 Subject: [Koha-bugs] [Bug 35426] Improve layout of bookings modal form In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35426 Fridolin Somers changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Pushed to stable |ASSIGNED Version(s)|24.05.00,23.11.04 |24.05.00 released in| | --- Comment #10 from Fridolin Somers --- Ah reading comments I prefer not backport -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 11 10:11:04 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 11 Mar 2024 09:11:04 +0000 Subject: [Koha-bugs] [Bug 35426] Improve layout of bookings modal form In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35426 Fridolin Somers changed: What |Removed |Added ---------------------------------------------------------------------------- Status|ASSIGNED |Passed QA -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 11 10:11:09 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 11 Mar 2024 09:11:09 +0000 Subject: [Koha-bugs] [Bug 35426] Improve layout of bookings modal form In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35426 Fridolin Somers changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Passed QA |Pushed to master -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 11 10:13:27 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 11 Mar 2024 09:13:27 +0000 Subject: [Koha-bugs] [Bug 35532] Use of calendar for date range in bookings is not clear In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35532 Fridolin Somers changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |fridolin.somers at biblibre.co | |m --- Comment #16 from Fridolin Somers --- Depends on Bug 35426 not in 23.11.x -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 11 10:15:00 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 11 Mar 2024 09:15:00 +0000 Subject: [Koha-bugs] [Bug 36156] Duplicate selected value when a field or subfield is cloned In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36156 Fridolin Somers changed: What |Removed |Added ---------------------------------------------------------------------------- Version(s)|24.05.00 |24.05.00,23.11.04 released in| | CC| |fridolin.somers at biblibre.co | |m Status|Pushed to master |Pushed to stable --- Comment #6 from Fridolin Somers --- Looks like a bug. I backport Pushed to 23.11.x for 23.11.04 -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 11 10:20:55 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 11 Mar 2024 09:20:55 +0000 Subject: [Koha-bugs] [Bug 36158] Text on the "Show SQL code" button at guided_reports.pl breaks if report notice templates exist In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36158 Fridolin Somers changed: What |Removed |Added ---------------------------------------------------------------------------- Version(s)|24.05.00 |24.05.00,23.11.04 released in| | Status|Pushed to master |Pushed to stable CC| |fridolin.somers at biblibre.co | |m --- Comment #6 from Fridolin Somers --- Pushed to 23.11.x for 23.11.04 -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 11 10:22:09 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 11 Mar 2024 09:22:09 +0000 Subject: [Koha-bugs] [Bug 36158] Text on the "Show SQL code" button at guided_reports.pl breaks if report notice templates exist In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36158 --- Comment #7 from Fridolin Somers --- (In reply to Martin Renvoize from comment #3) > Created attachment 162581 [details] [review] > Bug 36158: Update t iterator variable > > It seems like its causing some sort of conflict with t('Hide SQL code') > further down below in the code, but I'm not sure why. > > Signed-off-by: Kyle M Hall > Signed-off-by: Martin Renvoize Arf there are other places with a var named "t" in TT : > git grep 'FOREACH t IN' origin/master:koha-tmpl/intranet-tmpl/prog/en/modules/admin/auth_subfields_structure.tt: [%- FOREACH t IN [ '0', '1', '2', '3', '4', '5', '6', '7', '8', '9', '10'] -%] origin/master:koha-tmpl/intranet-tmpl/prog/en/modules/admin/marc_subfields_structure.tt: [%- FOREACH t IN [ '0', '1', '2', '3', '4', '5', '6', '7', '8', '9'] -%] origin/master:koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/additem.tt: [% FOREACH t IN item_templates.owned %] origin/master:koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/additem.tt: [% FOREACH t IN item_templates.shared %] origin/master:koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/additem.tt: [% FOREACH t IN item_templates.owned %] origin/master:koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/additem.tt: [% FOREACH t IN item_templates.shared %] origin/master:koha-tmpl/intranet-tmpl/prog/en/modules/clubs/clubs.tt: [% FOREACH t IN club_templates %] origin/master:koha-tmpl/intranet-tmpl/prog/en/modules/clubs/clubs.tt: [% FOREACH t IN club_templates %] origin/master:koha-tmpl/intranet-tmpl/prog/en/modules/course_reserves/course.tt: [% FOREACH t IN terms %] -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 11 10:23:59 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 11 Mar 2024 09:23:59 +0000 Subject: [Koha-bugs] [Bug 36157] Links in the "Run with template" dropdown at guided_reports.pl have odd formatting In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36157 Fridolin Somers changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |fridolin.somers at biblibre.co | |m Version(s)|24.05.00 |24.05.00,23.11.04 released in| | Status|Pushed to master |Pushed to stable --- Comment #7 from Fridolin Somers --- Pushed to 23.11.x for 23.11.04 -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 11 10:24:49 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 11 Mar 2024 09:24:49 +0000 Subject: [Koha-bugs] [Bug 36099] JS error in console on non-existent biblio record In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36099 Fridolin Somers changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |fridolin.somers at biblibre.co | |m Version(s)|24.05.00 |24.05.00,23.11.04 released in| | Status|Pushed to master |Pushed to stable --- Comment #5 from Fridolin Somers --- Pushed to 23.11.x for 23.11.04 -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 11 10:25:38 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 11 Mar 2024 09:25:38 +0000 Subject: [Koha-bugs] [Bug 36091] Spelling: Use "card number" instead of cardnumber in text In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36091 Fridolin Somers changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |fridolin.somers at biblibre.co | |m Version(s)|24.05.00 |24.05.00,23.11.04 released in| | Status|Pushed to master |Pushed to stable --- Comment #6 from Fridolin Somers --- Pushed to 23.11.x for 23.11.04 -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 11 10:30:18 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 11 Mar 2024 09:30:18 +0000 Subject: [Koha-bugs] [Bug 36088] Remove useless code form opac-account-pay.pl In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36088 Fridolin Somers changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Pushed to master |Pushed to stable CC| |fridolin.somers at biblibre.co | |m Version(s)|24.05.00 |24.05.00,23.11.04 released in| | --- Comment #7 from Fridolin Somers --- Pushed to 23.11.x for 23.11.04 -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 11 10:30:58 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 11 Mar 2024 09:30:58 +0000 Subject: [Koha-bugs] [Bug 36000] Fix CGI::param called in list context from catalogue/search.pl In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36000 Fridolin Somers changed: What |Removed |Added ---------------------------------------------------------------------------- Version(s)|24.05.00 |24.05.00,23.11.04 released in| | Status|Pushed to master |Pushed to stable CC| |fridolin.somers at biblibre.co | |m --- Comment #4 from Fridolin Somers --- Pushed to 23.11.x for 23.11.04 -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 11 10:33:54 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 11 Mar 2024 09:33:54 +0000 Subject: [Koha-bugs] [Bug 35397] SIP2AddOpacMessagesToScreenMessage syspref description issue In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35397 Fridolin Somers changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |fridolin.somers at biblibre.co | |m Version(s)|24.05.00 |24.05.00,23.11.04 released in| | Status|Pushed to master |Pushed to stable --- Comment #6 from Fridolin Somers --- Pushed to 23.11.x for 23.11.04 -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 11 10:35:25 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 11 Mar 2024 09:35:25 +0000 Subject: [Koha-bugs] [Bug 35422] Unexpected translation string for Suggestions template In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35422 Fridolin Somers changed: What |Removed |Added ---------------------------------------------------------------------------- Depends on| |33908 CC| |fridolin.somers at biblibre.co | |m Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33908 [Bug 33908] Improve translation of title tags: Acquisitions -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 11 10:35:25 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 11 Mar 2024 09:35:25 +0000 Subject: [Koha-bugs] [Bug 33908] Improve translation of title tags: Acquisitions In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33908 Fridolin Somers changed: What |Removed |Added ---------------------------------------------------------------------------- Blocks| |35422 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35422 [Bug 35422] Unexpected translation string for Suggestions template -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 11 10:35:41 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 11 Mar 2024 09:35:41 +0000 Subject: [Koha-bugs] [Bug 35422] Unexpected translation string for Suggestions template In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35422 Fridolin Somers changed: What |Removed |Added ---------------------------------------------------------------------------- Version(s)|24.05.00 |24.05.00,23.11.04 released in| | Status|Pushed to master |Pushed to stable --- Comment #5 from Fridolin Somers --- Pushed to 23.11.x for 23.11.04 -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 11 10:36:27 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 11 Mar 2024 09:36:27 +0000 Subject: [Koha-bugs] [Bug 35351] Adjust basket details template to avoid showing empty page-section In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35351 Fridolin Somers changed: What |Removed |Added ---------------------------------------------------------------------------- Version(s)|24.05.00 |24.05.00,23.11.04 released in| | Status|Pushed to master |Pushed to stable CC| |fridolin.somers at biblibre.co | |m --- Comment #6 from Fridolin Somers --- Pushed to 23.11.x for 23.11.04 -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 11 10:37:13 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 11 Mar 2024 09:37:13 +0000 Subject: [Koha-bugs] [Bug 35398] EDI: Fix support for LRP (Library Rotation Plan) for Koha with Stock Rotation enabled In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35398 Fridolin Somers changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Pushed to master |Pushed to stable CC| |fridolin.somers at biblibre.co | |m Version(s)|24.05.00 |24.05.00,23.11.04 released in| | --- Comment #18 from Fridolin Somers --- Pushed to 23.11.x for 23.11.04 -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 11 10:38:17 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 11 Mar 2024 09:38:17 +0000 Subject: [Koha-bugs] [Bug 36150] Circulation home page styling does not match Cataloging home page styling In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36150 Fridolin Somers changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Pushed to master |Pushed to stable CC| |fridolin.somers at biblibre.co | |m Version(s)|24.05.00 |24.05.00,23.11.04 released in| | --- Comment #8 from Fridolin Somers --- Pushed to 23.11.x for 23.11.04 -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 11 10:38:56 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 11 Mar 2024 09:38:56 +0000 Subject: [Koha-bugs] [Bug 36009] Document koha-worker --queue elastic_index In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36009 Fridolin Somers changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |fridolin.somers at biblibre.co | |m Version(s)|24.05.00 |24.05.00,23.11.04 released in| | Status|Pushed to master |Pushed to stable --- Comment #8 from Fridolin Somers --- Pushed to 23.11.x for 23.11.04 -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 11 10:39:45 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 11 Mar 2024 09:39:45 +0000 Subject: [Koha-bugs] [Bug 35554] Authority search popup is only 700px In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35554 Fridolin Somers changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Pushed to master |Pushed to stable Version(s)|24.05.00 |24.05.00,23.11.04 released in| | --- Comment #15 from Fridolin Somers --- Pushed to 23.11.x for 23.11.04 -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 11 10:41:44 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 11 Mar 2024 09:41:44 +0000 Subject: [Koha-bugs] [Bug 35952] Removed unnecessary line in opac-blocked.pl In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35952 Fridolin Somers changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |fridolin.somers at biblibre.co | |m Depends on| |34894 --- Comment #5 from Fridolin Somers --- Bug 34894 moved preference to HTML customization Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=34894 [Bug 34894] Convert OpacSuppressionMessage system preference to HTML customization -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 11 10:41:44 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 11 Mar 2024 09:41:44 +0000 Subject: [Koha-bugs] [Bug 34894] Convert OpacSuppressionMessage system preference to HTML customization In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=34894 Fridolin Somers changed: What |Removed |Added ---------------------------------------------------------------------------- Blocks| |35952 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35952 [Bug 35952] Removed unnecessary line in opac-blocked.pl -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 11 10:42:12 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 11 Mar 2024 09:42:12 +0000 Subject: [Koha-bugs] [Bug 35952] Removed unnecessary line in opac-blocked.pl In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35952 Fridolin Somers changed: What |Removed |Added ---------------------------------------------------------------------------- Version(s)|24.05.00 |24.05.00,23.11.04 released in| | Status|Pushed to master |Pushed to stable --- Comment #6 from Fridolin Somers --- Pushed to 23.11.x for 23.11.04 -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 11 10:43:11 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 11 Mar 2024 09:43:11 +0000 Subject: [Koha-bugs] [Bug 35963] Problem using some filters in the bundled items table In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35963 Fridolin Somers changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |fridolin.somers at biblibre.co | |m Version(s)|24.05.00 |24.05.00,23.11.04 released in| | Status|Pushed to master |Pushed to stable --- Comment #11 from Fridolin Somers --- Pushed to 23.11.x for 23.11.04 -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 11 10:43:45 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 11 Mar 2024 09:43:45 +0000 Subject: [Koha-bugs] [Bug 36076] paycollect.tt is missing permission checks for manual credit and invoice In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36076 Fridolin Somers changed: What |Removed |Added ---------------------------------------------------------------------------- Version(s)|24.05.00 |24.05.00,23.11.04 released in| | Status|Pushed to master |Pushed to stable --- Comment #8 from Fridolin Somers --- Pushed to 23.11.x for 23.11.04 -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 11 10:44:40 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 11 Mar 2024 09:44:40 +0000 Subject: [Koha-bugs] [Bug 36140] Wrong for attribute on Invoice number: label in invoice.tt In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36140 Fridolin Somers changed: What |Removed |Added ---------------------------------------------------------------------------- Version(s)|24.05.00 |24.05.00,23.11.04 released in| | Status|Pushed to master |Pushed to stable CC| |fridolin.somers at biblibre.co | |m --- Comment #7 from Fridolin Somers --- Pushed to 23.11.x for 23.11.04 -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 11 10:49:40 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 11 Mar 2024 09:49:40 +0000 Subject: [Koha-bugs] [Bug 36175] Checking out items that are booked doesn't quite work In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36175 Fridolin Somers changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Pushed to master |Pushed to stable Version(s)|24.05.00 |24.05.00,23.11.04 released in| | CC| |fridolin.somers at biblibre.co | |m --- Comment #5 from Fridolin Somers --- Pushed to 23.11.x for 23.11.04 -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 11 10:54:22 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 11 Mar 2024 09:54:22 +0000 Subject: [Koha-bugs] [Bug 35819] "No job found" error for BatchUpdateBiblioHoldsQueue (race condition) In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35819 Fridolin Somers changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |fridolin.somers at biblibre.co | |m Version(s)|24.05.00 |24.05.00,23.11.04 released in| | Status|Pushed to master |Pushed to stable --- Comment #51 from Fridolin Somers --- Pushed to 23.11.x for 23.11.04 -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 11 10:57:31 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 11 Mar 2024 09:57:31 +0000 Subject: [Koha-bugs] [Bug 35913] Item order prices do not fall back to MarcFieldsToOrder if not set by MarcItemFieldsToOrder In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35913 Fridolin Somers changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Pushed to master |Pushed to stable CC| |fridolin.somers at biblibre.co | |m Version(s)|24.05.00 |24.05.00,23.11.04 released in| | --- Comment #7 from Fridolin Somers --- Pushed to 23.11.x for 23.11.04 -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 11 10:59:07 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 11 Mar 2024 09:59:07 +0000 Subject: [Koha-bugs] [Bug 36047] Apostrophe in suggestion status reason blocks order receipt In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36047 Fridolin Somers changed: What |Removed |Added ---------------------------------------------------------------------------- Version(s)|24.05.00 |24.05.00,23.11.04 released in| | CC| |fridolin.somers at biblibre.co | |m Status|Pushed to master |Pushed to stable --- Comment #12 from Fridolin Somers --- Pushed to 23.11.x for 23.11.04 -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 11 11:00:42 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 11 Mar 2024 10:00:42 +0000 Subject: [Koha-bugs] [Bug 36100] Regression in bookings edit In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36100 Fridolin Somers changed: What |Removed |Added ---------------------------------------------------------------------------- Version(s)|24.05.00 |24.05.00,23.11.04 released in| | Status|Pushed to master |Pushed to stable CC| |fridolin.somers at biblibre.co | |m -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 11 11:04:53 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 11 Mar 2024 10:04:53 +0000 Subject: [Koha-bugs] [Bug 31427] Automatic renewal errors should come before many other renewal errors In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31427 Fridolin Somers changed: What |Removed |Added ---------------------------------------------------------------------------- Version(s)|24.05.00 |24.05.00,23.11.04 released in| | Status|Pushed to master |Pushed to stable CC| |fridolin.somers at biblibre.co | |m --- Comment #40 from Fridolin Somers --- Pushed to 23.11.x for 23.11.04 -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 11 11:06:10 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 11 Mar 2024 10:06:10 +0000 Subject: [Koha-bugs] [Bug 35892] Fallback to GetMarcPrice in addorderiso2907 no longer works In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35892 Fridolin Somers changed: What |Removed |Added ---------------------------------------------------------------------------- Version(s)|24.05.00 |24.05.00,23.11.04 released in| | Status|Pushed to master |Pushed to stable CC| |fridolin.somers at biblibre.co | |m --- Comment #8 from Fridolin Somers --- Pushed to 23.11.x for 23.11.04 -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 11 11:11:06 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 11 Mar 2024 10:11:06 +0000 Subject: [Koha-bugs] [Bug 32729] Deleting an item removes the itemnumber from old_issues when it probably should not In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=32729 Lari Strand changed: What |Removed |Added ---------------------------------------------------------------------------- Patch complexity|--- |Small patch Status|NEW |Needs Signoff -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 11 11:11:09 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 11 Mar 2024 10:11:09 +0000 Subject: [Koha-bugs] [Bug 32729] Deleting an item removes the itemnumber from old_issues when it probably should not In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=32729 --- Comment #4 from Lari Strand --- Created attachment 163019 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163019&action=edit Bug 32729: Drop constraint to items.itemnumber from old_issues-table This patch removes the constraint from old_issues table to the items table so a deleted item's itemnumber will be preserved in the old issues table. To test: 1. Apply patch 2. run updatedatabase.pl 3. Check constraint old_issues_ibfk_2 has been dropped -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 11 11:11:17 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 11 Mar 2024 10:11:17 +0000 Subject: [Koha-bugs] [Bug 34234] Item groups dropdown in detail page modal does not respect display order In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=34234 Fridolin Somers changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |fridolin.somers at biblibre.co | |m --- Comment #20 from Fridolin Somers --- Maybe we should move this order by inside Koha::Biblio::item_groups -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 11 11:11:38 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 11 Mar 2024 10:11:38 +0000 Subject: [Koha-bugs] [Bug 34234] Item groups dropdown in detail page modal does not respect display order In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=34234 Fridolin Somers changed: What |Removed |Added ---------------------------------------------------------------------------- Version(s)|24.05.00 |24.05.00,23.11.04 released in| | Status|Pushed to master |Pushed to stable --- Comment #21 from Fridolin Somers --- Pushed to 23.11.x for 23.11.04 -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 11 11:12:56 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 11 Mar 2024 10:12:56 +0000 Subject: [Koha-bugs] [Bug 36170] Wrong warning in memberentry In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36170 Fridolin Somers changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |fridolin.somers at biblibre.co | |m Version(s)|24.05.00 |24.05.00,23.11.04 released in| | Status|Pushed to master |Pushed to stable --- Comment #3 from Fridolin Somers --- Pushed to 23.11.x for 23.11.04 -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 11 11:17:23 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 11 Mar 2024 10:17:23 +0000 Subject: [Koha-bugs] [Bug 32029] Automatic item modifications by age missing biblio table In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=32029 Fridolin Somers changed: What |Removed |Added ---------------------------------------------------------------------------- Version(s)|24.05.00,23.11.03 |24.05.00,23.11.04 released in| | --- Comment #21 from Fridolin Somers --- (In reply to Fridolin Somers from comment #19) > Pushed to 23.11.x for 23.11.03 Oh strange it is missing in this release. I push for 23.11.04 -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 11 11:17:33 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 11 Mar 2024 10:17:33 +0000 Subject: [Koha-bugs] [Bug 36010] Items/AutomaticItemModificationByAge.t is failing In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36010 Fridolin Somers changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Pushed to master |Pushed to stable Version(s)|24.05.00 |24.05.00,23.11.04 released in| | --- Comment #17 from Fridolin Somers --- Pushed to 23.11.x for 23.11.04 -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 11 11:19:02 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 11 Mar 2024 10:19:02 +0000 Subject: [Koha-bugs] [Bug 36212] transferbook should not look for items without barcode In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36212 Fridolin Somers changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Pushed to master |Pushed to stable CC| |fridolin.somers at biblibre.co | |m Version(s)|24.05.00 |24.05.00,23.11.04 released in| | --- Comment #4 from Fridolin Somers --- Pushed to 23.11.x for 23.11.04 -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 11 11:20:19 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 11 Mar 2024 10:20:19 +0000 Subject: [Koha-bugs] [Bug 36134] Elasticsearch authentication using userinfo parameter crashes about.pl In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36134 Fridolin Somers changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |fridolin.somers at biblibre.co | |m Version(s)|24.05.00 |24.05.00,23.11.04 released in| | Status|Pushed to master |Pushed to stable --- Comment #9 from Fridolin Somers --- Pushed to 23.11.x for 23.11.04 -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 11 11:21:34 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 11 Mar 2024 10:21:34 +0000 Subject: [Koha-bugs] [Bug 35924] The 'checkin slip' button should not be available for patrons whose privacy is set to never In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35924 Fridolin Somers changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Pushed to master |Pushed to stable Version(s)|24.05.00 |24.05.00,23.11.04 released in| | CC| |fridolin.somers at biblibre.co | |m --- Comment #11 from Fridolin Somers --- Pushed to 23.11.x for 23.11.04 -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 11 11:22:23 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 11 Mar 2024 10:22:23 +0000 Subject: [Koha-bugs] [Bug 35773] Cannot create bookings without edit_borrowers, label_creator, routing or order_manage permissions In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35773 Fridolin Somers changed: What |Removed |Added ---------------------------------------------------------------------------- Version(s)|24.05.00 |24.05.00,23.11.04 released in| | Status|Pushed to master |Pushed to stable CC| |fridolin.somers at biblibre.co | |m --- Comment #9 from Fridolin Somers --- Pushed to 23.11.x for 23.11.04 -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 11 11:23:26 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 11 Mar 2024 10:23:26 +0000 Subject: [Koha-bugs] [Bug 35469] Cannot create bookings without circulation permissions In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35469 Fridolin Somers changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |fridolin.somers at biblibre.co | |m Status|Pushed to master |Pushed to stable Version(s)|24.05.00 |24.05.00,23.11.04 released in| | --- Comment #31 from Fridolin Somers --- Pushed to 23.11.x for 23.11.04 -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 11 11:25:01 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 11 Mar 2024 10:25:01 +0000 Subject: [Koha-bugs] [Bug 36056] Clarify subpermissions check behavior in C4::Auth In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36056 Fridolin Somers changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |fridolin.somers at biblibre.co | |m Version(s)|24.05.00 |24.05.00,23.11.04 released in| | Status|Pushed to master |Pushed to stable --- Comment #5 from Fridolin Somers --- Pushed to 23.11.x for 23.11.04 -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 11 11:27:16 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 11 Mar 2024 10:27:16 +0000 Subject: [Koha-bugs] [Bug 35357] Item not removed from holds queue when checked out to a different patron In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35357 Fridolin Somers changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |fridolin.somers at biblibre.co | |m --- Comment #24 from Fridolin Somers --- Seeing comments, I wait for backport -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 11 11:28:20 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 11 Mar 2024 10:28:20 +0000 Subject: [Koha-bugs] [Bug 36012] ERM/Agreements_spec.ts is failing if run too slow (?) In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36012 Fridolin Somers changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |fridolin.somers at biblibre.co | |m Depends on| |32474 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=32474 [Bug 32474] Implement infinite scroll in vue-select -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 11 11:28:20 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 11 Mar 2024 10:28:20 +0000 Subject: [Koha-bugs] [Bug 32474] Implement infinite scroll in vue-select In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=32474 Fridolin Somers changed: What |Removed |Added ---------------------------------------------------------------------------- Blocks| |36012 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36012 [Bug 36012] ERM/Agreements_spec.ts is failing if run too slow (?) -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 11 11:28:38 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 11 Mar 2024 10:28:38 +0000 Subject: [Koha-bugs] [Bug 36012] ERM/Agreements_spec.ts is failing if run too slow (?) In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36012 Fridolin Somers changed: What |Removed |Added ---------------------------------------------------------------------------- Resolution|--- |FIXED Status|Pushed to master |RESOLVED --- Comment #13 from Fridolin Somers --- Depends on Bug 32474 not in 23.11.x -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 11 11:29:48 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 11 Mar 2024 10:29:48 +0000 Subject: [Koha-bugs] [Bug 35538] List of libraries on OPAC self registration form should sort by branchname rather than branchcode In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35538 Fridolin Somers changed: What |Removed |Added ---------------------------------------------------------------------------- Version(s)|24.05.00 |24.05.00,23.11.04 released in| | CC| |fridolin.somers at biblibre.co | |m Status|Pushed to master |Pushed to stable --- Comment #6 from Fridolin Somers --- Pushed to 23.11.x for 23.11.04 -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 11 11:35:57 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 11 Mar 2024 10:35:57 +0000 Subject: [Koha-bugs] [Bug 36032] The "Next" pagination button has a double instead of a single angle In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36032 Fridolin Somers changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |fridolin.somers at biblibre.co | |m Depends on| |5287 --- Comment #6 from Fridolin Somers --- Introduced by Bug 5287 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=5287 [Bug 5287] Add floating toolbar to search results in OPAC -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 11 11:35:57 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 11 Mar 2024 10:35:57 +0000 Subject: [Koha-bugs] [Bug 5287] Add floating toolbar to search results in OPAC In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=5287 Fridolin Somers changed: What |Removed |Added ---------------------------------------------------------------------------- Blocks| |36032 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36032 [Bug 36032] The "Next" pagination button has a double instead of a single angle -- You are receiving this mail because: You are watching all bug changes. You are the QA Contact for the bug. From bugzilla-daemon at bugs.koha-community.org Mon Mar 11 11:40:27 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 11 Mar 2024 10:40:27 +0000 Subject: [Koha-bugs] [Bug 36032] The "Next" pagination button has a double instead of a single angle In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36032 --- Comment #7 from Fridolin Somers --- Looks like there is the same issue in opac-authoritiessearchresultlist.tt : https://git.koha-community.org/Koha-community/Koha/src/commit/5a188651e484517f28367e44183b680fa77ad77b/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-authoritiessearchresultlist.tt#L33 Can you also fix please ? Or open a new report. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 11 11:44:48 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 11 Mar 2024 10:44:48 +0000 Subject: [Koha-bugs] [Bug 36070] "Place recall" hover styling on OPAC not consistent In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36070 Fridolin Somers changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |fridolin.somers at biblibre.co | |m --- Comment #6 from Fridolin Somers --- Whooo there are a lot of FA icons without 'fa' class : git grep 'class="fa-' -- koha-tmpl Need to be fixed ? -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 11 11:45:21 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 11 Mar 2024 10:45:21 +0000 Subject: [Koha-bugs] [Bug 36070] "Place recall" hover styling on OPAC not consistent In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36070 Fridolin Somers changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Pushed to master |Pushed to stable Version(s)|24.05.00 |24.05.00,23.11.04 released in| | --- Comment #7 from Fridolin Somers --- Pushed to 23.11.x for 23.11.04 -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 11 12:02:59 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 11 Mar 2024 11:02:59 +0000 Subject: [Koha-bugs] [Bug 36247] MARC21 Addition to relator terms in technical notice 2024-02-27 In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36247 David Nind changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Needs Signoff |Signed Off -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 11 12:03:02 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 11 Mar 2024 11:03:02 +0000 Subject: [Koha-bugs] [Bug 36247] MARC21 Addition to relator terms in technical notice 2024-02-27 In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36247 David Nind changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #162836|0 |1 is obsolete| | --- Comment #2 from David Nind --- Created attachment 163020 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163020&action=edit Bug 36247: MARC21 Addition to relator terms in technical notice 2024-02-27 This patch adds the relator code gdv (Game developer) in the list of MARC21 relator terms in Koha. To test: 1. Apply patch and reset_all 2. Go to Administration > Authorized values > RELTERMS 3. Search for gdv --> The new relator code should be there with its corresponding term "Game developer" Note: this is added in the installer files. It will not affect existing installations. For existing installations, add the new relator code in Administration > Authorized values > RELTERMS. Signed-off-by: David Nind -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 11 12:42:03 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 11 Mar 2024 11:42:03 +0000 Subject: [Koha-bugs] [Bug 36032] The "Next" pagination button has a double instead of a single angle In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36032 --- Comment #8 from Raphael Straub --- (In reply to Fridolin Somers from comment #7) > Looks like there is the same issue in opac-authoritiessearchresultlist.tt : > > https://git.koha-community.org/Koha-community/Koha/src/commit/ > 5a188651e484517f28367e44183b680fa77ad77b/koha-tmpl/opac-tmpl/bootstrap/en/ > modules/opac-authoritiessearchresultlist.tt#L33 I already saw this, but I don't know where this is used or if this is used at all. If I search for authorities I get a result list that uses the other pagination bar: https://git.koha-community.org/Koha-community/Koha/src/commit/5a188651e484517f28367e44183b680fa77ad77b/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-authoritiessearchresultlist.tt#L74 -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 11 12:51:30 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 11 Mar 2024 11:51:30 +0000 Subject: [Koha-bugs] [Bug 36135] Add tool to batch edit expiration dates of holds In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36135 --- Comment #3 from Emmi Takkinen --- Created attachment 163021 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163021&action=edit Bug 36135: Add new permission batch_modify_holds This patch adds new permission "batch_modify_holds". To test: 1. Apply this patch. 2. Run updatedatabase.pl. 3. Check that new permission was added to Patrons->Set permissions. Sponsored-by: Koha-Suomi Oy -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 11 12:52:14 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 11 Mar 2024 11:52:14 +0000 Subject: [Koha-bugs] [Bug 36135] Add tool to batch edit expiration dates of holds In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36135 --- Comment #4 from Emmi Takkinen --- Created attachment 163022 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163022&action=edit Bug 36135: Add links to the batch modify holds tool This patch adds links to new tool batch modify holds tool. To test: 1. Apply this patch. 2. Add patron permission "batch_modify_holds". 3. Login as chosen patron. 4. Navigate to Tools page. => Note there's a link "Batch modify holds". 5. Remove permission from user. => Link to new tool is not displayed. Sponsored-by: Koha-Suomi Oy -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 11 12:52:41 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 11 Mar 2024 11:52:41 +0000 Subject: [Koha-bugs] [Bug 36135] Add tool to batch edit expiration dates of holds In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36135 --- Comment #5 from Emmi Takkinen --- Created attachment 163023 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163023&action=edit Bug 36135: Add new tool to batch modify holds We sometimes need to modify holds due library closing down etc. For this we need tool to batch modify holds which allows us to filter holds and modify them. Tool allows users to select holds with following parameters: - expiration date -> if patron_expiration_date is set, it is used as main search filter -> otherwise expirationdate is used - library - found status - suspended status - suspend until date - hold note Users are able to modify following with tool: - expiration date (not expiration date set by patron) - pick up library - suspend status (only if hold has no found status) - suspend until date (only if suspend status is set) - hold note To test: 1. Apply this patch. 2. Navigate to new tool Tools->Batch modify holds. 3. Fill in some criteria to search holds with. => Confirm that holds found match your search criteria. 4. Set e.g. new expiration date for all or just selected holds. => Confirm that holds were modified as they should have. => Confirm this also from database. To test suspending holds with found status: 1. Find holds with found status. 2. Attempt to modify their suspend status. => Alert box with text "One or more holds have found status and can't be suspended." should be displayed. Play around, test different search compinations and modifications. Sponsored-by: Koha-Suomi Oy -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 11 12:53:08 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 11 Mar 2024 11:53:08 +0000 Subject: [Koha-bugs] [Bug 36135] Add tool to batch edit expiration dates of holds In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36135 --- Comment #6 from Emmi Takkinen --- Created attachment 163024 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163024&action=edit Bug 36135: Allow using SQL results in batch modify holds tool This patch adds ability to use SQL results for batch holds tool if report contains column reserve_id. To test: 1. Create SQL report which contains column for reserve_id. => e.g "SELECT reserve_id FROM reserves limit 10". 2. Run report. 3. Over report select "Batch operations" should be displayed and under that there should be option "Batch modify holds". 4. Click "Batch modify holds" option. => Confirm that holds displayed in "Batch mofidy holds" tool are same as found with your report. Sponsored-by: Koha-Suomi Oy -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 11 12:56:02 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 11 Mar 2024 11:56:02 +0000 Subject: [Koha-bugs] [Bug 36135] Add tool to batch modify holds In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36135 Emmi Takkinen changed: What |Removed |Added ---------------------------------------------------------------------------- Summary|Add tool to batch edit |Add tool to batch modify |expiration dates of holds |holds Status|ASSIGNED |Needs Signoff --- Comment #7 from Emmi Takkinen --- We did some briefing on this and ended up adding ability to modify other fields as well, not just expiration date. I'll adjust bugs title accordingly. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 11 13:13:27 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 11 Mar 2024 12:13:27 +0000 Subject: [Koha-bugs] [Bug 36130] ILL batches table not showing all batches In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36130 Tomás Cohen Arazi changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Failed QA |Passed QA QA Contact|victor at tuxayo.net |tomascohen at gmail.com -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 11 13:14:23 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 11 Mar 2024 12:14:23 +0000 Subject: [Koha-bugs] [Bug 36130] ILL batches table not showing all batches In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36130 Tomás Cohen Arazi changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #162810|0 |1 is obsolete| | --- Comment #8 from Tomás Cohen Arazi --- Created attachment 163025 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163025&action=edit Bug 36130: Fetch all batches for the table Test plan, ktd: - Add 'FreeForm' backend and enable ILLModule, run: bash <(curl -s https://raw.githubusercontent.com/ammopt/koha-ill-dev/master/start-ill-dev.sh) - Install a metadata enrichment plugin, e.g.: https://github.com/PTFS-Europe/koha-plugin-api-pubmed/releases - Add 21 batches, run the following command in kshell: for x in {1..21}; do echo "INSERT INTO illbatches (name, backend, library_id, status_code, patron_id) VALUES ('$x', 'FreeForm', 'CPL', 'NEW', 52);"; done | koha-mysql kohadev - Visit ILL batches page: /cgi-bin/koha/ill/ill-requests.pl?method=batch_list - Notice only 20 batches show. - Apply patch. Notice 20 batches show but now there is a page 2 link. - Test page 2 works as expected, delete a batch, notice only 1 page with 20 batches shows again. Signed-off-by: David Nind Signed-off-by: Edith Speller Signed-off-by: Tomas Cohen Arazi -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 11 13:17:17 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 11 Mar 2024 12:17:17 +0000 Subject: [Koha-bugs] [Bug 36291] New: Scrolling glitch on ILL batches table Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36291 Bug ID: 36291 Summary: Scrolling glitch on ILL batches table Change sponsored?: --- Product: Koha Version: master Hardware: All OS: All Status: NEW Severity: normal Priority: P5 - low Component: ILL Assignee: koha-bugs at lists.koha-community.org Reporter: tomascohen at gmail.com CC: pedro.amorim at ptfs-europe.com On testing bug 36130, I found that scrolling had some glitch (at least on my computer, Firefox on ARM64 macOS). I used the following command to fill the DB with several batches: ``` PERL5LIB=$PERL5LIB:./lib perl fake_data.pl --how-many 100 --entity ill for x in {1..21}; do echo "INSERT INTO illbatches (name, backend, library_id, status_code, patron_id) VALUES ('$x', 'FreeForm', 'CPL', 'NEW', 52);"; done | koha-mysql kohadev ``` -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 11 13:17:37 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 11 Mar 2024 12:17:37 +0000 Subject: [Koha-bugs] [Bug 36291] Scrolling glitch on ILL batches table In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36291 Tomás Cohen Arazi changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |tomascohen at gmail.com Status|NEW |ASSIGNED Depends on| |36130 Assignee|koha-bugs at lists.koha-commun |pedro.amorim at ptfs-europe.co |ity.org |m Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36130 [Bug 36130] ILL batches table not showing all batches -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 11 13:17:37 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 11 Mar 2024 12:17:37 +0000 Subject: [Koha-bugs] [Bug 36130] ILL batches table not showing all batches In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36130 Tomás Cohen Arazi changed: What |Removed |Added ---------------------------------------------------------------------------- Blocks| |36291 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36291 [Bug 36291] Scrolling glitch on ILL batches table -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 11 13:17:38 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 11 Mar 2024 12:17:38 +0000 Subject: [Koha-bugs] [Bug 27679] The notices and slips management area should be moved to 'Administration' In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=27679 Jonathan Druart changed: What |Removed |Added ---------------------------------------------------------------------------- See Also| |https://bugs.koha-community | |.org/bugzilla3/show_bug.cgi | |?id=36244 -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Mon Mar 11 13:20:11 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 11 Mar 2024 12:20:11 +0000 Subject: [Koha-bugs] [Bug 36130] ILL batches table not showing all batches In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36130 --- Comment #9 from Tomás Cohen Arazi --- (In reply to Tomás Cohen Arazi from comment #7) > But when I scroll down on the page, some weird behavior is trying to scroll > up again. Please check. I decided to file a separate bug for that, as it is not introduced by this. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 11 13:25:10 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 11 Mar 2024 12:25:10 +0000 Subject: [Koha-bugs] [Bug 36235] System preferences chopping everything after a semicolon. In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36235 Jonathan Druart changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Signed Off |Passed QA -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 11 13:25:13 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 11 Mar 2024 12:25:13 +0000 Subject: [Koha-bugs] [Bug 36235] System preferences chopping everything after a semicolon. In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36235 Jonathan Druart changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #163011|0 |1 is obsolete| | --- Comment #11 from Jonathan Druart --- Created attachment 163026 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163026&action=edit Bug 36235: Encode system preference data with encodeURIComponent To test: 1. Add some data to a freetext system preference like IntranetUserJS or AdditionalFieldsInZ3950ResultAuthSearch that includes a semicolon; 2. Save the pref and reload the page or check the DB. Everything after the semicolon is removed. 3. Apply patch, try again. Data should remain as is. Signed-off-by: Pedro Amorim Signed-off-by: David Nind Signed-off-by: Jonathan Druart -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 11 13:39:32 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 11 Mar 2024 12:39:32 +0000 Subject: [Koha-bugs] [Bug 35919] Add record sources CRUD In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35919 --- Comment #27 from Jonathan Druart --- Just ask if you have questions or need help! -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 11 13:41:14 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 11 Mar 2024 12:41:14 +0000 Subject: [Koha-bugs] [Bug 36232] Updating database structure In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36232 Jonathan Druart changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |jonathan.druart at gmail.com Depends on| |34979 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=34979 [Bug 34979] System preferences missing from sysprefs.sql -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Mon Mar 11 13:41:14 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 11 Mar 2024 12:41:14 +0000 Subject: [Koha-bugs] [Bug 34979] System preferences missing from sysprefs.sql In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=34979 Jonathan Druart changed: What |Removed |Added ---------------------------------------------------------------------------- Blocks| |36232 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36232 [Bug 36232] Updating database structure -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 11 13:41:23 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 11 Mar 2024 12:41:23 +0000 Subject: [Koha-bugs] [Bug 36232] Updating database structure In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36232 Jonathan Druart changed: What |Removed |Added ---------------------------------------------------------------------------- Version|23.11 |master Severity|enhancement |blocker -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Mon Mar 11 13:43:04 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 11 Mar 2024 12:43:04 +0000 Subject: [Koha-bugs] [Bug 36158] Text on the "Show SQL code" button at guided_reports.pl breaks if report notice templates exist In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36158 --- Comment #8 from Pedro Amorim --- Frido can you open a bug for this (if not already). I think it would also be interesting to understand why the conflict happens in the first place, as one would think "for t in templates" would only consider a 't' variable inside the "for" loop. But this was causing an issue somewhere else entirely in the code if I remember correctly. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 11 13:43:31 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 11 Mar 2024 12:43:31 +0000 Subject: [Koha-bugs] [Bug 36232] Error fixing OAI-PMH:AutoUpdateSetsEmbedItemData syspref name on the DB In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36232 Tomás Cohen Arazi changed: What |Removed |Added ---------------------------------------------------------------------------- Summary|Updating database structure |Error fixing | |OAI-PMH:AutoUpdateSetsEmbed | |ItemData syspref name on | |the DB Assignee|koha-bugs at lists.koha-commun |tomascohen at gmail.com |ity.org | CC| |tomascohen at gmail.com -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 11 13:47:27 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 11 Mar 2024 12:47:27 +0000 Subject: [Koha-bugs] [Bug 36291] Scrolling glitch on ILL batches table In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36291 --- Comment #1 from Pedro Amorim --- Hi Tomas, thanks for this. I'm unable to look at it properly but will as soon as I can. It seems you're running 2 different commands, one for requests data and one for batches data. This shouldn't cause any issue, but it's not something I've done before. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 11 13:50:30 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 11 Mar 2024 12:50:30 +0000 Subject: [Koha-bugs] [Bug 15278] [Omnibus] Port default slips and notices from bespoke syntax to Template Toolkit In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=15278 --- Comment #19 from Jonathan Druart --- Aren't most templates easy to adjust? Like << borrowers.attribute >> becomes [% patron.attribute %]. We could replace them one by one. If there are still <<>> after the replacement happening in the db rev then we don't update it and warn about the deprecation. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 11 13:51:29 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 11 Mar 2024 12:51:29 +0000 Subject: [Koha-bugs] [Bug 36232] Error fixing OAI-PMH:AutoUpdateSetsEmbedItemData syspref name on the DB In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36232 Tomás Cohen Arazi changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |Needs Signoff Patch complexity|--- |Trivial patch -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 11 13:51:31 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 11 Mar 2024 12:51:31 +0000 Subject: [Koha-bugs] [Bug 36232] Error fixing OAI-PMH:AutoUpdateSetsEmbedItemData syspref name on the DB In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36232 --- Comment #2 from Tomás Cohen Arazi --- Created attachment 163027 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163027&action=edit Bug 36232: Fix error in DBRev dealing with OAI-PMH:AutoUpdateSetsEmbedItemData typo This patch fixes the case of the wrong syspref variable co-existing with the good one. OAI-PMH:AutoUpdateSetsEmbedItemData is the only case, as the rest of the mispelled ones are just case fixes, which would not trigger the same situation as the `systempreferences` table collation is case-insentitive. To test: 1. Run: $ ktd --shell k$ koha-mysql kohadev > INSERT INTO systempreferences VALUES ('OAI-PMH:AutoUpdateSetEmbedItemData',0,'','','YesNo'); > UPDATE systempreferences SET variable = 'IllCheckAvailability' WHERE variable = "ILLCheckAvailability"; > INSERT INTO systempreferences VALUES ('IllCheckAvailability',0,'','','YesNo'); => FAIL: The last command fails because the good and wrong values cannot coexist 2. Set the version to a prior one: > UPDATE systempreferences SET value="23.1200004" WHERE variable like 'version'; 3. Run: k$ updatedatabase => FAIL: You get this error: ERROR: {UNKNOWN}: DBI Exception: DBD::mysql::db do failed: Duplicate entry 'OAI-PMH:AutoUpdateSetsEmbedItemData' for key 'systempreferences.PRIMARY' at ... 4. Apply this patch 5. Repeat 3 => SUCCESS: It works! 6. Sign off :-D Signed-off-by: Tomas Cohen Arazi -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 11 13:55:46 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 11 Mar 2024 12:55:46 +0000 Subject: [Koha-bugs] [Bug 34979] System preferences missing from sysprefs.sql In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=34979 Hans Pålsson changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |hans.palsson at hkr.se --- Comment #40 from Hans Pålsson --- Dito, upgrade from 23.11.02 fails. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 11 14:08:29 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 11 Mar 2024 13:08:29 +0000 Subject: [Koha-bugs] [Bug 36269] Elasticsearch: publisher-location (pl) index should include 260a/264a In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36269 Caroline Cyr La Rose changed: What |Removed |Added ---------------------------------------------------------------------------- Summary|Elasticsearch: |Elasticsearch: |publisher-location (pl) |publisher-location (pl) |index should include |index should include |264a/264a |260a/264a -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Mon Mar 11 14:08:46 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 11 Mar 2024 13:08:46 +0000 Subject: [Koha-bugs] [Bug 36269] Elasticsearch: publisher-location (pl) index should include 260a/264a (MARC21) In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36269 Caroline Cyr La Rose changed: What |Removed |Added ---------------------------------------------------------------------------- Summary|Elasticsearch: |Elasticsearch: |publisher-location (pl) |publisher-location (pl) |index should include |index should include |260a/264a |260a/264a (MARC21) -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Mon Mar 11 14:15:37 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 11 Mar 2024 13:15:37 +0000 Subject: [Koha-bugs] [Bug 36291] Scrolling glitch on ILL batches table In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36291 --- Comment #2 from Tomás Cohen Arazi --- (In reply to Pedro Amorim from comment #1) > Hi Tomas, thanks for this. > I'm unable to look at it properly but will as soon as I can. > It seems you're running 2 different commands, one for requests data and one > for batches data. > This shouldn't cause any issue, but it's not something I've done before. Heh, I think I'm just used to run it before doing ILL things on my dev env. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 11 14:19:54 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 11 Mar 2024 13:19:54 +0000 Subject: [Koha-bugs] [Bug 36204] Add othernames to the PatronAutoComplete display In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36204 Tomás Cohen Arazi changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #162610|0 |1 is obsolete| | --- Comment #2 from Tomás Cohen Arazi --- Created attachment 163028 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163028&action=edit Bug 36204: Add othernames field to PatronAutoComplete display To test: 1. APPLY PATCH 2. Make sure PatronAutoComplete is on. 3. Find or add othernames to a patron record. 4. Search for that patron and make sure othernames properly displays in the dropdown. 5. Add a middle name to that patron and search again, make sure the display looks good. 6. Remove the othernames field and search again, make sure the display looks good. Signed-off-by: Tomas Cohen Arazi -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 11 14:20:08 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 11 Mar 2024 13:20:08 +0000 Subject: [Koha-bugs] [Bug 36204] Add othernames to the PatronAutoComplete display In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36204 Tomás Cohen Arazi changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Needs Signoff |Signed Off -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 11 14:20:12 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 11 Mar 2024 13:20:12 +0000 Subject: [Koha-bugs] [Bug 36204] Add othernames to the PatronAutoComplete display In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36204 Tomás Cohen Arazi changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #163028|0 |1 is obsolete| | --- Comment #3 from Tomás Cohen Arazi --- Created attachment 163029 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163029&action=edit Bug 36204: Add othernames field to PatronAutoComplete display To test: 1. APPLY PATCH 2. Make sure PatronAutoComplete is on. 3. Find or add othernames to a patron record. 4. Search for that patron and make sure othernames properly displays in the dropdown. 5. Add a middle name to that patron and search again, make sure the display looks good. 6. Remove the othernames field and search again, make sure the display looks good. Signed-off-by: Tomas Cohen Arazi -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 11 14:21:57 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 11 Mar 2024 13:21:57 +0000 Subject: [Koha-bugs] [Bug 36204] Add othernames to the PatronAutoComplete display In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36204 Tomás Cohen Arazi changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |tomascohen at gmail.com Status|Signed Off |Passed QA --- Comment #4 from Tomás Cohen Arazi --- This is a trivial change that works as expected, is correctly implemented and no QA complaints. Straight QA. Not offended if someone else wants to give it another round of testing. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 11 14:26:07 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 11 Mar 2024 13:26:07 +0000 Subject: [Koha-bugs] [Bug 13706] Deduping authorities script (dedup_authorities.pl) In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=13706 Tomás Cohen Arazi changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Signed Off |Passed QA -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 11 14:26:11 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 11 Mar 2024 13:26:11 +0000 Subject: [Koha-bugs] [Bug 13706] Deduping authorities script (dedup_authorities.pl) In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=13706 Tomás Cohen Arazi changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #157965|0 |1 is obsolete| | --- Comment #19 from Tomás Cohen Arazi --- Created attachment 163030 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163030&action=edit Bug 13706: New script dedup_authorities.pl This script allow to deduplicate authorities automatically. Script is in misc/maintenance/ It works this way: 1) authorities are fetched from the database. You can limit fetched results by authtypecode, or directly by specifying WHERE clause 2) for each authority: 2.1) build a Zebra query using the 'search_form' for the heading 2.2) run the query, retrieve the results 2.3) among duplicates, choose the one we want to keep (use --choose-method option). 2.5) use C4::Authorities::merge to merge authorities 3) delete the merged authorities Use --help for more informations on options To be done: 1 - Move to module and cover with tests 2 - Add option to only merge unused authorities 3 - Expand 'ppn' option to be 'control-number' option and allow specifying field 4 - More? 1 & 2 I will attempt - 3 & 4 may be future enhancements Signed-off-by: David Nind Signed-off-by: Tomas Cohen Arazi -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 11 14:26:15 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 11 Mar 2024 13:26:15 +0000 Subject: [Koha-bugs] [Bug 13706] Deduping authorities script (dedup_authorities.pl) In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=13706 --- Comment #20 from Tomás Cohen Arazi --- Created attachment 163031 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163031&action=edit Bug 13706: Minor tidy/spelling issues Signed-off-by: Tomas Cohen Arazi -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 11 14:27:26 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 11 Mar 2024 13:27:26 +0000 Subject: [Koha-bugs] [Bug 13706] Deduping authorities script (dedup_authorities.pl) In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=13706 Tomás Cohen Arazi changed: What |Removed |Added ---------------------------------------------------------------------------- QA Contact|testopia at bugs.koha-communit |tomascohen at gmail.com |y.org | CC| |tomascohen at gmail.com --- Comment #21 from Tomás Cohen Arazi --- This is a nice new feature, self-contained on a new script. I have some doubts about the output format, but I think we want to listen from real-life users and enhance this later with good feedback from users. Nice job, Nick!!! -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 11 14:29:14 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 11 Mar 2024 13:29:14 +0000 Subject: [Koha-bugs] [Bug 35967] REST API: Add /api/v1/patrons/{patron_id}/recalls endpoint to list patron's recalls In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35967 Tomás Cohen Arazi changed: What |Removed |Added ---------------------------------------------------------------------------- QA Contact| |tomascohen at gmail.com -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 11 14:45:45 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 11 Mar 2024 13:45:45 +0000 Subject: [Koha-bugs] [Bug 36101] Deleting an item removes the itemnumber from old_reserves when it should not In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36101 Andrew Fuerste-Henry changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |andrewfh at dubcolib.org -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 11 14:45:47 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 11 Mar 2024 13:45:47 +0000 Subject: [Koha-bugs] [Bug 32729] Deleting an item removes the itemnumber from old_issues when it probably should not In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=32729 Andrew Fuerste-Henry changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |andrewfh at dubcolib.org -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 11 14:46:57 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 11 Mar 2024 13:46:57 +0000 Subject: [Koha-bugs] [Bug 35967] REST API: Add /api/v1/patrons/{patron_id}/recalls endpoint to list patron's recalls In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35967 Tomás Cohen Arazi changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Signed Off |Passed QA -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 11 14:46:59 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 11 Mar 2024 13:46:59 +0000 Subject: [Koha-bugs] [Bug 35967] REST API: Add /api/v1/patrons/{patron_id}/recalls endpoint to list patron's recalls In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35967 Tomás Cohen Arazi changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #161924|0 |1 is obsolete| | --- Comment #3 from Tomás Cohen Arazi --- Created attachment 163032 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163032&action=edit Bug 35967: Add REST API endpoint to list patron recalls This enhancement adds a REST API endpoint to list a patron's recalls: /api/v1/patrons/{patron_id}/recalls This depends on the logged in patron having the manage_recalls subpermission. To test: 1. Log in to the staff interface as your superlibrarian self (Patron A) 2. Go to Koha Administration -> Global system preferences. Enable the UseRecalls system preference 3. Set the relevant recalls circulation and fines rules 4. Search for an item (Item A) 5. Check out Item A to yourself (Patron A) 6. Log in to the OPAC as Patron B, a patron who does not have the manage_recalls permission 7. Search for Item A and request a recall 8. While still logged in to the OPAC as Patron B, hit this URL: https://your-opac-url/api/v1/patrons/patron-b-borrowernumber/recalls (swap out your URL and Patron B's borrowernumber) 9. Confirm you are given an error: "Authorization failure. Missing required permission(s)." 10. Log out of the OPAC and log back in, this time as Patron A 11. Hit the URL again https://your-opac-url/api/v1/patrons/patron-b-borrowernumber/recalls 12. Confirm you are able to view a list of Patron B's recalls 13. Confirm tests pass: t/db_dependent/api/v1/patrons_recalls.t Sponsored-by: Auckland University of Technology PA amended: QA follow-up: tidy Signed-off-by: Pedro Amorim -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 11 14:47:02 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 11 Mar 2024 13:47:02 +0000 Subject: [Koha-bugs] [Bug 35967] REST API: Add /api/v1/patrons/{patron_id}/recalls endpoint to list patron's recalls In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35967 --- Comment #4 from Tomás Cohen Arazi --- Created attachment 163033 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163033&action=edit Bug 35967: (QA follow-up) `status` is not nullable Signed-off-by: Tomas Cohen Arazi -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 11 14:47:04 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 11 Mar 2024 13:47:04 +0000 Subject: [Koha-bugs] [Bug 35967] REST API: Add /api/v1/patrons/{patron_id}/recalls endpoint to list patron's recalls In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35967 --- Comment #5 from Tomás Cohen Arazi --- Created attachment 163034 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163034&action=edit Bug 35967: Add more test cases Signed-off-by: Tomas Cohen Arazi -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 11 14:48:00 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 11 Mar 2024 13:48:00 +0000 Subject: [Koha-bugs] [Bug 36075] Add API route to list recalls In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36075 Tomás Cohen Arazi changed: What |Removed |Added ---------------------------------------------------------------------------- QA Contact| |tomascohen at gmail.com -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 11 14:50:11 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 11 Mar 2024 13:50:11 +0000 Subject: [Koha-bugs] [Bug 36075] Add API route to list recalls In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36075 Tomás Cohen Arazi changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Signed Off |In Discussion --- Comment #8 from Tomás Cohen Arazi --- Aleisha, do you really need those query parameters you are adding here? We are not adding them lately. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 11 14:51:31 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 11 Mar 2024 13:51:31 +0000 Subject: [Koha-bugs] [Bug 27679] The notices and slips management area should be moved to 'Administration' In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=27679 Andrew Fuerste-Henry changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |andrewfh at dubcolib.org --- Comment #3 from Andrew Fuerste-Henry --- I can see the argument that notice/slip content and overdue notice triggers should both be in Administration rather than Tools. Both seem roughly analogous to the circulation rules -- they define how circulation should behave, rather than giving one tools with which to manage patrons or checkouts. But they'd definitely need distinct permissions; we have to assume there are folks who currently have access to edit notices but don't have any other admin access. -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 11 14:52:50 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 11 Mar 2024 13:52:50 +0000 Subject: [Koha-bugs] [Bug 36158] Text on the "Show SQL code" button at guided_reports.pl breaks if report notice templates exist In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36158 --- Comment #9 from Kyle M Hall --- (In reply to Pedro Amorim from comment #8) > Frido can you open a bug for this (if not already). > I think it would also be interesting to understand why the conflict happens > in the first place, as one would think "for t in templates" would only > consider a 't' variable inside the "for" loop. > But this was causing an issue somewhere else entirely in the code if I > remember correctly. I've filed a bug report for Template Toolkit: https://github.com/abw/Template2/issues/317 Kyle -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 11 14:58:22 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 11 Mar 2024 13:58:22 +0000 Subject: [Koha-bugs] [Bug 36075] Add API route to list recalls In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36075 --- Comment #9 from Tomás Cohen Arazi --- Please: * Remove (inline) the extra query parameters. I think keeping 'completed' makes sense, though. * Review the documentation in the spec, as it (at least) mentions "patron's recalls" in one place. * The json_is( '' => [...], 'Current recalls....' ) is not something we use. In such cases you don't need to add the test description as it is clear that you are testing the response structure matches something. Not a blocker. the rest of it is perfect :-D -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 11 15:08:33 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 11 Mar 2024 14:08:33 +0000 Subject: [Koha-bugs] [Bug 34943] Add a pre-save plugin hook for biblios In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=34943 --- Comment #21 from Tomás Cohen Arazi --- (In reply to Martin Renvoize from comment #19) > Actually.. reading a little deeper I have questions. > > Should we not be consistent with 'after_biblio_action' and call the hook > 'before_biblio_action' and pass through an 'action' parameter? I think I misread this :-D Sending a follow-up patch. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 11 15:10:45 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 11 Mar 2024 14:10:45 +0000 Subject: [Koha-bugs] [Bug 36005] Typo in "Your concern was successfully submitted" in staff interface In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36005 Fridolin Somers changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Pushed to master |Pushed to stable CC| |fridolin.somers at biblibre.co | |m Version(s)|24.05.00 |24.05.00,23.11.04 released in| | --- Comment #5 from Fridolin Somers --- Pushed to 23.11.x for 23.11.04 -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 11 15:10:55 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 11 Mar 2024 14:10:55 +0000 Subject: [Koha-bugs] [Bug 36122] NEW_SUGGESTION is sent for every modification to the suggestion In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36122 --- Comment #11 from Matthias Le Gac --- (In reply to Lucas Gass from comment #10) > Mattais, > > Can you review these tests? Something seems not quite right: > > # Subtest: store > 1..8 > ok 1 - If suggesteddate not passed in, it will default to today > ok 2 - If suggesteddate passed in, it should be taken into account > ok 3 - If suggestion id modified, suggesteddate should not be modified > ok 4 - If EmailPurchaseSuggestions is not enabled, a message should not > be sent > not ok 5 - No message was sent > > # Failed test 'No message was sent' > # at /kohadevbox/koha/t/db_dependent/Koha/Suggestions.t line 89. > ok 6 - If the status of suggestion is not set to ASKED, a message should > not be sent > ok 7 - store raises an exception on invalid STATUS > ok 8 - UNKNOWN status stored > # Looks like you failed 1 test of 8. > not ok 1 - store > > > Thanks! I can't reproduce the problem, I've tried different situations but test 5 passes every time. Can you add these print "print STDERR "syspref: " . $syspref->variable . " value :" . $syspref->value . "\n";" to line 85 and 86 (before and after the syspref store line) and tell me what you get? To be sure that the changes made to the preferences have been good. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 11 15:11:07 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 11 Mar 2024 14:11:07 +0000 Subject: [Koha-bugs] [Bug 36004] Typo in "Your concern was successfully submitted" OPAC text In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36004 Fridolin Somers changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |fridolin.somers at biblibre.co | |m See Also| |https://bugs.koha-community | |.org/bugzilla3/show_bug.cgi | |?id=36005 -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 11 15:11:07 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 11 Mar 2024 14:11:07 +0000 Subject: [Koha-bugs] [Bug 36005] Typo in "Your concern was successfully submitted" in staff interface In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36005 Fridolin Somers changed: What |Removed |Added ---------------------------------------------------------------------------- See Also| |https://bugs.koha-community | |.org/bugzilla3/show_bug.cgi | |?id=36004 -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 11 15:12:24 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 11 Mar 2024 14:12:24 +0000 Subject: [Koha-bugs] [Bug 36004] Typo in "Your concern was successfully submitted" OPAC text In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36004 Fridolin Somers changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Pushed to master |Pushed to stable Version(s)|24.05.00 |24.05.00,23.11.04 released in| | --- Comment #5 from Fridolin Somers --- Pushed to 23.11.x for 23.11.04 -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 11 15:15:44 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 11 Mar 2024 14:15:44 +0000 Subject: [Koha-bugs] [Bug 35718] Remove ES6 warnings from JavaScript system preferences In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35718 Fridolin Somers changed: What |Removed |Added ---------------------------------------------------------------------------- Version(s)|24.05.00 |24.05.00,23.11.04 released in| | Status|Pushed to master |Pushed to stable CC| |fridolin.somers at biblibre.co | |m --- Comment #10 from Fridolin Somers --- Pushed to 23.11.x for 23.11.04 -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 11 15:16:26 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 11 Mar 2024 14:16:26 +0000 Subject: [Koha-bugs] [Bug 36177] We need integration tests to cover CSRF checks In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36177 Nick Clemens changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Signed Off |Passed QA -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 11 15:16:28 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 11 Mar 2024 14:16:28 +0000 Subject: [Koha-bugs] [Bug 36177] We need integration tests to cover CSRF checks In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36177 Nick Clemens changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #162984|0 |1 is obsolete| | Attachment #162985|0 |1 is obsolete| | Attachment #162986|0 |1 is obsolete| | --- Comment #12 from Nick Clemens --- Created attachment 163035 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163035&action=edit Bug 36177: Cypress tests - yarn add cypress-mysql Signed-off-by: David Nind Signed-off-by: Nick Clemens -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 11 15:16:30 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 11 Mar 2024 14:16:30 +0000 Subject: [Koha-bugs] [Bug 36177] We need integration tests to cover CSRF checks In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36177 --- Comment #13 from Nick Clemens --- Created attachment 163036 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163036&action=edit Bug 36177: Cypress tests - cypress-mysql config Signed-off-by: David Nind Signed-off-by: Nick Clemens -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 11 15:16:31 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 11 Mar 2024 14:16:31 +0000 Subject: [Koha-bugs] [Bug 35911] Archived suggestions show in patron's account In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35911 Fridolin Somers changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Pushed to master |Pushed to stable CC| |fridolin.somers at biblibre.co | |m Version(s)|24.05.00 |24.05.00,23.11.04 released in| | --- Comment #12 from Fridolin Somers --- Pushed to 23.11.x for 23.11.04 -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 11 15:16:33 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 11 Mar 2024 14:16:33 +0000 Subject: [Koha-bugs] [Bug 36177] We need integration tests to cover CSRF checks In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36177 --- Comment #14 from Nick Clemens --- Created attachment 163037 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163037&action=edit Bug 36177: Add Cypress tests Signed-off-by: David Nind Signed-off-by: Nick Clemens -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 11 15:18:54 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 11 Mar 2024 14:18:54 +0000 Subject: [Koha-bugs] [Bug 36251] Patron search by letter broken in holds In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36251 Kyle M Hall changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Signed Off |Passed QA -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 11 15:18:57 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 11 Mar 2024 14:18:57 +0000 Subject: [Koha-bugs] [Bug 36251] Patron search by letter broken in holds In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36251 Kyle M Hall changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #162906|0 |1 is obsolete| | --- Comment #6 from Kyle M Hall --- Created attachment 163038 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163038&action=edit Bug 36251: (bug 35329 follow-up) Fix patron search by first letter when placing a hold Most of the patrons searches open in a modal. Except: * the main one (members-home) * when placing a hold * when requesting an article (did I miss one?) The patron-search.inc BLOCKs need a parent block to know where to locate the elements (form, table, etc), because we can have several patron searches on the same page. Bug 35329 reused '#searchresults': 10 [% SET search_results_block_id = 'searchresults' %] which is used on the main patron search. The ones in the modal are correctly handled: we build the parent node in the "patron_search_modal" block. But for the 2 others the parent block id is wrong. On reserve/request.tt we have one already, so we set the TT variable from the .tt file On circ/request-article we don't have one already, so we can reuse searchresults (could be more specific however to include 'patrons'...) Test plan: Browse patrons by first letter when placing a hold and requesting an article Signed-off-by: Caroline Cyr La Rose Signed-off-by: Kyle M Hall -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 11 15:18:58 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 11 Mar 2024 14:18:58 +0000 Subject: [Koha-bugs] [Bug 35840] Local use is double-counted when using both RecordLocalUseOnReturn and statistical patrons In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35840 Fridolin Somers changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |fridolin.somers at biblibre.co | |m --- Comment #40 from Fridolin Somers --- (In reply to Katrin Fischer from comment #38) > At some point, we should make this nicer and easier to understand what's > going on: > > &AddReturn( $barcode, $branch [,$exemptfine] [,$returndate] [,$skip_localuse > ] ); > > AddReturn( $item_object->barcode, C4::Context->userenv->{'branch'}, undef, > undef, 1 ) +1 We should use a %params hash -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 11 15:19:17 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 11 Mar 2024 14:19:17 +0000 Subject: [Koha-bugs] [Bug 35840] Local use is double-counted when using both RecordLocalUseOnReturn and statistical patrons In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35840 Fridolin Somers changed: What |Removed |Added ---------------------------------------------------------------------------- Version(s)|24.05.00 |24.05.00,23.11.04 released in| | Status|Pushed to master |Pushed to stable --- Comment #41 from Fridolin Somers --- Pushed to 23.11.x for 23.11.04 -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 11 15:20:42 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 11 Mar 2024 14:20:42 +0000 Subject: [Koha-bugs] [Bug 35950] Move the handling of statistics patron logic out of CanBookBeIssued In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35950 Fridolin Somers changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Pushed to master |Pushed to stable CC| |fridolin.somers at biblibre.co | |m Version(s)|24.05.00 |24.05.00,23.11.04 released in| | --- Comment #13 from Fridolin Somers --- Pushed to 23.11.x for 23.11.04 -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 11 15:24:24 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 11 Mar 2024 14:24:24 +0000 Subject: [Koha-bugs] [Bug 35950] Move the handling of statistics patron logic out of CanBookBeIssued In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35950 --- Comment #14 from Fridolin Somers --- There are a lot of call on CanBookBeIssued() : ILS-DI, SIP, SCO ... Any need to also deal with AddReturn() ? Especially SCO may be used for local circulation no ? -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 11 15:29:54 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 11 Mar 2024 14:29:54 +0000 Subject: [Koha-bugs] [Bug 36103] Remove the "Cancel hold" link for item level holds In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36103 Fridolin Somers changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |fridolin.somers at biblibre.co | |m Version(s)|24.05.00 |24.05.00,23.11.04 released in| | Status|Pushed to master |Pushed to stable --- Comment #12 from Fridolin Somers --- Pushed to 23.11.x for 23.11.04 -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 11 15:33:32 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 11 Mar 2024 14:33:32 +0000 Subject: [Koha-bugs] [Bug 35916] Purchase suggestions bibliographic filter should be a "contains" search In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35916 Fridolin Somers changed: What |Removed |Added ---------------------------------------------------------------------------- Version(s)|24.05.00 |24.05.00,23.11.04 released in| | CC| |fridolin.somers at biblibre.co | |m Status|Pushed to master |Pushed to stable --- Comment #7 from Fridolin Somers --- Pushed to 23.11.x for 23.11.04 -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 11 15:34:28 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 11 Mar 2024 14:34:28 +0000 Subject: [Koha-bugs] [Bug 35983] Library specific refund lost item replacement fee cannot be 'refund_unpaid' In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35983 Fridolin Somers changed: What |Removed |Added ---------------------------------------------------------------------------- Version(s)|24.05.00 |24.05.00,23.11.04 released in| | Status|Pushed to master |Pushed to stable CC| |fridolin.somers at biblibre.co | |m --- Comment #6 from Fridolin Somers --- Pushed to 23.11.x for 23.11.04 -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 11 15:36:22 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 11 Mar 2024 14:36:22 +0000 Subject: [Koha-bugs] [Bug 36066] REST API: We should only allow deleting cancelled order lines In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36066 Fridolin Somers changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Pushed to master |Pushed to stable Version(s)|24.05.00 |24.05.00,23.11.04 released in| | CC| |fridolin.somers at biblibre.co | |m --- Comment #26 from Fridolin Somers --- Pushed to 23.11.x for 23.11.04 -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 11 15:39:00 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 11 Mar 2024 14:39:00 +0000 Subject: [Koha-bugs] [Bug 36292] New: 'See all charges' hyperlink to view guarantee fees is not linked correctly Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36292 Bug ID: 36292 Summary: 'See all charges' hyperlink to view guarantee fees is not linked correctly Change sponsored?: --- Product: Koha Version: master Hardware: All OS: All Status: NEW Severity: trivial Priority: P5 - low Component: Patrons Assignee: koha-bugs at lists.koha-community.org Reporter: Laura.escamilla at bywatersolutions.com QA Contact: testopia at bugs.koha-community.org CC: gmcharlt at gmail.com, kyle.m.hall at gmail.com To recreate: 1. Add a guarantee / guarantor relationship for two patrons. 2. Add a manual fee to the guarantees' account. 3. Go to the guarantor's account and view the 'Details' tab. Under contact information there should be a Guarantees section. There you will see the charges for your guarantee. Click on "See all charges". The link leads you no where. -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 11 15:39:09 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 11 Mar 2024 14:39:09 +0000 Subject: [Koha-bugs] [Bug 36292] 'See all charges' hyperlink to view guarantee fees is not linked correctly In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36292 Laura Escamilla changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |ASSIGNED Assignee|koha-bugs at lists.koha-commun |Laura.escamilla at bywatersolu |ity.org |tions.com -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Mon Mar 11 15:46:04 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 11 Mar 2024 14:46:04 +0000 Subject: [Koha-bugs] [Bug 36292] 'See all charges' hyperlink to view guarantee fees is not linked correctly In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36292 Laura Escamilla changed: What |Removed |Added ---------------------------------------------------------------------------- Status|ASSIGNED |Needs Signoff -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 11 15:46:06 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 11 Mar 2024 14:46:06 +0000 Subject: [Koha-bugs] [Bug 36292] 'See all charges' hyperlink to view guarantee fees is not linked correctly In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36292 --- Comment #1 from Laura Escamilla --- Created attachment 163044 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163044&action=edit Bug 36292: Fixed 'See all charges' hyperlink for guarantees/guarantor linked charges To test: 1. Add a guarantee / guarantor relationship for two patrons. 2. Add a manual fee to the guarantees' account. 3. Go to the guarantor's account and view the 'Detai -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 11 15:46:59 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 11 Mar 2024 14:46:59 +0000 Subject: [Koha-bugs] [Bug 36292] 'See all charges' hyperlink to view guarantee fees is not linked correctly In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36292 Laura Escamilla changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #163044|0 |1 is obsolete| | -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 11 15:57:57 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 11 Mar 2024 14:57:57 +0000 Subject: [Koha-bugs] [Bug 36292] 'See all charges' hyperlink to view guarantee fees is not linked correctly In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36292 --- Comment #2 from Laura Escamilla --- Created attachment 163045 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163045&action=edit Bug 36292: Fixed 'See all charges' hyperlink for guarantees/guarantor linked charges To test: 1. Add a guarantee / guarantor relationship for two patrons. 2. Add a manual fee to the guarantees' account. 3. Go to the guarantor's account and view the 'Detai -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 11 16:01:57 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 11 Mar 2024 15:01:57 +0000 Subject: [Koha-bugs] [Bug 36292] 'See all charges' hyperlink to view guarantee fees is not linked correctly In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36292 --- Comment #3 from Laura Escamilla --- Created attachment 163046 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163046&action=edit Bug 36292: Fixed 'See all charges' hyperlink for guarantees/guarantor linked charges To test: 1. Add a guarantee / guarantor relationship for two patrons. 2. Add a manual fee to the guarantees' account. 3. Go to the guarantor's account and view the 'Details' tab. Under contact information there should be a Guarantees section. There you will see the charges for your guarantee. Click on ‘See all charges’. The link leads you no where. 4. Apply the patch and restart_all 5. Refresh the guarantor’s page and click on ‘See all charges’ again. This time it will take you down to the ‘Guarantees’ Charges’ panel. 6. Sign off and have a great day! :D -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 11 16:02:22 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 11 Mar 2024 15:02:22 +0000 Subject: [Koha-bugs] [Bug 36292] 'See all charges' hyperlink to view guarantee fees is not linked correctly In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36292 Laura Escamilla changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #163045|0 |1 is obsolete| | -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 11 16:05:27 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 11 Mar 2024 15:05:27 +0000 Subject: [Koha-bugs] [Bug 36287] Ability to view both the budget name and budget code in a basket In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36287 Laura Escamilla changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Failed QA |ASSIGNED --- Comment #3 from Laura Escamilla --- Hi Katrin, Thank you for your feedback! I will work on a new patch! --Laura -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 11 16:20:15 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 11 Mar 2024 15:20:15 +0000 Subject: [Koha-bugs] [Bug 8676] Show vendor name in source of acquisition In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=8676 Keith Dembek changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |kdembek at sjcfl.us --- Comment #17 from Keith Dembek --- +1 for me, in our system I'm probably the only current staff member who would know a vendor #, so having the name would be very helpful for other staff! -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 11 16:41:39 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 11 Mar 2024 15:41:39 +0000 Subject: [Koha-bugs] [Bug 32671] basic_workflow.t is failing on slow servers In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=32671 Jonathan Druart changed: What |Removed |Added ---------------------------------------------------------------------------- Summary|basic_workflow.t is failing |basic_workflow.t is failing |randomly |on slow servers -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 11 16:48:54 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 11 Mar 2024 15:48:54 +0000 Subject: [Koha-bugs] [Bug 32671] basic_workflow.t is failing on slow servers In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=32671 Jonathan Druart changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |Needs Signoff -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 11 16:48:57 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 11 Mar 2024 15:48:57 +0000 Subject: [Koha-bugs] [Bug 32671] basic_workflow.t is failing on slow servers In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=32671 --- Comment #7 from Jonathan Druart --- Created attachment 163047 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163047&action=edit Bug 32671: Prevent selenium/basic_workflow.t to fail if run on slow servers When submitting the form to create a new patron we are doing a POST memberentry.pl that is redirecting to moremember.pl The selenium test is expecting for the end of the request to test the page's title against "Patron details for ". But it's only waiting for the POST response (302), not the GET moremember that will display the patron's details. You can simulate a slow server using cpulimit: `cpulimit -b -p $PID -l 1` replacing $PID with the pid of the starman process. Note that other tests are failing using 1%, but... baby steps. The current failre: # Failed test at t/db_dependent/selenium/basic_workflow.t line 122 Wide character in print at /usr/share/perl/5.32/Test2/Formatter/TAP.pm line 125 # 'Add patron (test cat description) › Patrons › Koha' # doesn't match '(?^u:Patron details for test_patron_surname)' The next one (NOT fixed by this patch): # Failed test at t/db_dependent/selenium/basic_workflow.t line 256. # ' # # Checkouts (0)# # '# doesn't match '(?^u:Checkouts \(1\))' t/db_dependent/selenium/basic_workflow.t .. 14/22 # Failed test at t/db_dependent/selenium/basic_workflow.t line 256. # ' # # Checkouts (1) # # ' # doesn't match '(?^u:Checkouts \(2\))' t/db_dependent/selenium/basic_workflow.t .. 16/22 # Failed test at t/db_dependent/selenium/basic_workflow.t line 256. # ' # # Checkouts (2) # # ' # doesn't match '(?^u:Checkouts \(3\))' -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 11 16:49:41 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 11 Mar 2024 15:49:41 +0000 Subject: [Koha-bugs] [Bug 32671] basic_workflow.t is failing on slow servers In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=32671 --- Comment #8 from Jonathan Druart --- We are loosing a test (the form submission redirect to the patron's details), but it's not worth spending more time here IMO. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 11 16:49:45 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 11 Mar 2024 15:49:45 +0000 Subject: [Koha-bugs] [Bug 32671] basic_workflow.t is failing on slow servers In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=32671 Jonathan Druart changed: What |Removed |Added ---------------------------------------------------------------------------- Assignee|chris at bigballofwax.co.nz |jonathan.druart at gmail.com -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 11 16:55:42 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 11 Mar 2024 15:55:42 +0000 Subject: [Koha-bugs] [Bug 8676] Show vendor name in source of acquisition In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=8676 Jonathan Druart changed: What |Removed |Added ---------------------------------------------------------------------------- Assignee|jonathan.druart at gmail.com |oleonard at myacpl.org -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 11 17:01:31 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 11 Mar 2024 16:01:31 +0000 Subject: [Koha-bugs] [Bug 36293] New: OpenURL shows on wrong entries in OPAC result list Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36293 Bug ID: 36293 Summary: OpenURL shows on wrong entries in OPAC result list Change sponsored?: --- Product: Koha Version: master Hardware: All OS: All Status: NEW Severity: normal Priority: P5 - low Component: OPAC Assignee: oleonard at myacpl.org Reporter: katrin.fischer at bsz-bw.de QA Contact: testopia at bugs.koha-community.org Depends on: 8995 When the OpenURL display is limited to a certain item type, they might display with wrong OpenURL-Links. To test: Config: * OPACOpenURLItemTypes limit to one item type code in your system * OPACShowOpenURL: Activate * OpenURLResolverURL: http://just-a-test.de/openurl? * OpenURLText: Online Access Test: * Create a search that returns records with different item types. * Adjust sorting, so that the OpenURL results are at the top of the search. * Verify now the entries without OpenURL show an OpenURL as well * Check the URL generated, it should contain the title of the last entry with matching item type. Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=8995 [Bug 8995] Show OpenURL links in OPAC search results -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 11 17:01:31 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 11 Mar 2024 16:01:31 +0000 Subject: [Koha-bugs] [Bug 8995] Show OpenURL links in OPAC search results In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=8995 Katrin Fischer changed: What |Removed |Added ---------------------------------------------------------------------------- Blocks| |36293 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36293 [Bug 36293] OpenURL shows on wrong entries in OPAC result list -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 11 17:04:59 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 11 Mar 2024 16:04:59 +0000 Subject: [Koha-bugs] [Bug 33523] Hold Queue & Holds to pull targets items on record level holds that should not fill the hold In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33523 Katie Bliss changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |kebliss at dmpl.org -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 11 17:29:08 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 11 Mar 2024 16:29:08 +0000 Subject: [Koha-bugs] [Bug 36122] NEW_SUGGESTION is sent for every modification to the suggestion In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36122 Matthias Le Gac changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Failed QA |Needs Signoff -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 11 17:31:35 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 11 Mar 2024 16:31:35 +0000 Subject: [Koha-bugs] [Bug 36226] Large patron databases create difficult patron auto-complete searches In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36226 Kyle M Hall changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |kyle at bywatersolutions.com --- Comment #1 from Kyle M Hall --- The problem here is our patron searches are not weighted. We simply gather all patrons that match the search criteria and sort them by firstname and lastname. We need to do weighted searching. We could do something like use Elastic for indexing and searching patron data, or we could do something like https://stackoverflow.com/questions/6496866/best-way-to-do-a-weighted-search-over-multiple-fields-in-mysql -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 11 17:47:21 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 11 Mar 2024 16:47:21 +0000 Subject: [Koha-bugs] [Bug 26744] Log changes to extended patron attributes In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=26744 hebah at bywatersolutions.com changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |hebah at bywatersolutions.com -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 11 17:56:13 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 11 Mar 2024 16:56:13 +0000 Subject: [Koha-bugs] [Bug 16122] Item record needs to keep local use count In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=16122 Lucas Gass changed: What |Removed |Added ---------------------------------------------------------------------------- Depends on| |35950 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35950 [Bug 35950] Move the handling of statistics patron logic out of CanBookBeIssued -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 11 17:56:13 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 11 Mar 2024 16:56:13 +0000 Subject: [Koha-bugs] [Bug 35950] Move the handling of statistics patron logic out of CanBookBeIssued In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35950 Lucas Gass changed: What |Removed |Added ---------------------------------------------------------------------------- Blocks| |16122 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=16122 [Bug 16122] Item record needs to keep local use count -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 11 17:56:39 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 11 Mar 2024 16:56:39 +0000 Subject: [Koha-bugs] [Bug 16122] Item record needs to keep local use count In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=16122 Lucas Gass changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Signed Off |Patch doesn't apply --- Comment #83 from Lucas Gass --- Needs rebased/refactored on top of Bug 35950. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 11 18:05:41 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 11 Mar 2024 17:05:41 +0000 Subject: [Koha-bugs] [Bug 36226] Large patron databases create difficult patron auto-complete searches In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36226 --- Comment #2 from Kyle M Hall --- Also https://www.perl.com/pub/2003/09/25/searching.html/ -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Mon Mar 11 18:11:36 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 11 Mar 2024 17:11:36 +0000 Subject: [Koha-bugs] [Bug 33268] Overlay rules don't work correctly when source is set to * In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33268 David Gustafsson changed: What |Removed |Added ---------------------------------------------------------------------------- Patch complexity|--- |Medium patch Change sponsored?|--- |Sponsored Text to go in the| |This enhancement changes release notes| |how marc overlay rules are | |evaluated. Before the | |change rules with filter | |set to '*' (wildcard) where | |only applied when no other | |rules had been defined for | |a specific filter value, | |regardless of if any of the | |rules with that filter | |value matched or not. | | | |With | |this change we fallback to | |the wildcard filter rules | |even though rules with a | |matching filter value do | |exists, if no rule for that | |filter value matches. This | |resolves the issue of | |having to repeat the same | |default rules for each | |filter value rule set. If | |for some filter value the | |wildcard filter rules | |should be overridden, a | |wildcard tag rule for that | |filter value can be defined | |which will have higher | |precedence and override all | |the filter wildcard rules. | | | |In summary, the rules will | |applied as follows: | | | |- A | |matching rule is looked for | |based on context (module | |and filter value), if | |multiple contexts matches | |rules for the module with | |highest priority are used. | |The module priority is | |(from highest to lowest) | |"User name", "Patron | |category" and "Source" | | | |- | |If no matching rule is | |found, we fallback to the | |wildcard filter rules of | |the current context. Severity|major |enhancement -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 11 18:15:33 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 11 Mar 2024 17:15:33 +0000 Subject: [Koha-bugs] [Bug 33268] Overlay rules don't work correctly when source is set to * In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33268 --- Comment #63 from David Gustafsson --- @Victor Grousset/tuxayo Ok, thanks for the feedback and test plan. I now submitted a release note. It's not that easy to explain the change in clear terms, so suggestions are welcome if there is room for improvements. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 11 18:21:11 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 11 Mar 2024 17:21:11 +0000 Subject: [Koha-bugs] [Bug 33268] Overlay rules don't work correctly when source is set to * In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33268 David Gustafsson changed: What |Removed |Added ---------------------------------------------------------------------------- Text to go in the|This enhancement changes |This enhancement changes release notes|how marc overlay rules are |how marc overlay rules are |evaluated. Before the |evaluated. Before the |change rules with filter |change rules with filter |set to '*' (wildcard) where |set to '*' (wildcard) where |only applied when no other |only applied when no other |rules had been defined for |rules had been defined for |a specific filter value, |a specific filter value, |regardless of if any of the |regardless of if any of the |rules with that filter |rules with that filter |value matched or not. |value matched or not. | | |With |With |this change we fallback to |this change we fallback to |the wildcard filter rules |the wildcard filter rules |even though rules with a |even though rules with a |matching filter value do |matching filter value do |exists, if no rule for that |exists, if no rule for that |filter value matches. This |filter value matches. This |resolves the issue of |resolves the issue of |having to repeat the same |having to repeat the same |default rules for each |default rules for each |filter value rule set. If |filter value rule set. If |for some filter value the |for some filter value the |wildcard filter rules |wildcard filter rules |should be overridden, a |should be overridden, a |wildcard tag rule for that |wildcard tag rule for that |filter value can be defined |filter value can be defined |which will have higher |which will have higher |precedence and override all |precedence and override all |the filter wildcard rules. |the filter wildcard rules. | | |In summary, the rules will |In summary, the rules will |applied as follows: |applied as follows: | | |- A |- A |matching rule is looked for |matching rule is looked for |based on context (module |based on context (module |and filter value), if |and filter value), if |multiple contexts matches |multiple contexts matches |rules for the module with |rules for the module with |highest priority are used. |highest priority are used. |The module priority is |The module priority is |(from highest to lowest) |(from highest to lowest) |"User name", "Patron |"User name", "Patron |category" and "Source" |category" and "Source" | | |- |- |If no matching rule is |If no matching rule is |found, we fallback to the |found, we fallback to the |wildcard filter rules of |wildcard filter rules of |the current context. |the current context. | | | |For | |Koha installations where | |marc overlay rules is in | |use a database migration | |will run that creates new | |rules if necessary to | |preserve the current | |behavior, so no user action | |needs to be taken in order | |to correct for this change. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 11 18:23:44 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 11 Mar 2024 17:23:44 +0000 Subject: [Koha-bugs] [Bug 33268] Overlay rules don't work correctly when source is set to * In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33268 David Gustafsson changed: What |Removed |Added ---------------------------------------------------------------------------- Text to go in the|This enhancement changes |This enhancement changes release notes|how marc overlay rules are |how marc overlay rules are |evaluated. Before the |evaluated. Before the |change rules with filter |change rules with filter |set to '*' (wildcard) where |set to '*' (wildcard) where |only applied when no other |only applied when no other |rules had been defined for |rules had been defined for |a specific filter value, |a specific filter value, |regardless of if any of the |regardless of if any of the |rules with that filter |rules with that filter |value matched or not. |value matched or not. | | |With |With |this change we fallback to |this change we fallback to |the wildcard filter rules |the wildcard filter rules |even though rules with a |even though rules with a |matching filter value do |matching filter value do |exists, if no rule for that |exists, if no rule for that |filter value matches. This |filter value matches. This |resolves the issue of |resolves the issue of |having to repeat the same |having to repeat the same |default rules for each |default rules for each |filter value rule set. If |filter value rule set. If |for some filter value the |for some filter value the |wildcard filter rules |wildcard filter rules |should be overridden, a |should be overridden, a |wildcard tag rule for that |wildcard tag rule for that |filter value can be defined |filter value can be defined |which will have higher |which will have higher |precedence and override all |precedence and override all |the filter wildcard rules. |the filter wildcard rules. | | |In summary, the rules will |In summary, the rules will |applied as follows: |applied as follows: | | |- A |- A |matching rule is looked for |matching rule is looked for |based on context (module |based on context (module |and filter value), if |and filter value), if |multiple contexts matches |multiple contexts matches |rules for the module with |rules for the module with |highest priority are used. |highest priority are used. |The module priority is |The module priority is |(from highest to lowest) |(from highest to lowest) |"User name", "Patron |"User name", "Patron |category" and "Source" |category" and "Source". | | |- |- |If no matching rule is |If no matching rule is |found, we fallback to the |found, we fallback to the |wildcard filter rules of |wildcard filter rules of |the current context. |the current context module. | | |For |For Koha installations |Koha installations where |where marc overlay rules is |marc overlay rules is in |in use a database migration |use a database migration |will run that creates new |will run that creates new |rules if necessary to |rules if necessary to |preserve the current |preserve the current |behavior, so no user action |behavior, so no user action |needs to be taken in order |needs to be taken in order |to correct for this change. |to correct for this change. | -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 11 18:36:51 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 11 Mar 2024 17:36:51 +0000 Subject: [Koha-bugs] [Bug 34943] Add a pre-save plugin hook for biblios In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=34943 --- Comment #22 from Tomás Cohen Arazi --- Created attachment 163048 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163048&action=edit Bug 34943: (QA follow-up) Use `before_biblio_action` and an `action` param This patch harmonizes the hook name and parameters with the rest of the codebase. To test: 1. Apply this patch 2. Run: $ ktd --shell k$ qa => SUCCESS: All looks green, and tests still pass (i.e. they were correctly adjusted to the new schema). 3. Sign off :-D Signed-off-by: Tomas Cohen Arazi -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 11 18:39:02 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 11 Mar 2024 17:39:02 +0000 Subject: [Koha-bugs] [Bug 36195] CSRF - testing reports In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36195 --- Comment #6 from Brendan Lawlor --- Created attachment 163049 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163049&action=edit Bug 36195: Replace POST in itemsearch.tt with GET -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 11 18:42:26 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 11 Mar 2024 17:42:26 +0000 Subject: [Koha-bugs] [Bug 36195] CSRF - testing reports In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36195 Brendan Lawlor changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #163049|0 |1 is obsolete| | --- Comment #7 from Brendan Lawlor --- Created attachment 163050 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163050&action=edit Bug 36195: Replace POST in itemsearch.tt with GET We retrieve a list of records for DT, it does not need to be a POST request. Test plan: 1. Try an item search 2. The page loads but pops an alert that says "403: Forbidden" and table stays empty 3. Apply patch 4. Try an item search again and the table loads results -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 11 18:50:34 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 11 Mar 2024 17:50:34 +0000 Subject: [Koha-bugs] [Bug 34943] Add a pre-save plugin hook for biblios In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=34943 Tomás Cohen Arazi changed: What |Removed |Added ---------------------------------------------------------------------------- Status|In Discussion |Signed Off --- Comment #23 from Tomás Cohen Arazi --- Martin, can you please check if my follow-up is what you were envisioning? Thanks! -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 11 18:51:42 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 11 Mar 2024 17:51:42 +0000 Subject: [Koha-bugs] [Bug 36195] CSRF - testing reports In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36195 Brendan Lawlor changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |blawlor at clamsnet.org -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 11 19:02:53 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 11 Mar 2024 18:02:53 +0000 Subject: [Koha-bugs] [Bug 36215] Bookings calendar only shows bookings within RESTdefaultPageSize In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36215 Tomás Cohen Arazi changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Signed Off |Passed QA -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 11 19:02:55 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 11 Mar 2024 18:02:55 +0000 Subject: [Koha-bugs] [Bug 36215] Bookings calendar only shows bookings within RESTdefaultPageSize In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36215 Tomás Cohen Arazi changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #162846|0 |1 is obsolete| | --- Comment #4 from Tomás Cohen Arazi --- Created attachment 163051 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163051&action=edit Bug 36215: Remove limit on fetching bookings This removes the paging from the bookings request so we take into account all bookings. We may want to replace this with date bounded paging in the future, but lets not try to optimise until we need to. To test: 1 - Find a record detail page in Koha staff interface 2 - Click on a barcode to go to items tab 3 - Edit 'bookable' to 'yes' 4 - Return to details page 5 - Place 5 bookings on a record 6 - Set system preference RESTDefaultPageSize 2 7 - Click the 'Bookings' tab on the record details 8 - Confirm onyl 2 bookings shown in calendar view 9 - Apply patch, reload 10 - All bookings now show in calendar Signed-off-by: Nick Clemens Signed-off-by: Tomas Cohen Arazi -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 11 19:13:38 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 11 Mar 2024 18:13:38 +0000 Subject: [Koha-bugs] [Bug 28981] Add a syspref for marking items as unavailable in Z3950Responder In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28981 Noémie Labine changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |noemie.labine at collecto.ca --- Comment #1 from Noémie Labine --- +1 -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Mon Mar 11 19:31:18 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 11 Mar 2024 18:31:18 +0000 Subject: [Koha-bugs] [Bug 36195] CSRF - testing reports In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36195 Dave changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |ddaghita at mckinneytexas.org -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 11 19:34:48 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 11 Mar 2024 18:34:48 +0000 Subject: [Koha-bugs] [Bug 36294] New: Replace inaccurate use of "book" in system preferences Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36294 Bug ID: 36294 Summary: Replace inaccurate use of "book" in system preferences Change sponsored?: --- Product: Koha Version: unspecified Hardware: All OS: All Status: NEW Severity: normal Priority: P5 - low Component: System Administration Assignee: koha-bugs at lists.koha-community.org Reporter: andrewfh at dubcolib.org QA Contact: testopia at bugs.koha-community.org CC: gmcharlt at gmail.com Several system preferences refer to "books" in their text but are referring to either a biblio or an item, not something that is necessarily a book. Should refer to titles: virtualshelves: "Allow staff and patrons to create and view saved lists of books" SyndeticsSeries: "(Do/Don't show) information on other books in a title's series from Syndetics on item detail pages on the OPAC." Should refer to items: AutoSwitchPatron: "(dis/enable) the automatic redirection to another patron when a patron barcode is scanned instead of a book. This should not be enabled if you have overlapping patron and book barcodes." OPACFineNoRenewals: "Only allow patrons to renew their own books on the OPAC if they have less than [] USD in charges (leave blank to disable)." OpacRenewalAllowed: "(do/don't allow) patrons to renew their own books on the OPAC." opacreadinghistory: "patrons to see what books they have checked out in the past." -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Mon Mar 11 19:40:57 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 11 Mar 2024 18:40:57 +0000 Subject: [Koha-bugs] [Bug 35959] Inconsistent hierarchy during C3 merge of class 'Koha::AuthorisedValue' (and a few other modules) In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35959 --- Comment #26 from Tomás Cohen Arazi --- I mean... This is clearly a Perl bug :-P It is a bad sign that it hasn't been reported+solved already upstream. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 11 20:06:04 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 11 Mar 2024 19:06:04 +0000 Subject: [Koha-bugs] [Bug 15565] Place multiple item-level holds at once for the same record In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=15565 Nick Clemens changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Patch doesn't apply |Needs Signoff -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 11 20:06:10 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 11 Mar 2024 19:06:10 +0000 Subject: [Koha-bugs] [Bug 15565] Place multiple item-level holds at once for the same record In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=15565 Nick Clemens changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #162071|0 |1 is obsolete| | Attachment #162072|0 |1 is obsolete| | Attachment #162073|0 |1 is obsolete| | Attachment #162074|0 |1 is obsolete| | --- Comment #290 from Nick Clemens --- Created attachment 163052 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163052&action=edit Bug 15565: Place multiple holds on one record on staff interface -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 11 20:06:16 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 11 Mar 2024 19:06:16 +0000 Subject: [Koha-bugs] [Bug 15565] Place multiple item-level holds at once for the same record In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=15565 --- Comment #291 from Nick Clemens --- Created attachment 163053 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163053&action=edit Bug 15565: Tidy reserve/placerequest.pl -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 11 20:06:22 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 11 Mar 2024 19:06:22 +0000 Subject: [Koha-bugs] [Bug 15565] Place multiple item-level holds at once for the same record In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=15565 --- Comment #292 from Nick Clemens --- Created attachment 163054 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163054&action=edit Bug 15565: Place multiple holds on one or more records in OPAC -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 11 20:06:28 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 11 Mar 2024 19:06:28 +0000 Subject: [Koha-bugs] [Bug 15565] Place multiple item-level holds at once for the same record In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=15565 --- Comment #293 from Nick Clemens --- Created attachment 163055 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163055&action=edit Bug 15565: Add 'DisplayMultiItemHolds' system preference to toggle display of multi item holds These patches allow the display of checkboxes instead of radio buttons for placing specific item holds in the OPAC and staff interface. This display is controlled by the system preference 'DisplayMultiItemHolds'. When disabled, the hold display is the same as in the past. When enabled, the user can select multiple items to place holds on at the same time. If there is an error placing one or more holds, an error will display on the following screen. Test plan: 0. Apply the patches and koha-plack --reload kohadev 1. Enable 'DisplayMultiItemHolds' syspref 2. In staff interface, go to a record with multiple holdable items 3. Check the boxes next to 2+ items and click the button to place the holds 4. Note that the holds are all placed (unless there is a failure) 5. Cancel the holds, and try again (but this time make Holds per record (count) only 1 in the circ rules) 6. Note that one of the holds is placed, but the others are not and an error message is displayed saying that one or more holds could not be placed because the holds per record was exceeded 7. Perform the same above procedure on the OPAC 8. If DisplayMultiPlaceHold is enabled, you can test placing multiple specific item holds across multiple bibs in the OPAC via the search results 9. If EnableItemGroups and EnableItemGroupHolds is enabled, you can test that you can either place item group holds or specific item holds. Toggling the checkboxes in the staff interface will uncheck the item group hold radio button. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 11 20:28:06 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 11 Mar 2024 19:28:06 +0000 Subject: [Koha-bugs] [Bug 33898] background_jobs_worker.pl may leave defunct children processes for extended periods of time In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33898 Victor Grousset/tuxayo changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #162953|0 |1 is obsolete| | --- Comment #26 from Victor Grousset/tuxayo --- Created attachment 163056 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163056&action=edit Bug 33898: Alternative approach with receive frame timeout See bug 33898 comment6. Test plan: Based on comment12: Stage MARC import and manage. Look at the same time to the results of ps aux|grep Z. Verify that the lines with [background_jobs] disappear within 10 seconds. Signed-off-by: Marcel de Rooy Signed-off-by: Kyle M Hall Signed-off-by: Victor Grousset/tuxayo -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 11 20:28:09 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 11 Mar 2024 19:28:09 +0000 Subject: [Koha-bugs] [Bug 33898] background_jobs_worker.pl may leave defunct children processes for extended periods of time In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33898 Victor Grousset/tuxayo changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #162954|0 |1 is obsolete| | --- Comment #27 from Victor Grousset/tuxayo --- Created attachment 163057 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163057&action=edit Bug 33898: Implement reaping for database polling Signed-off-by: Kyle M Hall Signed-off-by: Victor Grousset/tuxayo -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 11 20:32:30 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 11 Mar 2024 19:32:30 +0000 Subject: [Koha-bugs] [Bug 33898] background_jobs_worker.pl may leave defunct children processes for extended periods of time In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33898 --- Comment #28 from Victor Grousset/tuxayo --- (In reply to Marcel de Rooy from comment #20) > The alternative patch addresses the issues raised earlier on the use of > signals and follows the suggestions of David. Thanks :) > Kyle, Victor and Asymar: Would this work for you? It works, so signing off. As for the signal vs no signals I don't know the good practices to QA this. Same for how this plays with when using database polling or the message queue. (I would have missed that the 1st alternate patch missed this) -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 11 21:04:10 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 11 Mar 2024 20:04:10 +0000 Subject: [Koha-bugs] [Bug 34979] System preferences missing from sysprefs.sql In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=34979 --- Comment #41 from Katrin Fischer --- (In reply to Hans Pålsson from comment #40) > Dito, upgrade from 23.11.02 fails. I am sorry for that. If you remove the pref from the database and then re-run the script, that should fix things. We are also working on a fix here: bug 36232 -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 11 21:21:31 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 11 Mar 2024 20:21:31 +0000 Subject: [Koha-bugs] [Bug 35357] Item not removed from holds queue when checked out to a different patron In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35357 --- Comment #25 from Victor Grousset/tuxayo --- (In reply to Kyle M Hall from comment #22) > Using DBIC to find and delete the lines in the two tables will result in 4 > queries compared to the one query we have now. The manual query should still do in practice two lookups via itemnumber. And then two deletes. But maybe for simple queries the overhead of doing individual queries is larger than the work done by the simple queries themselves. I don't know enough about real world DBMS behavior. --- (In reply to Katrin Fischer from comment #23) > Hi Kyle, can you explain a bit more about those extra queries if you can? > I'd like to understand the issue better and learn. IIUC, we don't have the ORM objects on hand so we have to do a find first. Then do a delete on the object. So 4 queries. (maybe Kyle had something else in mind) --- (In reply to Fridolin Somers from comment #24) > Seeing comments, I wait for backport No worries, you can backport. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 11 21:23:41 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 11 Mar 2024 20:23:41 +0000 Subject: [Koha-bugs] [Bug 36280] Viewing batch of staged records broken: CSRF token error In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36280 --- Comment #2 from Victor Grousset/tuxayo --- Thanks, it's a catch all ticket, that's why I didn't find it. -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Mon Mar 11 21:36:15 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 11 Mar 2024 20:36:15 +0000 Subject: [Koha-bugs] [Bug 36295] New: Space out content blocks in Batch record modification Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36295 Bug ID: 36295 Summary: Space out content blocks in Batch record modification Change sponsored?: --- Product: Koha Version: master Hardware: All OS: All Status: NEW Severity: trivial Priority: P5 - low Component: Templates Assignee: oleonard at myacpl.org Reporter: caroline.cyr-la-rose at inlibro.com QA Contact: testopia at bugs.koha-community.org This is very minor, but I figure I'd report it anyway... When using the batch record modification tool, there is no space between the "Record type" content block and the tabbed "Source of records" block. To recreate: 1. Create a MARC modification template 1.1. Go to Cataloging > MARC modification templates > New template 1.2. Give the template a name (for example, "Hide from OPAC") 1.3. Click Submit 1.4. Click New action 1.5. Add a new action (for example, Update existing or add new field(s) 942 n with value 1) 1.6. Click Add action 2. Go to Cataloging > Batch record modification --> Note that there is no space between the white "Record type" block and the block underneath with the tabs for the record source -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 11 21:36:57 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 11 Mar 2024 20:36:57 +0000 Subject: [Koha-bugs] [Bug 36295] Space out content blocks in Batch record modification In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36295 --- Comment #1 from Caroline Cyr La Rose --- I found this in 23.05. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 11 21:37:14 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 11 Mar 2024 20:37:14 +0000 Subject: [Koha-bugs] [Bug 36295] Space out content blocks in Batch record modification In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36295 Caroline Cyr La Rose changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |philippe.blouin at inlibro.com -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 11 21:53:45 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 11 Mar 2024 20:53:45 +0000 Subject: [Koha-bugs] [Bug 33510] Add context to "New" as a status In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33510 Caroline Cyr La Rose changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |philippe.blouin at inlibro.com -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 11 22:01:35 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 11 Mar 2024 21:01:35 +0000 Subject: [Koha-bugs] [Bug 36280] Viewing batch of staged records broken: CSRF token error In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36280 --- Comment #3 from Victor Grousset/tuxayo --- issue reported in the pad, section "Testing Reports (36195):" -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Mon Mar 11 22:03:20 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 11 Mar 2024 21:03:20 +0000 Subject: [Koha-bugs] [Bug 27753] Automate resolution of return claim when checking in an item In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=27753 Laura Escamilla changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #162517|0 |1 is obsolete| | --- Comment #8 from Laura Escamilla --- Created attachment 163058 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163058&action=edit Bug 27753: Added two new system preferences for automatically resolving claims. Bug 27753: Removed syspref code in order to move it over to Circulation.pl Bug: 27753 - Updates to AutoClaimResolutionOnCheckin Bug 27753: Added code for AutoClaimResolutionOnCheckout Bug 27753: Added CLAIM_RESOLUTION alert Bug 27753: Made updates to AutoClaimResolved messages -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 11 22:04:26 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 11 Mar 2024 21:04:26 +0000 Subject: [Koha-bugs] [Bug 27753] Automate resolution of return claim when checking in an item In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=27753 --- Comment #9 from Laura Escamilla --- Created attachment 163059 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163059&action=edit Bug 27753: Testing - not ready -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 11 22:06:20 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 11 Mar 2024 21:06:20 +0000 Subject: [Koha-bugs] [Bug 27753] Automate resolution of return claim when checking in an item In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=27753 Laura Escamilla changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #163059|0 |1 is obsolete| | --- Comment #10 from Laura Escamilla --- Created attachment 163060 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163060&action=edit Bug 27753: Testing - not ready -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 11 22:06:38 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 11 Mar 2024 21:06:38 +0000 Subject: [Koha-bugs] [Bug 27753] Automate resolution of return claim when checking in an item In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=27753 Laura Escamilla changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #163060|0 |1 is obsolete| | --- Comment #11 from Laura Escamilla --- Created attachment 163061 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163061&action=edit Bug 27753: Testing - not ready -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 11 22:12:53 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 11 Mar 2024 21:12:53 +0000 Subject: [Koha-bugs] [Bug 27753] Automate resolution of return claim when checking in an item In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=27753 Laura Escamilla changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #163058|0 |1 is obsolete| | -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 11 22:28:07 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 11 Mar 2024 21:28:07 +0000 Subject: [Koha-bugs] [Bug 32636] More info with batch patron deletion In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=32636 Jack changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |jmorash at sbhrs.org --- Comment #1 from Jack --- It would sure be nice to know which patrons were not being deleted from your list. Without knowing, it just creates more work to find out who and why they were not deleted. Just showing who was not deleted would sure be nice. -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 11 22:35:19 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 11 Mar 2024 21:35:19 +0000 Subject: [Koha-bugs] [Bug 36232] Error fixing OAI-PMH:AutoUpdateSetsEmbedItemData syspref name on the DB In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36232 Victor Grousset/tuxayo changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #163027|0 |1 is obsolete| | --- Comment #3 from Victor Grousset/tuxayo --- Created attachment 163062 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163062&action=edit Bug 36232: Fix error in DBRev dealing with OAI-PMH:AutoUpdateSetsEmbedItemData typo This patch fixes the case of the wrong syspref variable co-existing with the good one. OAI-PMH:AutoUpdateSetsEmbedItemData is the only case, as the rest of the mispelled ones are just case fixes, which would not trigger the same situation as the `systempreferences` table collation is case-insentitive. To test: 1. Run: $ ktd --shell k$ koha-mysql kohadev > INSERT INTO systempreferences VALUES ('OAI-PMH:AutoUpdateSetEmbedItemData',0,'','','YesNo'); > UPDATE systempreferences SET variable = 'IllCheckAvailability' WHERE variable = "ILLCheckAvailability"; > INSERT INTO systempreferences VALUES ('IllCheckAvailability',0,'','','YesNo'); => FAIL: The last command fails because the good and wrong values cannot coexist 2. Set the version to a prior one: > UPDATE systempreferences SET value="23.1200004" WHERE variable like 'version'; 3. Run: k$ updatedatabase => FAIL: You get this error: ERROR: {UNKNOWN}: DBI Exception: DBD::mysql::db do failed: Duplicate entry 'OAI-PMH:AutoUpdateSetsEmbedItemData' for key 'systempreferences.PRIMARY' at ... 4. Apply this patch 5. Repeat 3 => SUCCESS: It works! 6. Sign off :-D Signed-off-by: Tomas Cohen Arazi Signed-off-by: Victor Grousset/tuxayo -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 11 22:35:41 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 11 Mar 2024 21:35:41 +0000 Subject: [Koha-bugs] [Bug 36232] Error fixing OAI-PMH:AutoUpdateSetsEmbedItemData syspref name on the DB In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36232 Victor Grousset/tuxayo changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |victor at tuxayo.net Status|Needs Signoff |Signed Off --- Comment #4 from Victor Grousset/tuxayo --- It works :) -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 11 22:39:29 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 11 Mar 2024 21:39:29 +0000 Subject: [Koha-bugs] [Bug 36232] Error fixing OAI-PMH:AutoUpdateSetsEmbedItemData syspref name on the DB In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36232 David Nind changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #163062|0 |1 is obsolete| | --- Comment #5 from David Nind --- Created attachment 163063 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163063&action=edit Bug 36232: Fix error in DBRev dealing with OAI-PMH:AutoUpdateSetsEmbedItemData typo This patch fixes the case of the wrong syspref variable co-existing with the good one. OAI-PMH:AutoUpdateSetsEmbedItemData is the only case, as the rest of the mispelled ones are just case fixes, which would not trigger the same situation as the `systempreferences` table collation is case-insentitive. To test: 1. Run: $ ktd --shell k$ koha-mysql kohadev > INSERT INTO systempreferences VALUES ('OAI-PMH:AutoUpdateSetEmbedItemData',0,'','','YesNo'); > UPDATE systempreferences SET variable = 'IllCheckAvailability' WHERE variable = "ILLCheckAvailability"; > INSERT INTO systempreferences VALUES ('IllCheckAvailability',0,'','','YesNo'); => FAIL: The last command fails because the good and wrong values cannot coexist 2. Set the version to a prior one: > UPDATE systempreferences SET value="23.1200004" WHERE variable like 'version'; 3. Run: k$ updatedatabase => FAIL: You get this error: ERROR: {UNKNOWN}: DBI Exception: DBD::mysql::db do failed: Duplicate entry 'OAI-PMH:AutoUpdateSetsEmbedItemData' for key 'systempreferences.PRIMARY' at ... 4. Apply this patch 5. Repeat 3 => SUCCESS: It works! 6. Sign off :-D Signed-off-by: Tomas Cohen Arazi Signed-off-by: Victor Grousset/tuxayo Signed-off-by: David Nind -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 11 22:39:31 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 11 Mar 2024 21:39:31 +0000 Subject: [Koha-bugs] [Bug 23335] "There are no items that can be placed on hold." In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=23335 Nasr changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |nasralyashassan at gmail.com -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 11 22:40:19 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 11 Mar 2024 21:40:19 +0000 Subject: [Koha-bugs] [Bug 36296] New: There are no items that can be placed on hold. Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36296 Bug ID: 36296 Summary: There are no items that can be placed on hold. Change sponsored?: --- Product: Koha Version: 22.11 Hardware: All OS: All Status: NEW Severity: enhancement Priority: P5 - low Component: Hold requests Assignee: koha-bugs at lists.koha-community.org Reporter: nasralyashassan at gmail.com QA Contact: testopia at bugs.koha-community.org CC: gmcharlt at gmail.com Hello all, I have this problem when I want to place hold an book is says : There are no items that can be placed on hold. What could be the issue? Any help will be appreciated -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Mon Mar 11 22:41:55 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 11 Mar 2024 21:41:55 +0000 Subject: [Koha-bugs] [Bug 36296] There are no items that can be placed on hold. In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36296 --- Comment #1 from Nasr --- Created attachment 163064 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163064&action=edit This is how it look like -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Mon Mar 11 22:57:10 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 11 Mar 2024 21:57:10 +0000 Subject: [Koha-bugs] [Bug 35532] Use of calendar for date range in bookings is not clear In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35532 --- Comment #17 from Katrin Fischer --- (In reply to Fridolin Somers from comment #16) > Depends on Bug 35426 not in 23.11.x Maye worth reconsidering - a lot of us didn't understand this new type of date selector and this improves things quite a bit. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 11 23:21:09 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 11 Mar 2024 22:21:09 +0000 Subject: [Koha-bugs] [Bug 35955] New CSRF token generated everytime we need one In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35955 --- Comment #13 from David Cook --- (In reply to Fridolin Somers from comment #12) > May we backport this for better performance ? I can't imagine that it would hurt. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 11 23:30:38 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 11 Mar 2024 22:30:38 +0000 Subject: [Koha-bugs] [Bug 27753] Automate resolution of return claim when checking in an item In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=27753 Michelle Spinney changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |mspinney at clamsnet.org -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 11 23:49:54 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 11 Mar 2024 22:49:54 +0000 Subject: [Koha-bugs] [Bug 13706] Deduping authorities script (dedup_authorities.pl) In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=13706 David Nind changed: What |Removed |Added ---------------------------------------------------------------------------- Text to go in the| |This new command line release notes| |script | |(misc/maintenance/dedup_aut | |horities.pl) is a tool for | |helping to automatically | |remove duplicate authority | |records. | | | |Features: | |- | |Choose a method(s) to | |select which authority | |record to keep when | |duplicates are found. | |Methods include: | | . date: | |keep the most recent | |authority (based on 005 | |field) | | . used: keep the | |most used authority | | . | |ppn: PPN (UNIMARC only), | |keep the authority with a | |ppn (when some authorities | |don't have one, based on | |009 field) | |- Use a SQL | |WHERE statement to limit | |the authority records | |checked for deduplication | |- | |Check only specified | |authority types | |- Increase | |the level of detail shown | |using the --verbose option | |- Changes are only made | |when the --confirm option | |is used | | | |Examples: | |- | |Methods - for the | |authorities that have a | |PPN, keep the most recent, | |and if two (or more) have | |the same date in 005, keep | |the most used: --method ppn | |--method date --method used | | | |- SQL WHERE statement - | |only look at records with | |an auth_id less than 5,000: | |--where="authid < 5000" | |- | |Limit deduplication to | |specific authority types: | |--authtypecode PERSO_NAME | | | |See the script help for the | |options available and usage | |examples | |(misc/maintenance/dedup_aut | |horities.pl --help). -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 11 23:51:36 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 11 Mar 2024 22:51:36 +0000 Subject: [Koha-bugs] [Bug 36291] Scrolling glitch on ILL batches table In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36291 David Nind changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |david at davidnind.com -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 12 00:07:04 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 11 Mar 2024 23:07:04 +0000 Subject: [Koha-bugs] [Bug 36292] 'See all charges' hyperlink to view guarantee fees is not linked correctly In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36292 David Nind changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Needs Signoff |Signed Off -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 12 00:07:07 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 11 Mar 2024 23:07:07 +0000 Subject: [Koha-bugs] [Bug 36292] 'See all charges' hyperlink to view guarantee fees is not linked correctly In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36292 David Nind changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #163046|0 |1 is obsolete| | --- Comment #4 from David Nind --- Created attachment 163065 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163065&action=edit Bug 36292: Fixed 'See all charges' hyperlink for guarantees/guarantor linked charges To test: 1. Add a guarantee / guarantor relationship for two patrons. 2. Add a manual fee to the guarantees' account. 3. Go to the guarantor's account and view the 'Details' tab. Under contact information there should be a Guarantees section. There you will see the charges for your guarantee. Click on ‘See all charges’. The link leads you no where. 4. Apply the patch and restart_all 5. Refresh the guarantor’s page and click on ‘See all charges’ again. This time it will take you down to the ‘Guarantees’ Charges’ panel. 6. Sign off and have a great day! :D Signed-off-by: David Nind -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 12 00:13:39 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 11 Mar 2024 23:13:39 +0000 Subject: [Koha-bugs] [Bug 33259] Optionally set SameSite attribute of cookie to Strict In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33259 --- Comment #45 from David Cook --- Rebasing this one as opac/sco-sco-main.pl wasn't applying anymore. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 12 00:14:44 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 11 Mar 2024 23:14:44 +0000 Subject: [Koha-bugs] [Bug 33259] Optionally set SameSite attribute of cookie to Strict In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33259 --- Comment #46 from David Cook --- Technically, a lot of this was probably overkill. The key cookie that needed Strict is the CGISESSID cookie, because that's where there's security implications. However, it doesn't hurt doing it like we have here. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 12 00:15:35 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 11 Mar 2024 23:15:35 +0000 Subject: [Koha-bugs] [Bug 33259] Optionally set SameSite attribute of cookie to Strict In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33259 David Cook changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #162181|0 |1 is obsolete| | --- Comment #47 from David Cook --- Created attachment 163066 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163066&action=edit Bug 33259: Add SameSiteSessionCookie system preference Sponsored-by: Toi Ohomai Institute of Technology, New Zealand Signed-off-by: Sally Signed-off-by: Lucas Gass Signed-off-by: Martin Renvoize -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 12 00:15:39 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 11 Mar 2024 23:15:39 +0000 Subject: [Koha-bugs] [Bug 33259] Optionally set SameSite attribute of cookie to Strict In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33259 David Cook changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #162182|0 |1 is obsolete| | --- Comment #48 from David Cook --- Created attachment 163067 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163067&action=edit Bug 33259: Optionally set SameSite attribute of session cookie to Strict Note: The below test plan is assuming you are running the Mozilla Firefox browser. Test plan: 1. Apply patches 2. Upgrade database sudo koha-upgrade-schema 3. Confirm the new system preference 'SameSiteSessionCookie' is 'Lax' 4. Go to a staff client and OPAC page, right click, choose 'Inspect', go to the 'Storage' tab, click on 'Cookies', click on 'CGISESSID' 5. Confirm 'SameSite' = 'Lax' 6. Change the 'SameSiteSessionCookie' to 'Strict' 7. Open a new private browser window. Go to a staff client and OPAC page, right click, choose 'Inspect, go to the 'Storage' tab, click on 'Cookies', click on 'CGISESSID' 8. Repeat step 4 and confirm 'SameSite' = 'Strict' 9. Go to: Cataloguing > New record 10. Right click, click 'Inspect', go to the 'Console' tab, confirm there are no JavaScript errors 11. Change 'SameSiteSessionCookie' to 'None' 12. Open a new private browser window, repeat step 4, and confirm the 'SameSite' = 'None' 13. Go to: Cataloguing > New record 14. Right click, click 'Inspect', go to the 'Console' tab, confirm there are no JavaScript errors. Sponsored-by: Toi Ohomai Institute of Technology, New Zealand Signed-off-by: Sally Signed-off-by: Lucas Gass Signed-off-by: Martin Renvoize -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 12 00:15:42 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 11 Mar 2024 23:15:42 +0000 Subject: [Koha-bugs] [Bug 33259] Optionally set SameSite attribute of cookie to Strict In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33259 David Cook changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #162183|0 |1 is obsolete| | --- Comment #49 from David Cook --- Created attachment 163068 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163068&action=edit Bug 33259: (follow-up) Use different speechmarks to prevent errors To test: Confirm the checkouts table for a patron loads successfully Signed-off-by: Lucas Gass Signed-off-by: Martin Renvoize -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 12 00:15:45 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 11 Mar 2024 23:15:45 +0000 Subject: [Koha-bugs] [Bug 33259] Optionally set SameSite attribute of cookie to Strict In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33259 David Cook changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #162184|0 |1 is obsolete| | --- Comment #50 from David Cook --- Created attachment 163069 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163069&action=edit Bug 33259: (follow-up) Add HTML filters to Cookies.set Test plan: Run QA test tools and confirm the no complaints about filters Signed-off-by: Lucas Gass Signed-off-by: Martin Renvoize -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 12 00:15:49 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 11 Mar 2024 23:15:49 +0000 Subject: [Koha-bugs] [Bug 33259] Optionally set SameSite attribute of cookie to Strict In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33259 David Cook changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #162185|0 |1 is obsolete| | --- Comment #51 from David Cook --- Created attachment 163070 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163070&action=edit Bug 33259: (follow-up) perltidy Signed-off-by: Lucas Gass Signed-off-by: Martin Renvoize -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 12 00:15:52 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 11 Mar 2024 23:15:52 +0000 Subject: [Koha-bugs] [Bug 33259] Optionally set SameSite attribute of cookie to Strict In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33259 David Cook changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #162186|0 |1 is obsolete| | --- Comment #52 from David Cook --- Created attachment 163071 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163071&action=edit Bug 33259: (QA follow-up) Default 'Strict' for new installs -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 12 00:26:58 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 11 Mar 2024 23:26:58 +0000 Subject: [Koha-bugs] [Bug 33259] Optionally set SameSite attribute of cookie to Strict In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33259 David Cook changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Passed QA |In Discussion --- Comment #53 from David Cook --- Actually, I'm momentarily going to move this to "In Discussion". I think using a Strict SameSite attribute would break the SSO implementation especially in terms of CSRF. You'd have an anonymous session, then you redirect to the IdP, and then you're redirected back. Since you're being redirected back via an external site, your browser shouldn't send the Strict CGISESSID cookie, which means your CSRF validation will fail. I'll test that in a minute. We might need to always use a "Lax" SameSite attribute for anonymous sessions. I'll try to think of any other problem scenarios... -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 12 00:29:00 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 11 Mar 2024 23:29:00 +0000 Subject: [Koha-bugs] [Bug 34478] Full CSRF protection In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=34478 --- Comment #183 from David Cook --- (In reply to Fridolin Somers from comment #182) > Not for backport I bet ? I don't think that it would be possible to backport this one. However, I have been thinking a bit about how to provide some protection to stable branches. Locally, I've applied the following: - Bug 36098 (the Koha::Session patches) - Bug 34755: Backport Koha::Token change from bug 34478 - Bug 34478: Add csrf-token in meta I've created a middleware based off Koha::Middleware::CSRF and then using a mix of ideas from Marcel and myself, I've used Javascript to inject CSRF tokens into forms and Koha API calls. At the moment, I'm testing this on the OPAC, and then I'm going to look at the Staff Interface. I want to do some more thinking about how we can use "Strict" in the SameSite attribute for the CGISESSID cookie to cover off CSRF for GET requests as well. Less of a problem for 34478 because it fixes a lot of stateful GET requests, but for older versions... -- Long story short... it might be worth backporting just "Bug 34478: Add csrf-token in meta" for now. Maybe a new bug report for that? -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 12 00:37:34 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 11 Mar 2024 23:37:34 +0000 Subject: [Koha-bugs] [Bug 16122] Item record needs to keep local use count In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=16122 Lucas Gass changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #161153|0 |1 is obsolete| | --- Comment #84 from Lucas Gass --- Created attachment 163072 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163072&action=edit Bug 16122: Add localuse column to items and deleteditems Signed-off-by: Christopher Brannon Signed-off-by: Emily Lamancusa Signed-off-by: Katrin Fischer Signed-off-by: Andrew Fuerste-Henry -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 12 00:37:37 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 11 Mar 2024 23:37:37 +0000 Subject: [Koha-bugs] [Bug 16122] Item record needs to keep local use count In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=16122 Lucas Gass changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #161154|0 |1 is obsolete| | --- Comment #85 from Lucas Gass --- Created attachment 163073 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163073&action=edit Bug 16122: API and Schema updates Signed-off-by: Christopher Brannon Signed-off-by: Emily Lamancusa Signed-off-by: Katrin Fischer Signed-off-by: Andrew Fuerste-Henry -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 12 00:37:40 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 11 Mar 2024 23:37:40 +0000 Subject: [Koha-bugs] [Bug 16122] Item record needs to keep local use count In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=16122 --- Comment #86 from Lucas Gass --- Created attachment 163074 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163074&action=edit Bug 16122: Increment items.localuse -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 12 00:37:43 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 11 Mar 2024 23:37:43 +0000 Subject: [Koha-bugs] [Bug 16122] Item record needs to keep local use count In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=16122 Lucas Gass changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #161156|0 |1 is obsolete| | --- Comment #87 from Lucas Gass --- Created attachment 163075 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163075&action=edit Bug 16122: Add display and Table settings Signed-off-by: Andrew Fuerste-Henry -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 12 00:37:46 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 11 Mar 2024 23:37:46 +0000 Subject: [Koha-bugs] [Bug 16122] Item record needs to keep local use count In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=16122 Lucas Gass changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #161157|0 |1 is obsolete| | --- Comment #88 from Lucas Gass --- Created attachment 163076 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163076&action=edit Bug 16122: Add maintenance script to update items.localuse from stats Signed-off-by: Emily Lamancusa Signed-off-by: Katrin Fischer Signed-off-by: Andrew Fuerste-Henry -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 12 00:37:49 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 11 Mar 2024 23:37:49 +0000 Subject: [Koha-bugs] [Bug 16122] Item record needs to keep local use count In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=16122 --- Comment #89 from Lucas Gass --- Created attachment 163077 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163077&action=edit Bug 16122: Add unit test To test: 1. Apply patch, updatedatabase & schema, restart all Services 2. Go to Administration > Table setting. Find the holdings table ( Catalog > holdings_table ) and turn the local use column on. 3. Go to an item record and notice the column 'Local uses' 4. Turn the system preference RecordLocalUseOnReturn Off. 5. Check in an item that is not checkout out. No local use should be recorded for the item. 6. Turn RecordLocalUseOnReturn on and check in an item that is not checked out. Local use on that item should increment by 1. 7. Create a statistical patron and check an item out to them. Local use should increment by 1. 8. Go to /api/v1/items?external_id={barcode} and make sure the numbers for localuse look correct. To test maintainence script: 1. Without the patch, have RecordLocalUseOnReturn on. 2. Check in some items to record localuse in the stats table. Keep note of those stats. 3. Apply the patches, updatedatabase. 4. Run the maintenance script, perl update_localuse_from_statistics.pl 5. Now check that items.localuse is congruent with what is in the stats table -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 12 00:38:12 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 11 Mar 2024 23:38:12 +0000 Subject: [Koha-bugs] [Bug 16122] Item record needs to keep local use count In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=16122 Lucas Gass changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #161158|0 |1 is obsolete| | -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 12 00:38:17 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 11 Mar 2024 23:38:17 +0000 Subject: [Koha-bugs] [Bug 16122] Item record needs to keep local use count In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=16122 Lucas Gass changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #161155|0 |1 is obsolete| | -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 12 00:38:34 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 11 Mar 2024 23:38:34 +0000 Subject: [Koha-bugs] [Bug 16122] Item record needs to keep local use count In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=16122 Lucas Gass changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #161159|0 |1 is obsolete| | -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 12 00:38:42 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 11 Mar 2024 23:38:42 +0000 Subject: [Koha-bugs] [Bug 16122] Item record needs to keep local use count In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=16122 Lucas Gass changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #161160|0 |1 is obsolete| | -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 12 00:38:57 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 11 Mar 2024 23:38:57 +0000 Subject: [Koha-bugs] [Bug 16122] Item record needs to keep local use count In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=16122 Lucas Gass changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Patch doesn't apply |Needs Signoff -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 12 00:45:27 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 11 Mar 2024 23:45:27 +0000 Subject: [Koha-bugs] [Bug 33703] Entering dates should be more flexible accepting different entry formats In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33703 Lucas Gass changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #162726|0 |1 is obsolete| | --- Comment #54 from Lucas Gass --- Created attachment 163078 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163078&action=edit Bug 33703: Add Masikto core/kit for date masking To test: 1. Apply patch 2. Restart all, clear browser cache 3. In the staff interface start testing some flatpickr instances with direct inputs. 4. Try entering your dates without delimiters, '/' or '-', or '.'. 5. Make sure the dates are well formed. 6. Test with each of dateformat's Koha supports. ( system preference 'dateformat'). 7. Add/edit an item with the dateaccessioned.pl plugin loaded, making the dates are well formed. 8. Make an item bookable by going to the item tab of a record and setting at least 1 item to "Bookable:". 9. Now "Place booking", which should trigger a modal. 10. In the "Period" date picker, which is a range, the dates should NOT be formatted. 11. Log in to the OPAC and try some date pickers ( self reg/borrower mod/ect ) Some places to test: -Patron record date of birth -Patron record registration date -Patron record expiry date -Checkouts, manually set a due date -Patron category, enrollment period -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 12 00:45:29 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 11 Mar 2024 23:45:29 +0000 Subject: [Koha-bugs] [Bug 33703] Entering dates should be more flexible accepting different entry formats In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33703 Lucas Gass changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #162727|0 |1 is obsolete| | --- Comment #55 from Lucas Gass --- Created attachment 163079 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163079&action=edit Bug 33703: Add time support -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 12 00:45:32 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 11 Mar 2024 23:45:32 +0000 Subject: [Koha-bugs] [Bug 33703] Entering dates should be more flexible accepting different entry formats In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33703 Lucas Gass changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #162728|0 |1 is obsolete| | --- Comment #56 from Lucas Gass --- Created attachment 163080 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163080&action=edit Bug 33703: Don't use Maskito when picking a range -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 12 00:45:34 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 11 Mar 2024 23:45:34 +0000 Subject: [Koha-bugs] [Bug 33703] Entering dates should be more flexible accepting different entry formats In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33703 Lucas Gass changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #162729|0 |1 is obsolete| | --- Comment #57 from Lucas Gass --- Created attachment 163081 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163081&action=edit Bug 33703: Add Maskito to dateaccessioned.pl -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 12 00:45:37 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 11 Mar 2024 23:45:37 +0000 Subject: [Koha-bugs] [Bug 33703] Entering dates should be more flexible accepting different entry formats In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33703 Lucas Gass changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #162730|0 |1 is obsolete| | --- Comment #58 from Lucas Gass --- Created attachment 163082 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163082&action=edit Bug 33703: Add Maskito support for OPAC -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 12 00:45:40 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 11 Mar 2024 23:45:40 +0000 Subject: [Koha-bugs] [Bug 33703] Entering dates should be more flexible accepting different entry formats In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33703 Lucas Gass changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #162731|0 |1 is obsolete| | --- Comment #59 from Lucas Gass --- Created attachment 163083 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163083&action=edit Bug 33703: Add Maskito to about.tt -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 12 00:46:28 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 11 Mar 2024 23:46:28 +0000 Subject: [Koha-bugs] [Bug 33703] Entering dates should be more flexible accepting different entry formats In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33703 --- Comment #60 from Lucas Gass --- Rebased for current master -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 12 00:55:40 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 11 Mar 2024 23:55:40 +0000 Subject: [Koha-bugs] [Bug 33259] Optionally set SameSite attribute of cookie to Strict In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33259 David Cook changed: What |Removed |Added ---------------------------------------------------------------------------- Status|In Discussion |Failed QA --- Comment #54 from David Cook --- Going to mark this as Failed QA in any case as it doesn't take into account the CGISESSID cookie created by the OIDC in Koha/REST/V1/OAuth/Client.pm. -- Also, as I feared, with SameSite of "Strict", OIDC SSO is broken. -- Interestingly, when Keycloak POSTs a 302 to Koha it doesn't work, but there is a scenario with Keycloak where a Strict cookie is still sent after a redirect. If I log into Keycloak first, and then I go to Koha and click "Log in with Keycloak", I'm redirected from Koha to Keycloak and redirected from Keycloak to Koha. In this situation where it's two GET 302s in a row, the Strict cookie is still sent, and I'm logged into Koha using Keycloak. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 12 01:17:15 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 12 Mar 2024 00:17:15 +0000 Subject: [Koha-bugs] [Bug 33259] Optionally set SameSite attribute of cookie to Strict In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33259 --- Comment #55 from David Cook --- (In reply to David Cook from comment #54) > Interestingly, when Keycloak POSTs a 302 to Koha it doesn't work, but there > is a scenario with Keycloak where a Strict cookie is still sent after a > redirect. > > If I log into Keycloak first, and then I go to Koha and click "Log in with > Keycloak", I'm redirected from Koha to Keycloak and redirected from Keycloak > to Koha. In this situation where it's two GET 302s in a row, the Strict > cookie is still sent, and I'm logged into Koha using Keycloak. I'm not describing this right. With Strict, it's failing because Keycloak is doing a GET to Koha and that's not allowed. With Lax, it's succeeding because it's allowed for Keycloak to do a GET to Koha. And I think in the scenario where it goes Koha -> Keycloak -> Koha will all 302s, I think the browser is considering that to be user-initiated from the Koha side, and that's why it's allowing it to send the cookie. Because we have a POST to Keycloak with the login, that's why it won't let us login with Keycloak when Strict is in use. I think that brings me back to anonymous CGISESSID cookies needing to be Lax, even if an authenticated CGISESSID cookie is Strict. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 12 01:28:17 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 12 Mar 2024 00:28:17 +0000 Subject: [Koha-bugs] [Bug 33259] Optionally set SameSite attribute of cookie to Strict In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33259 --- Comment #56 from David Cook --- Oh good. Chrome and Firefox appear to work differently. In Chrome, if you login to Keycloak first, and then do that Koha->Keycloak->Koha redirect you're fine. In Firefox, if you login to Keycloak first, and then do that Koha->Keycloak->Koha redirect, you still will get an error. Of course, you should only be clicking "Login with Keycloak" from an anonymous session, which takes me back to that thing about the anonymous session not being Strict even when authenticated cookies are Strict. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 12 01:39:16 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 12 Mar 2024 00:39:16 +0000 Subject: [Koha-bugs] [Bug 33259] Optionally set SameSite attribute of cookie to Strict In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33259 --- Comment #57 from David Cook --- I hate to say it now, but I think we should change tack, and just focus on the SameSiteSessionCookie being for the CGISESSID cookie and only for authenticated contexts. (Focusing only on the CGISESSID cookie is mostly just to help in terms of testability, although I think the best practice is to only set Strict for sensitive cookies.) That should provide security for authenticated Koha users while also allowing usability for things like SSO. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 12 01:42:50 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 12 Mar 2024 00:42:50 +0000 Subject: [Koha-bugs] [Bug 34478] Full CSRF protection In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=34478 --- Comment #184 from David Cook --- (In reply to David Cook from comment #183) > However, I have been thinking a bit about how to provide some protection to > stable branches. I think my abbreviated anti-CSRF plus bug 33259 (when it's ready) would be an OK compromise for stable branches. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 12 02:22:10 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 12 Mar 2024 01:22:10 +0000 Subject: [Koha-bugs] [Bug 34478] Full CSRF protection In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=34478 --- Comment #185 from David Cook --- (In reply to David Cook from comment #184) > (In reply to David Cook from comment #183) > > However, I have been thinking a bit about how to provide some protection to > > stable branches. > > I think my abbreviated anti-CSRF plus bug 33259 (when it's ready) would be > an OK compromise for stable branches. Although as I say that I'm finding more changes that need to be backported to really support this... heh... -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 12 04:59:13 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 12 Mar 2024 03:59:13 +0000 Subject: [Koha-bugs] [Bug 36169] Add guarantee to patron categories with type='Staff' In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36169 --- Comment #3 from Alex Buckley --- (In reply to Lucas Gass from comment #2) > Alex, I must not understand. What is the use case for STAFF adding a > guarantee? Hi Lucas, thanks for your question. We have a partner library where the librarians each have a Koha account belonging to the patron category 'Library staff' (this category has the type = 'staff' so the accounts cannot be so easily deleted). However, as their librarian have children registered at the library they would like to link their children's accounts to their 'Library staff' accounts. i.e. they do not want to have to manage two patron accounts: a 'Library staff' account and an 'Adult' account in order to add their children as guarantees. Does that help clarify the use case? -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 12 05:11:58 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 12 Mar 2024 04:11:58 +0000 Subject: [Koha-bugs] [Bug 27753] Automate resolution of return claim when checking in an item In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=27753 Laura Escamilla changed: What |Removed |Added ---------------------------------------------------------------------------- Status|ASSIGNED |Needs Signoff -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 12 05:12:01 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 12 Mar 2024 04:12:01 +0000 Subject: [Koha-bugs] [Bug 27753] Automate resolution of return claim when checking in an item In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=27753 --- Comment #12 from Laura Escamilla --- Created attachment 163084 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163084&action=edit Bug 27753: Added new system preferences for automatically resolving claims To test: 1. Configure Claims returned 1. Go to Administration > Authorized Values > LOST 2. Add a new authorized value with value:6 and description:Claims returned 3. Go to Administration > System Preferences 4. Set ClaimReturnedLostValue to 6 and save 2. Check out an item to a patron. 1. Mark the item as claim returned 2. Check the item in. 3. A message stating that the item has been claimed as returned pops up with an option to resolve. 4. Resolve the claim. 3. Check out the item to the patron again. 1. Mark the item as claim returned. 2. Check out the item to a new patron. Select “Yes, check out” 3. Go back to the previous patron. Notice that their claim was not resolved. 4. Apply the patch. 1. Updatedatabase 2. restart_all 3. Go to the system preferences and set the system preference ‘AutoClaimReturnStatusOnCheckin’ to ‘Returned by patron’ 4. Set ‘AutoClaimReturnStatusOnCheckout’ to ‘Found in library’ 5. Redo step 2 1. When checking the claim returned item in you will now see a message that says “The previously claimed returned item has been found, automatically resolving the associated claim.” 2. View the previous patron. Their claim has automatically been resolved with a status of ‘Returned by patron’ 6. Redo step 3 1. Upon checking the item out to another patron you will see a message that says “The previously claimed returned item has been found, automatically resolving the associated claim.” 2. View the previous patron. Their claim has automatically been resolved with a status of ‘Found in library’. 7. Sign off and have a wonderful day! -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 12 05:12:25 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 12 Mar 2024 04:12:25 +0000 Subject: [Koha-bugs] [Bug 27753] Automate resolution of return claim when checking in an item In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=27753 Laura Escamilla changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #163061|0 |1 is obsolete| | -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 12 05:17:33 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 12 Mar 2024 04:17:33 +0000 Subject: [Koha-bugs] [Bug 27753] Automate resolution of return claim when checking in an item In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=27753 --- Comment #13 from Laura Escamilla --- Created attachment 163085 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163085&action=edit Bug 27753: Adding patch for AutoClaimReturnStatusOnCheckout syspref -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 12 05:59:43 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 12 Mar 2024 04:59:43 +0000 Subject: [Koha-bugs] [Bug 15516] Allow to place a hold on first available item from a group of titles In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=15516 --- Comment #469 from David Cook --- Found a nasty bug in Koha::Holds->count_holds(). I'm going to need to review this code in-depth again... -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 12 06:19:50 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 12 Mar 2024 05:19:50 +0000 Subject: [Koha-bugs] [Bug 15516] Allow to place a hold on first available item from a group of titles In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=15516 --- Comment #470 from David Cook --- Comment on attachment 162078 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=162078 Bug 15516: Relevant controller changes and tests Review of attachment 162078: --> (https://bugs.koha-community.org/bugzilla3/page.cgi?id=splinter.html&bug=15516&attachment=162078) ----------------------------------------------------------------- ::: Koha/Holds.pm @@ +213,5 @@ > + > +sub count_holds { > + my ( $self, $search_params ) = @_; > + > + $search_params = { These $search_params lines redefine the variable instead of updating the variable. This means that you end up selecting all holds and not just the holds for particular criteria (like an individual patron). -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 12 06:20:07 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 12 Mar 2024 05:20:07 +0000 Subject: [Koha-bugs] [Bug 15516] Allow to place a hold on first available item from a group of titles In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=15516 David Cook changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Patch doesn't apply |Failed QA -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 12 06:55:50 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 12 Mar 2024 05:55:50 +0000 Subject: [Koha-bugs] [Bug 36173] Cancelling order confirmation view does not show basket's info In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36173 David Nind changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Needs Signoff |Signed Off -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 12 06:55:52 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 12 Mar 2024 05:55:52 +0000 Subject: [Koha-bugs] [Bug 36173] Cancelling order confirmation view does not show basket's info In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36173 David Nind changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #162501|0 |1 is obsolete| | --- Comment #3 from David Nind --- Created attachment 163086 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163086&action=edit Bug 36173: Display basket info when cancelling an order The basketno is missing from the 2 links in acqui/parcel.tt Better to retrieve the basketno from the order in the controller. Test plan: Create an order, receive it On the parcel view notice that the "Cancel order" link leads to a confirmation page that does not contain the info of the basket. It's fixed with this patch applied. Signed-off-by: David Nind -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 12 06:56:45 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 12 Mar 2024 05:56:45 +0000 Subject: [Koha-bugs] [Bug 36173] Cancelling order confirmation view does not show basket's info In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36173 David Nind changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |david at davidnind.com --- Comment #4 from David Nind --- Testing notes (using KTD): 1. Breadcrumb links when you cancel an order are corrected with the patch: . Before - no text or link to My Vendor and no link for Basket number: Acquisitions > > Basket () for > Cancel order . After - now correctly has text and link to the vendor and for the Basket: Acquisitions > My Vendor > Basket TEST1 (2) for My Vendor > Cancel order Other notes =========== Is there another issue here as well, with actually receiving an order? When I go to receive an order (before the patch is applied), I get an error - not sure whether this is something to do with my KTD setup, or something else: 1. Added one item to a basket 2. Closed the basket 4. Went to receive order for an order 5. Update quantity to receive - 1 6. Error in pop up window: "Order 1: An error occurred while saving" 7. Web developer tools error: XHRPOST http://127.0.0.1:8081/cgi-bin/koha/acqui/finishreceive.pl [HTTP/1.1 403 Forbidden 103ms] POST http://127.0.0.1:8081/cgi-bin/koha/acqui/finishreceive.pl Status 403 Forbidden Version HTTP/1.1 Transferred 29.46 kB (29 kB size) Referrer Policy strict-origin-when-cross-origin Request Priority Highest DNS Resolution System Response Headers: Cache-Control no-cache Connection Keep-Alive Content-Length 28999 Content-Script-Type text/javascript Content-Style-Type text/css Content-Type text/html; charset=UTF-8 Date Tue, 12 Mar 2024 04:55:06 GMT Keep-Alive timeout=5, max=100 Pragma no-cache Server Apache/2.4.56 (Debian) Set-Cookie CGISESSID=0edfe61661acb72d2e9f2c872340a966; path=/; HttpOnly; SameSite=Lax Vary User-Agent X-Frame-Options SAMEORIGIN Request Headers: Accept */* Accept-Encoding gzip, deflate, br Accept-Language en-US,en;q=0.5 Connection keep-alive Content-Length 260 Content-Type application/x-www-form-urlencoded; charset=UTF-8 Cookie CGISESSID=0edfe61661acb72d2e9f2c872340a966; searchToOrder=1/1 Host 127.0.0.1:8081 Origin http://127.0.0.1:8081 Referer http://127.0.0.1:8081/cgi-bin/koha/acqui/orderreceive.pl?multiple_orders=1&invoiceid=1 Sec-Fetch-Dest empty Sec-Fetch-Mode cors Sec-Fetch-Site same-origin User-Agent Mozilla/5.0 (X11; Linux x86_64; rv:124.0) Gecko/20100101 Firefox/124.0 X-Requested-With XMLHttpRequest -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 12 06:59:12 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 12 Mar 2024 05:59:12 +0000 Subject: [Koha-bugs] [Bug 36173] Cancelling order confirmation view does not show basket's info In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36173 David Nind changed: What |Removed |Added ---------------------------------------------------------------------------- Text to go in the| |This fixes the breadcrumb release notes| |links on the confirmation | |page when cancelling an | |order (from the receiving | |screen). -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 12 07:04:38 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 12 Mar 2024 06:04:38 +0000 Subject: [Koha-bugs] [Bug 15516] Allow to place a hold on first available item from a group of titles In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=15516 --- Comment #471 from David Cook --- As I've noted before, trying to count multiple hold group members as part of the same hold has some fundamental problems. We'd need to pass the hold group to CanBookBeReserved/CanItemBeReserved to handle this better... It's tempting to spin out a new report just for refactoring those functions to take $args instead. I want to make an API endpoint at some point too for whether or not a reserve can be placed. I think National Library of Finland have done work on this, although it's more discovery interface specific so might not quite meet what I'd want it for... -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 12 07:08:14 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 12 Mar 2024 06:08:14 +0000 Subject: [Koha-bugs] [Bug 36101] Deleting an item removes the itemnumber from old_reserves when it should not In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36101 Emmi Takkinen changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |emmi.takkinen at koha-suomi.fi -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 12 09:10:58 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 12 Mar 2024 08:10:58 +0000 Subject: [Koha-bugs] [Bug 34478] Full CSRF protection In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=34478 --- Comment #186 from Fridolin Somers --- OK thanks for your comments. For the moment no backport -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 12 09:11:54 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 12 Mar 2024 08:11:54 +0000 Subject: [Koha-bugs] [Bug 35955] New CSRF token generated everytime we need one In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35955 --- Comment #14 from Fridolin Somers --- OK thanks, will do -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 12 09:14:07 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 12 Mar 2024 08:14:07 +0000 Subject: [Koha-bugs] [Bug 35532] Use of calendar for date range in bookings is not clear In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35532 --- Comment #18 from Fridolin Somers --- (In reply to Katrin Fischer from comment #17) > (In reply to Fridolin Somers from comment #16) > > Depends on Bug 35426 not in 23.11.x > > Maye worth reconsidering - a lot of us didn't understand this new type of > date selector and this improves things quite a bit. If needed for 23.11.x please provide new patches -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 12 10:19:19 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 12 Mar 2024 09:19:19 +0000 Subject: [Koha-bugs] [Bug 36297] New: Avoid using var named "t" in templates Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36297 Bug ID: 36297 Summary: Avoid using var named "t" in templates Change sponsored?: --- Product: Koha Version: master Hardware: All OS: All Status: NEW Severity: normal Priority: P5 - low Component: Templates Assignee: oleonard at myacpl.org Reporter: fridolin.somers at biblibre.com QA Contact: testopia at bugs.koha-community.org Issue in templates discovered in Bug 36158 Avoid using var named "t" in templates (in FOREACH) because of conflict with t() for translations. > git grep 'FOREACH t IN' origin/master:koha-tmpl/intranet-tmpl/prog/en/modules/admin/auth_subfields_structure.tt: [%- FOREACH t IN [ '0', '1', '2', '3', '4', '5', '6', '7', '8', '9', '10'] -%] origin/master:koha-tmpl/intranet-tmpl/prog/en/modules/admin/marc_subfields_structure.tt: [%- FOREACH t IN [ '0', '1', '2', '3', '4', '5', '6', '7', '8', '9'] -%] origin/master:koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/additem.tt: [% FOREACH t IN item_templates.owned %] origin/master:koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/additem.tt: [% FOREACH t IN item_templates.shared %] origin/master:koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/additem.tt: [% FOREACH t IN item_templates.owned %] origin/master:koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/additem.tt: [% FOREACH t IN item_templates.shared %] origin/master:koha-tmpl/intranet-tmpl/prog/en/modules/clubs/clubs.tt: [% FOREACH t IN club_templates %] origin/master:koha-tmpl/intranet-tmpl/prog/en/modules/clubs/clubs.tt: [% FOREACH t IN club_templates %] origin/master:koha-tmpl/intranet-tmpl/prog/en/modules/course_reserves/course.tt: [% FOREACH t IN terms %] -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 12 10:19:25 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 12 Mar 2024 09:19:25 +0000 Subject: [Koha-bugs] [Bug 36297] Avoid using var named "t" in templates In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36297 Fridolin Somers changed: What |Removed |Added ---------------------------------------------------------------------------- Depends on| |36158 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36158 [Bug 36158] Text on the "Show SQL code" button at guided_reports.pl breaks if report notice templates exist -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 12 10:19:25 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 12 Mar 2024 09:19:25 +0000 Subject: [Koha-bugs] [Bug 36158] Text on the "Show SQL code" button at guided_reports.pl breaks if report notice templates exist In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36158 Fridolin Somers changed: What |Removed |Added ---------------------------------------------------------------------------- Blocks| |36297 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36297 [Bug 36297] Avoid using var named "t" in templates -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 12 10:20:15 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 12 Mar 2024 09:20:15 +0000 Subject: [Koha-bugs] [Bug 36158] Text on the "Show SQL code" button at guided_reports.pl breaks if report notice templates exist In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36158 --- Comment #10 from Fridolin Somers --- Created bug 36297 -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 12 10:40:43 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 12 Mar 2024 09:40:43 +0000 Subject: [Koha-bugs] [Bug 36101] Deleting an item removes the itemnumber from old_reserves when it should not In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36101 Jonathan Druart changed: What |Removed |Added ---------------------------------------------------------------------------- See Also| |https://bugs.koha-community | |.org/bugzilla3/show_bug.cgi | |?id=25260 CC| |jonathan.druart at gmail.com -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Tue Mar 12 10:40:43 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 12 Mar 2024 09:40:43 +0000 Subject: [Koha-bugs] [Bug 25260] Merge 'reserves' and 'old_reserves' into a new 'holds' table In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=25260 Jonathan Druart changed: What |Removed |Added ---------------------------------------------------------------------------- See Also| |https://bugs.koha-community | |.org/bugzilla3/show_bug.cgi | |?id=36101 -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 12 10:52:33 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 12 Mar 2024 09:52:33 +0000 Subject: [Koha-bugs] [Bug 36012] ERM/Agreements_spec.ts is failing if run too slow (?) In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36012 Jonathan Druart changed: What |Removed |Added ---------------------------------------------------------------------------- Resolution|FIXED |--- Status|RESOLVED |REOPENED --- Comment #14 from Jonathan Druart --- Still failing (Koha_Master/2809) 17:04:34 koha_1 | References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36012 Jonathan Druart changed: What |Removed |Added ---------------------------------------------------------------------------- Status|REOPENED |NEW -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 12 10:55:32 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 12 Mar 2024 09:55:32 +0000 Subject: [Koha-bugs] [Bug 36101] Deleting an item removes the itemnumber from old_reserves when it should not In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36101 Lari Strand changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |Needs Signoff -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 12 10:55:35 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 12 Mar 2024 09:55:35 +0000 Subject: [Koha-bugs] [Bug 36101] Deleting an item removes the itemnumber from old_reserves when it should not In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36101 --- Comment #1 from Lari Strand --- Created attachment 163087 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163087&action=edit Bug 36101: Drop constraint to items.itemnumber from old_reserves-table This patch removes the constraint from old_reserves table to the items table so a deleted item's itemnumber will be preserved in the old_reserves table. To test: 1. Apply patch 2. run updatedatabase.pl 3. Check constraint old_reserves_ibfk_3 has been dropped -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Tue Mar 12 11:05:04 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 12 Mar 2024 10:05:04 +0000 Subject: [Koha-bugs] [Bug 36012] ERM/Agreements_spec.ts is failing if run too slow (?) In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36012 --- Comment #15 from Jonathan Druart --- Created attachment 163088 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163088&action=edit Bug 36012: Extend cypress's requestTimeout value default to 5000 but tests are failing because of slow Jenkins's nodes. We could try and extend to 10000 (10s) and see if it gets better. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 12 11:05:36 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 12 Mar 2024 10:05:36 +0000 Subject: [Koha-bugs] [Bug 36012] ERM/Agreements_spec.ts is failing if run too slow (?) In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36012 --- Comment #16 from Jonathan Druart --- (In reply to Jonathan Druart from comment #15) > Created attachment 163088 [details] [review] > Bug 36012: Extend cypress's requestTimeout value > > default to 5000 but tests are failing because of slow Jenkins's nodes. > We could try and extend to 10000 (10s) and see if it gets better. Matt, do you agree with that? -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 12 11:10:58 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 12 Mar 2024 10:10:58 +0000 Subject: [Koha-bugs] [Bug 36298] New: In patrons search road type authorized value code displayed in patron address Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36298 Bug ID: 36298 Summary: In patrons search road type authorized value code displayed in patron address Change sponsored?: --- Product: Koha Version: master Hardware: All OS: All Status: NEW Severity: normal Priority: P5 - low Component: Patrons Assignee: koha-bugs at lists.koha-community.org Reporter: fridolin.somers at biblibre.com QA Contact: testopia at bugs.koha-community.org CC: gmcharlt at gmail.com, kyle.m.hall at gmail.com In new patrons search via API, the road type code is displayed in patron address instead of authorized value description. -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Tue Mar 12 11:11:06 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 12 Mar 2024 10:11:06 +0000 Subject: [Koha-bugs] [Bug 36298] In patrons search road type authorized value code displayed in patron address In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36298 Fridolin Somers changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |ASSIGNED Assignee|koha-bugs at lists.koha-commun |fridolin.somers at biblibre.co |ity.org |m -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Tue Mar 12 11:24:25 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 12 Mar 2024 10:24:25 +0000 Subject: [Koha-bugs] [Bug 36077] Create separate cookie options for the staff interface In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36077 Mirjam Vantieghem changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |mirjam.vantieghem at etf.edu --- Comment #2 from Mirjam Vantieghem --- +1 -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Tue Mar 12 11:30:23 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 12 Mar 2024 10:30:23 +0000 Subject: [Koha-bugs] [Bug 36298] In patrons search road type authorized value code displayed in patron address In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36298 Fridolin Somers changed: What |Removed |Added ---------------------------------------------------------------------------- Status|ASSIGNED |Needs Signoff Patch complexity|--- |Trivial patch -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 12 11:30:25 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 12 Mar 2024 10:30:25 +0000 Subject: [Koha-bugs] [Bug 36298] In patrons search road type authorized value code displayed in patron address In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36298 --- Comment #1 from Fridolin Somers --- Created attachment 163089 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163089&action=edit Bug 36298: In patrons search fix road type with authorized value In new patrons search via API, the road type code is displayed in patron address instead of authorized value description. Also road type is missing a space separator in DE and FR format. Test plan : 1) Create two entries in authorized value category "ROADTYPE" : R1 "Road" R2 "Street" 2) Edit a patron (ie Delgado, Floyd) to set road type to "Road" 3) Perform a search on patrons (click on letter D) 4) Check you see in address "Road" and not "R1" 5) Edit authorized value category "ROADTYPE" to delete entry "R1" 6) Perform a search on patrons (click on letter D) 7) Check you see in address "R1" -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 12 11:32:49 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 12 Mar 2024 10:32:49 +0000 Subject: [Koha-bugs] [Bug 36077] Create separate cookie options for the staff interface In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36077 --- Comment #3 from Mirjam Vantieghem --- Not sure if this belongs here or in a separate bug: When the CookieConsent system preference is set to require, the CookieConsent also comes in the pop-up window of the Z39.50/SRU search from the cataloguing module on the Staff client, even after confirming consent in the staff client. That seems unnecessary, unless there are other cookies in the Z39.50/SRU pop-up window. -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 12 11:34:01 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 12 Mar 2024 10:34:01 +0000 Subject: [Koha-bugs] [Bug 36012] ERM/Agreements_spec.ts is failing if run too slow (?) In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36012 --- Comment #17 from Matt Blenkinsop --- Yes I think thats the best course of action now that adding the cy.wait hasn't fixed it -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 12 11:41:04 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 12 Mar 2024 10:41:04 +0000 Subject: [Koha-bugs] [Bug 35357] Item not removed from holds queue when checked out to a different patron In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35357 Fridolin Somers changed: What |Removed |Added ---------------------------------------------------------------------------- Version(s)|24.05.00 |24.05.00,23.11.04 released in| | Status|Pushed to master |Pushed to stable --- Comment #26 from Fridolin Somers --- Pushed to 23.11.x for 23.11.04 -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 12 11:56:58 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 12 Mar 2024 10:56:58 +0000 Subject: [Koha-bugs] [Bug 35955] New CSRF token generated everytime we need one In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35955 Fridolin Somers changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Pushed to master |Pushed to stable Version(s)|24.05.00 |24.05.00,23.11.04 released in| | --- Comment #15 from Fridolin Somers --- Pushed to 23.11.x for 23.11.04 -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 12 12:25:17 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 12 Mar 2024 11:25:17 +0000 Subject: [Koha-bugs] [Bug 34755] Error authenticating to external OpenID Connect (OIDC) identity provider : wrong_csrf_token In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=34755 Fridolin Somers changed: What |Removed |Added ---------------------------------------------------------------------------- Version(s)| |23.11.04 released in| | Status|Passed QA |Pushed to stable CC| |fridolin.somers at biblibre.co | |m --- Comment #39 from Fridolin Somers --- Pushed to 23.11.x for 23.11.04 -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 12 12:59:41 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 12 Mar 2024 11:59:41 +0000 Subject: [Koha-bugs] [Bug 35959] Inconsistent hierarchy during C3 merge of class 'Koha::AuthorisedValue' (and a few other modules) In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35959 --- Comment #27 from Marcel de Rooy --- (In reply to Tomás Cohen Arazi from comment #26) > I mean... > > This is clearly a Perl bug :-P > > It is a bad sign that it hasn't been reported+solved already upstream. Life is hard :) Please QA this one. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 12 13:38:43 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 12 Mar 2024 12:38:43 +0000 Subject: [Koha-bugs] [Bug 33259] Optionally set SameSite attribute of cookie to Strict In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33259 Matthias Le Gac changed: What |Removed |Added ---------------------------------------------------------------------------- CC|matthias.le-gac at inlibro.com | -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 12 13:41:05 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 12 Mar 2024 12:41:05 +0000 Subject: [Koha-bugs] [Bug 27753] Automate resolution of return claim when checking in an item In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=27753 ByWater Sandboxes changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #163085|0 |1 is obsolete| | --- Comment #14 from ByWater Sandboxes --- Created attachment 163090 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163090&action=edit Bug 27753: Adding patch for AutoClaimReturnStatusOnCheckout syspref Signed-off-by: Michelle -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 12 13:41:35 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 12 Mar 2024 12:41:35 +0000 Subject: [Koha-bugs] [Bug 27753] Automate resolution of return claim when checking in an item In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=27753 Michelle Spinney changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Needs Signoff |Signed Off -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 12 13:53:14 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 12 Mar 2024 12:53:14 +0000 Subject: [Koha-bugs] [Bug 35959] Inconsistent hierarchy during C3 merge of class 'Koha::AuthorisedValue' (and a few other modules) In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35959 --- Comment #28 from Jonathan Druart --- What do we want here? Hide the warnings or fix the original cause? IMO we are only hidding warnings and I don't understand how it can be useful to hide them. If we want to hide them from the QA script it can be done there. Note: Inconsistent hierarchy during C3 merge of class 'Koha::Account::Credit' -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 12 14:05:53 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 12 Mar 2024 13:05:53 +0000 Subject: [Koha-bugs] [Bug 35959] Inconsistent hierarchy during C3 merge of class 'Koha::AuthorisedValue' (and a few other modules) In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35959 --- Comment #29 from Marcel de Rooy --- (In reply to Jonathan Druart from comment #28) > What do we want here? Hide the warnings or fix the original cause? This more or less fixes a perl bug like Tomas stated. Read fix, not hide. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 12 14:28:56 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 12 Mar 2024 13:28:56 +0000 Subject: [Koha-bugs] [Bug 36298] In patrons search road type authorized value code displayed in patron address In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36298 David Nind changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Needs Signoff |Signed Off -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 12 14:28:59 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 12 Mar 2024 13:28:59 +0000 Subject: [Koha-bugs] [Bug 36298] In patrons search road type authorized value code displayed in patron address In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36298 David Nind changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #163089|0 |1 is obsolete| | --- Comment #2 from David Nind --- Created attachment 163091 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163091&action=edit Bug 36298: In patrons search fix road type with authorized value In new patrons search via API, the road type code is displayed in patron address instead of authorized value description. Also road type is missing a space separator in DE and FR format. Test plan : 1) Create two entries in authorized value category "ROADTYPE" : R1 "Road" R2 "Street" 2) Edit a patron (ie Delgado, Floyd) to set road type to "Road" 3) Perform a search on patrons (click on letter D) 4) Check you see in address "Road" and not "R1" 5) Edit authorized value category "ROADTYPE" to delete entry "R1" 6) Perform a search on patrons (click on letter D) 7) Check you see in address "R1" Signed-off-by: David Nind -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 12 15:33:16 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 12 Mar 2024 14:33:16 +0000 Subject: [Koha-bugs] [Bug 33446] Revert transit status should have the option to cancel the item transfer as well In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33446 Juliet Heltibridle changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |jheltibridle at rcplib.org --- Comment #1 from Juliet Heltibridle --- Something like this would be very useful for our library as well. We use a SIP connection to check in our materials, and we have HoldsNeedProcessingSIP set to Fulfill so that items that are checked in by the Sort Assistant will automatically fill and print the slip. When we have problems with our courier system, sometimes we have to wait a few weeks to fill holds from other libraries. We can revert the status of the transfer on these holds, but instead of showing as available and on the shelf at our library, it displays the message that the transit is pending. We have to cancel the hold and place it again, or go through the steps of checking the item in at the other library, ignoring the hold, and then checking it in again at our library, ignoring the hold again. Ideally, when a transit is reverted, checking it in again at the owning library but ignoring the hold would update the status to available without the pending transfer. -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 12 15:40:13 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 12 Mar 2024 14:40:13 +0000 Subject: [Koha-bugs] [Bug 26573] Limit patron attribute types to more than one patron category In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=26573 Cheryl changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |clackman at fargolibrary.org -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 12 15:53:33 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 12 Mar 2024 14:53:33 +0000 Subject: [Koha-bugs] [Bug 36299] New: Highlighting of Logged-In Library Facets not working Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36299 Bug ID: 36299 Summary: Highlighting of Logged-In Library Facets not working Change sponsored?: --- Product: Koha Version: master Hardware: All OS: All Status: NEW Severity: enhancement Priority: P5 - low Component: Templates Assignee: oleonard at myacpl.org Reporter: kelly at bywatersolutions.com QA Contact: testopia at bugs.koha-community.org Bug 34940 introduces the highlighting of the logged-in library within the facets. This does not seem to be working in 23.11.01 or in master. Changing the system preference, DisplayLibraryFacets, to home, holding or both does not change the fact that this is not highlighting the library. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 12 15:55:57 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 12 Mar 2024 14:55:57 +0000 Subject: [Koha-bugs] [Bug 36120] Add pickup locations to Bookings In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36120 Lisette Scheer changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Needs Signoff |Signed Off --- Comment #26 from Lisette Scheer --- Signed off, worked great! -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 12 16:19:13 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 12 Mar 2024 15:19:13 +0000 Subject: [Koha-bugs] [Bug 35138] Elastic search - add new facets In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35138 Michaela Sieber changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |clemens.tubach at kit.edu, | |jonathan.druart at gmail.com, | |lukasz.koszyk at kit.edu Change sponsored?|--- |Seeking developer -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 12 16:25:55 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 12 Mar 2024 15:25:55 +0000 Subject: [Koha-bugs] [Bug 15565] Place multiple item-level holds at once for the same record In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=15565 Lisette Scheer changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Needs Signoff |Signed Off -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 12 16:26:01 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 12 Mar 2024 15:26:01 +0000 Subject: [Koha-bugs] [Bug 15565] Place multiple item-level holds at once for the same record In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=15565 Lisette Scheer changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #163052|0 |1 is obsolete| | --- Comment #294 from Lisette Scheer --- Created attachment 163092 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163092&action=edit Attachment to Bug 15565 - Place multiple item-level holds at once for the same record Bug 15565: Place multiple holds on one record on staff interface Signed-off-by: Lisette Scheer -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 12 16:27:40 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 12 Mar 2024 15:27:40 +0000 Subject: [Koha-bugs] [Bug 15565] Place multiple item-level holds at once for the same record In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=15565 --- Comment #295 from Lisette Scheer --- Created attachment 163093 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163093&action=edit Bug 15565: Place multiple holds on one record on staff interface Signed-off-by: Lisette Scheer -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 12 16:28:12 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 12 Mar 2024 15:28:12 +0000 Subject: [Koha-bugs] [Bug 15565] Place multiple item-level holds at once for the same record In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=15565 Lisette Scheer changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #163092|0 |1 is obsolete| | -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 12 16:28:55 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 12 Mar 2024 15:28:55 +0000 Subject: [Koha-bugs] [Bug 15565] Place multiple item-level holds at once for the same record In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=15565 --- Comment #296 from Lisette Scheer --- Worked great in all cases. Thanks David! -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 12 16:31:39 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 12 Mar 2024 15:31:39 +0000 Subject: [Koha-bugs] [Bug 35357] Item not removed from holds queue when checked out to a different patron In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35357 --- Comment #27 from Kyle M Hall --- > (In reply to Katrin Fischer from comment #23) > > Hi Kyle, can you explain a bit more about those extra queries if you can? > > I'd like to understand the issue better and learn. > > IIUC, we don't have the ORM objects on hand so we have to do a find first. > Then do a delete on the object. So 4 queries. (maybe Kyle had something else > in mind) This exactly what I meant! -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 12 16:34:53 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 12 Mar 2024 15:34:53 +0000 Subject: [Koha-bugs] [Bug 36195] CSRF - testing reports In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36195 Katrin Fischer changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #162668|0 |1 is obsolete| | -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Tue Mar 12 16:34:57 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 12 Mar 2024 15:34:57 +0000 Subject: [Koha-bugs] [Bug 36195] CSRF - testing reports In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36195 Katrin Fischer changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #162960|0 |1 is obsolete| | -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Tue Mar 12 16:35:03 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 12 Mar 2024 15:35:03 +0000 Subject: [Koha-bugs] [Bug 36195] CSRF - testing reports In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36195 Katrin Fischer changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #163050|0 |1 is obsolete| | --- Comment #8 from Katrin Fischer --- Comment on attachment 163050 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163050 Bug 36195: Replace POST in itemsearch.tt with GET >From 28f445587ee8e7f70852367f2c9e37ae2c4ebcea Mon Sep 17 00:00:00 2001 >From: Brendan Lawlor >Date: Mon, 11 Mar 2024 17:32:08 +0000 >Subject: [PATCH] Bug 36195: Replace POST in itemsearch.tt with GET > >We retrieve a list of records for DT, it does not need to be a POST >request. > >Test plan: > >1. Try an item search >2. The page loads but pops an alert that says "403: Forbidden" and table stays empty >3. Apply patch >4. Try an item search again and the table loads results >--- > koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/itemsearch.tt | 1 - > 1 file changed, 1 deletion(-) > >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/itemsearch.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/itemsearch.tt >index b3a89e508c..db703115b3 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/itemsearch.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/itemsearch.tt >@@ -478,7 +478,6 @@ > "processing": true, > "ajax": { > url: '/cgi-bin/koha/catalogue/itemsearch.pl', >- type: 'POST', > data: function ( d ) { > for (i in params) { > d[params[i].name] = params[i].value; >-- >2.30.2 -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 12 16:36:22 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 12 Mar 2024 15:36:22 +0000 Subject: [Koha-bugs] [Bug 36195] CSRF - testing reports In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36195 --- Comment #9 from Katrin Fischer --- Last 3 patches pushed to master and obsoleted here. Thanks! -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 12 16:37:42 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 12 Mar 2024 15:37:42 +0000 Subject: [Koha-bugs] [Bug 35989] Searching Geographic authorities generates error In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35989 Thomas Sycko changed: What |Removed |Added ---------------------------------------------------------------------------- Severity|normal |major Priority|P3 |P2 -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 12 16:42:36 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 12 Mar 2024 15:42:36 +0000 Subject: [Koha-bugs] [Bug 36299] Highlighting of Logged-In Library Facets not working In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36299 Kelly McElligott changed: What |Removed |Added ---------------------------------------------------------------------------- Severity|enhancement |normal -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 12 16:47:35 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 12 Mar 2024 15:47:35 +0000 Subject: [Koha-bugs] [Bug 36300] New: Add datetime as runtime parameter option in reports Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36300 Bug ID: 36300 Summary: Add datetime as runtime parameter option in reports Change sponsored?: --- Product: Koha Version: master Hardware: All OS: All Status: NEW Severity: enhancement Priority: P5 - low Component: Reports Assignee: koha-bugs at lists.koha-community.org Reporter: andrewfh at dubcolib.org QA Contact: testopia at bugs.koha-community.org CC: barbara.johnson at bedfordtx.gov The runtime parameter modal includes an option for date, but does not include an option for datetime. It'd be helpful to add a method to request a datetime and make the datepicker widget include a time. -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 12 16:57:21 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 12 Mar 2024 15:57:21 +0000 Subject: [Koha-bugs] [Bug 7972] GUI for Crons In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=7972 Michael Adamyk changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |madamyk at ckls.org -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 12 16:58:22 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 12 Mar 2024 15:58:22 +0000 Subject: [Koha-bugs] [Bug 36301] New: Patron search is searching on attribute types even if a specific non attribute type search field is selected Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36301 Bug ID: 36301 Summary: Patron search is searching on attribute types even if a specific non attribute type search field is selected Change sponsored?: --- Product: Koha Version: master Hardware: All OS: All Status: NEW Severity: minor Priority: P5 - low Component: Patrons Assignee: koha-bugs at lists.koha-community.org Reporter: pedro.amorim at ptfs-europe.com QA Contact: testopia at bugs.koha-community.org CC: gmcharlt at gmail.com, jake.deery at ptfs-europe.com, kyle.m.hall at gmail.com Depends on: 34517 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=34517 [Bug 34517] Add option to search patron attribute in standard search -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 12 16:58:22 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 12 Mar 2024 15:58:22 +0000 Subject: [Koha-bugs] [Bug 34517] Add option to search patron attribute in standard search In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=34517 Pedro Amorim changed: What |Removed |Added ---------------------------------------------------------------------------- Blocks| |36301 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36301 [Bug 36301] Patron search is searching on attribute types even if a specific non attribute type search field is selected -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 12 17:17:11 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 12 Mar 2024 16:17:11 +0000 Subject: [Koha-bugs] [Bug 36232] Error fixing OAI-PMH:AutoUpdateSetsEmbedItemData syspref name on the DB In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36232 Biblibre Sandboxes changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #163063|0 |1 is obsolete| | --- Comment #6 from Biblibre Sandboxes --- Created attachment 163094 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163094&action=edit Bug 36232: Fix error in DBRev dealing with OAI-PMH:AutoUpdateSetsEmbedItemData typo This patch fixes the case of the wrong syspref variable co-existing with the good one. OAI-PMH:AutoUpdateSetsEmbedItemData is the only case, as the rest of the mispelled ones are just case fixes, which would not trigger the same situation as the `systempreferences` table collation is case-insentitive. To test: 1. Run: $ ktd --shell k$ koha-mysql kohadev > INSERT INTO systempreferences VALUES ('OAI-PMH:AutoUpdateSetEmbedItemData',0,'','','YesNo'); > UPDATE systempreferences SET variable = 'IllCheckAvailability' WHERE variable = "ILLCheckAvailability"; > INSERT INTO systempreferences VALUES ('IllCheckAvailability',0,'','','YesNo'); => FAIL: The last command fails because the good and wrong values cannot coexist 2. Set the version to a prior one: > UPDATE systempreferences SET value="23.1200004" WHERE variable like 'version'; 3. Run: k$ updatedatabase => FAIL: You get this error: ERROR: {UNKNOWN}: DBI Exception: DBD::mysql::db do failed: Duplicate entry 'OAI-PMH:AutoUpdateSetsEmbedItemData' for key 'systempreferences.PRIMARY' at ... 4. Apply this patch 5. Repeat 3 => SUCCESS: It works! 6. Sign off :-D Signed-off-by: Tomas Cohen Arazi Signed-off-by: Victor Grousset/tuxayo Signed-off-by: David Nind Signed-off-by: Mohd Hafiz Yusoff -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 12 17:20:56 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 12 Mar 2024 16:20:56 +0000 Subject: [Koha-bugs] [Bug 31572] E-mail and SMS verification In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31572 Rebecca Coert changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |rcoert at arlingtonva.us -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 12 17:21:12 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 12 Mar 2024 16:21:12 +0000 Subject: [Koha-bugs] [Bug 35796] Patron password expiration date lost when patron edited by superlibrarian In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35796 Rebecca Coert changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |rcoert at arlingtonva.us -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 12 17:21:37 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 12 Mar 2024 16:21:37 +0000 Subject: [Koha-bugs] [Bug 36193] CSRF - Code review missed In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36193 Katrin Fischer changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |Needs Signoff -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 12 17:21:44 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 12 Mar 2024 16:21:44 +0000 Subject: [Koha-bugs] [Bug 36193] CSRF - Code review missed In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36193 Katrin Fischer changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Needs Signoff |Signed Off -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Tue Mar 12 17:21:48 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 12 Mar 2024 16:21:48 +0000 Subject: [Koha-bugs] [Bug 33268] Overlay rules don't work correctly when source is set to * In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33268 Miranda Nero changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |mnero at oslri.net -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 12 17:21:49 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 12 Mar 2024 16:21:49 +0000 Subject: [Koha-bugs] [Bug 36193] CSRF - Code review missed In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36193 Katrin Fischer changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Signed Off |Passed QA -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Tue Mar 12 17:22:23 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 12 Mar 2024 16:22:23 +0000 Subject: [Koha-bugs] [Bug 36193] CSRF - Code review missed In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36193 --- Comment #24 from Katrin Fischer --- Pushed all these to master. Handling is a little big finicky. I'd prefer separate bugs from now on if that's OK. -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 12 17:33:34 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 12 Mar 2024 16:33:34 +0000 Subject: [Koha-bugs] [Bug 36301] Patron search is searching on attribute types even if a specific non attribute type search field is selected In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36301 Martin Renvoize changed: What |Removed |Added ---------------------------------------------------------------------------- See Also| |https://bugs.koha-community | |.org/bugzilla3/show_bug.cgi | |?id=34517 CC| |martin.renvoize at ptfs-europe | |.com -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Tue Mar 12 17:33:34 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 12 Mar 2024 16:33:34 +0000 Subject: [Koha-bugs] [Bug 34517] Add option to search patron attribute in standard search In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=34517 Martin Renvoize changed: What |Removed |Added ---------------------------------------------------------------------------- See Also| |https://bugs.koha-community | |.org/bugzilla3/show_bug.cgi | |?id=36301 -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 12 17:33:42 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 12 Mar 2024 16:33:42 +0000 Subject: [Koha-bugs] [Bug 36232] Error fixing OAI-PMH:AutoUpdateSetsEmbedItemData syspref name on the DB In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36232 Mohd Hafiz Yusoff changed: What |Removed |Added ---------------------------------------------------------------------------- Assignee|tomascohen at gmail.com |mhby87 at gmail.com --- Comment #7 from Mohd Hafiz Yusoff --- Created attachment 163095 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163095&action=edit Bug 36232: Fix error in DBRev dealing with OAI-PMH:AutoUpdateSetsEmbedItemData typo -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 12 17:38:31 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 12 Mar 2024 16:38:31 +0000 Subject: [Koha-bugs] [Bug 36232] Error fixing OAI-PMH:AutoUpdateSetsEmbedItemData syspref name on the DB In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36232 Mohd Hafiz Yusoff changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #163095|0 |1 is obsolete| | -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 12 17:39:11 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 12 Mar 2024 16:39:11 +0000 Subject: [Koha-bugs] [Bug 35473] Core bookings and room reservations plugin tables clash In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35473 --- Comment #20 from Martin Renvoize --- Do we have a proposed path forward here.. as it stands Koha just breaks silently at upgrade if room reservations was installed.. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 12 17:40:44 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 12 Mar 2024 16:40:44 +0000 Subject: [Koha-bugs] [Bug 36232] Error fixing OAI-PMH:AutoUpdateSetsEmbedItemData syspref name on the DB In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36232 Mohd Hafiz Yusoff changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #163095|1 |0 is obsolete| | --- Comment #8 from Mohd Hafiz Yusoff --- Comment on attachment 163095 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163095 Bug 36232: Fix error in DBRev dealing with OAI-PMH:AutoUpdateSetsEmbedItemData typo This patch fixes the case of the wrong syspref variable co-existing with the good one. OAI-PMH:AutoUpdateSetsEmbedItemData is the only case, as the rest of the mispelled ones are just case fixes, which would not trigger the same situation as the `systempreferences` table collation is case-insentitive. To test: 1. Run: $ ktd --shell k$ koha-mysql kohadev > INSERT INTO systempreferences VALUES ('OAI-PMH:AutoUpdateSetEmbedItemData',0,'','','YesNo'); > UPDATE systempreferences SET variable = 'IllCheckAvailability' WHERE variable = "ILLCheckAvailability"; > INSERT INTO systempreferences VALUES ('IllCheckAvailability',0,'','','YesNo'); => FAIL: The last command fails because the good and wrong values cannot coexist 2. Set the version to a prior one: > UPDATE systempreferences SET value="23.1200004" WHERE variable like 'version'; 3. Run: k$ updatedatabase => FAIL: You get this error: ERROR: {UNKNOWN}: DBI Exception: DBD::mysql::db do failed: Duplicate entry 'OAI-PMH:AutoUpdateSetsEmbedItemData' for key 'systempreferences.PRIMARY' at ... 4. Apply this patch 5. Repeat 3 => SUCCESS: It works! 6. Sign off :-D Signed-off-by: Tomas Cohen Arazi Signed-off-by: Victor Grousset/tuxayo Signed-off-by: David Nind Signed-off-by: Mohd Hafiz Yusoff Signed-off-by: Mohd Hafiz Yusoff -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 12 17:42:25 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 12 Mar 2024 16:42:25 +0000 Subject: [Koha-bugs] [Bug 35473] Core bookings and room reservations plugin tables clash In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35473 Kyle M Hall changed: What |Removed |Added ---------------------------------------------------------------------------- Status|In Discussion |Signed Off --- Comment #21 from Kyle M Hall --- (In reply to Martin Renvoize from comment #20) > Do we have a proposed path forward here.. as it stands Koha just breaks > silently at upgrade if room reservations was installed.. IMO Koha continuing to function should trump all other things. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 12 17:43:35 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 12 Mar 2024 16:43:35 +0000 Subject: [Koha-bugs] [Bug 36232] Error fixing OAI-PMH:AutoUpdateSetsEmbedItemData syspref name on the DB In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36232 Katrin Fischer changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #163094|0 |1 is obsolete| | -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 12 17:44:01 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 12 Mar 2024 16:44:01 +0000 Subject: [Koha-bugs] [Bug 36232] Error fixing OAI-PMH:AutoUpdateSetsEmbedItemData syspref name on the DB In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36232 Katrin Fischer changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Signed Off |Passed QA --- Comment #9 from Katrin Fischer --- Moving this to PQA - lots of SO and urgent. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 12 17:45:48 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 12 Mar 2024 16:45:48 +0000 Subject: [Koha-bugs] [Bug 36302] New: Patron search from search bar broken Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36302 Bug ID: 36302 Summary: Patron search from search bar broken Change sponsored?: --- Product: Koha Version: master Hardware: All OS: All Status: NEW Severity: enhancement Priority: P5 - low Component: Staff interface Assignee: koha-bugs at lists.koha-community.org Reporter: martin.renvoize at ptfs-europe.com QA Contact: testopia at bugs.koha-community.org CC: gmcharlt at gmail.com The patron search from the top bar has broken recently. Search for Henry in ktd from the top bar, autocomplete works, but hitting return returns zero results (and doesn't redirect to the Henry user either any more) -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 12 17:46:01 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 12 Mar 2024 16:46:01 +0000 Subject: [Koha-bugs] [Bug 36302] Patron search from search bar broken In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36302 Martin Renvoize changed: What |Removed |Added ---------------------------------------------------------------------------- Assignee|koha-bugs at lists.koha-commun |pedro.amorim at ptfs-europe.co |ity.org |m -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 12 17:47:01 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 12 Mar 2024 16:47:01 +0000 Subject: [Koha-bugs] [Bug 36302] Patron search from search bar broken In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36302 Katrin Fischer changed: What |Removed |Added ---------------------------------------------------------------------------- Severity|enhancement |critical Keywords| |RM_priority --- Comment #1 from Katrin Fischer --- Confirmed. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 12 17:49:24 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 12 Mar 2024 16:49:24 +0000 Subject: [Koha-bugs] [Bug 36130] ILL batches table not showing all batches In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36130 Katrin Fischer changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Passed QA |Pushed to master Version(s)| |24.05.00 released in| | -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 12 17:49:26 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 12 Mar 2024 16:49:26 +0000 Subject: [Koha-bugs] [Bug 36130] ILL batches table not showing all batches In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36130 --- Comment #10 from Katrin Fischer --- Pushed for 24.05! Well done everyone, thank you! -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 12 17:49:28 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 12 Mar 2024 16:49:28 +0000 Subject: [Koha-bugs] [Bug 36177] We need integration tests to cover CSRF checks In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36177 Katrin Fischer changed: What |Removed |Added ---------------------------------------------------------------------------- Version(s)| |24.05.00 released in| | Status|Passed QA |Pushed to master -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 12 17:49:30 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 12 Mar 2024 16:49:30 +0000 Subject: [Koha-bugs] [Bug 36177] We need integration tests to cover CSRF checks In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36177 --- Comment #15 from Katrin Fischer --- Pushed for 24.05! Well done everyone, thank you! -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 12 17:49:31 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 12 Mar 2024 16:49:31 +0000 Subject: [Koha-bugs] [Bug 36193] CSRF - Code review missed In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36193 Katrin Fischer changed: What |Removed |Added ---------------------------------------------------------------------------- Version(s)| |24.05.00 released in| | Status|Passed QA |Pushed to master -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 12 17:49:33 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 12 Mar 2024 16:49:33 +0000 Subject: [Koha-bugs] [Bug 36193] CSRF - Code review missed In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36193 --- Comment #25 from Katrin Fischer --- Pushed for 24.05! Well done everyone, thank you! -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 12 17:49:34 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 12 Mar 2024 16:49:34 +0000 Subject: [Koha-bugs] [Bug 36215] Bookings calendar only shows bookings within RESTdefaultPageSize In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36215 Katrin Fischer changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Passed QA |Pushed to master Version(s)| |24.05.00 released in| | -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 12 17:49:36 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 12 Mar 2024 16:49:36 +0000 Subject: [Koha-bugs] [Bug 36215] Bookings calendar only shows bookings within RESTdefaultPageSize In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36215 --- Comment #5 from Katrin Fischer --- Pushed for 24.05! Well done everyone, thank you! -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 12 17:49:37 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 12 Mar 2024 16:49:37 +0000 Subject: [Koha-bugs] [Bug 36232] Error fixing OAI-PMH:AutoUpdateSetsEmbedItemData syspref name on the DB In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36232 Katrin Fischer changed: What |Removed |Added ---------------------------------------------------------------------------- Version(s)| |24.05.00 released in| | Status|Passed QA |Pushed to master -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 12 17:49:39 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 12 Mar 2024 16:49:39 +0000 Subject: [Koha-bugs] [Bug 36232] Error fixing OAI-PMH:AutoUpdateSetsEmbedItemData syspref name on the DB In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36232 --- Comment #10 from Katrin Fischer --- Pushed for 24.05! Well done everyone, thank you! -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 12 17:49:41 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 12 Mar 2024 16:49:41 +0000 Subject: [Koha-bugs] [Bug 36235] System preferences chopping everything after a semicolon. In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36235 Katrin Fischer changed: What |Removed |Added ---------------------------------------------------------------------------- Version(s)| |24.05.00 released in| | Status|Passed QA |Pushed to master -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 12 17:49:43 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 12 Mar 2024 16:49:43 +0000 Subject: [Koha-bugs] [Bug 36235] System preferences chopping everything after a semicolon. In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36235 --- Comment #12 from Katrin Fischer --- Pushed for 24.05! Well done everyone, thank you! -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 12 17:49:44 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 12 Mar 2024 16:49:44 +0000 Subject: [Koha-bugs] [Bug 36251] Patron search by letter broken in holds In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36251 Katrin Fischer changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Passed QA |Pushed to master Version(s)| |24.05.00 released in| | -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 12 17:49:46 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 12 Mar 2024 16:49:46 +0000 Subject: [Koha-bugs] [Bug 36251] Patron search by letter broken in holds In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36251 --- Comment #7 from Katrin Fischer --- Pushed for 24.05! Well done everyone, thank you! -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 12 17:55:32 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 12 Mar 2024 16:55:32 +0000 Subject: [Koha-bugs] [Bug 2906] Holds ratios report should have more filters In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=2906 Chip Halvorsen changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |Chip.Halvorsen at WestlakeLibr | |ary.org --- Comment #6 from Chip Halvorsen --- Our selectors asked for a way to remove items with the location Express from consideration in the ratios. Item types assigned to our Express location are non-holdable. Would it be feasible to at least add a checkbox option that would exclude item types that listed as No Holds Allowed under "Default holds policy by item type" in the circulation rules? -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 12 18:48:11 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 12 Mar 2024 17:48:11 +0000 Subject: [Koha-bugs] [Bug 36302] Patron search from search bar broken In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36302 Pedro Amorim changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |Needs Signoff -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 12 18:48:15 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 12 Mar 2024 17:48:15 +0000 Subject: [Koha-bugs] [Bug 36302] Patron search from search bar broken In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36302 --- Comment #2 from Pedro Amorim --- Created attachment 163096 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163096&action=edit Bug 36302: Remove defer_loading logic Test plan, ktd: 1) Search "henry" on the top search bar, notice 1 result is auto suggested 2) Ignore the auto-complete, press 'Enter' instead 3) Notice no results are returned. 4) Apply patch. Repeat. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 12 18:49:14 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 12 Mar 2024 17:49:14 +0000 Subject: [Koha-bugs] [Bug 36192] [OMNIBUS] CSRF Protection for Koha In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36192 --- Comment #1 from Nick Clemens --- Please file any new related issues on their own individual bugs per RM request -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Tue Mar 12 18:50:17 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 12 Mar 2024 17:50:17 +0000 Subject: [Koha-bugs] [Bug 36302] Patron search from search bar broken In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36302 Pedro Amorim changed: What |Removed |Added ---------------------------------------------------------------------------- See Also| |https://bugs.koha-community | |.org/bugzilla3/show_bug.cgi | |?id=30063 CC| |jonathan.druart at gmail.com --- Comment #3 from Pedro Amorim --- This is a PoC highlighting and fixing the issue, but I'm unsure what that defer_loading code was doing int he first but was introduced by bug 30063 patch "Restore back behaviour". @Joubu are you able to provide feedback here? Basically I believe my patch is fixing the issue but may be reintroducing past issues. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 12 18:50:17 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 12 Mar 2024 17:50:17 +0000 Subject: [Koha-bugs] [Bug 30063] Make the main patron search use the /patrons REST API route In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30063 Pedro Amorim changed: What |Removed |Added ---------------------------------------------------------------------------- See Also| |https://bugs.koha-community | |.org/bugzilla3/show_bug.cgi | |?id=36302 -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 12 18:51:25 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 12 Mar 2024 17:51:25 +0000 Subject: [Koha-bugs] [Bug 36302] Patron search from search bar broken In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36302 Pedro Amorim changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |nick at bywatersolutions.com -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 12 18:53:05 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 12 Mar 2024 17:53:05 +0000 Subject: [Koha-bugs] [Bug 36215] Bookings calendar only shows bookings within RESTdefaultPageSize In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36215 Nick Clemens changed: What |Removed |Added ---------------------------------------------------------------------------- Keywords| |rel_23_11_candidate -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 12 18:56:52 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 12 Mar 2024 17:56:52 +0000 Subject: [Koha-bugs] [Bug 36297] Avoid using var named "t" in templates In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36297 Pedro Amorim changed: What |Removed |Added ---------------------------------------------------------------------------- See Also| |https://bugs.koha-community | |.org/bugzilla3/show_bug.cgi | |?id=36158 CC| |kyle at bywatersolutions.com, | |martin.renvoize at ptfs-europe | |.com, | |pedro.amorim at ptfs-europe.co | |m URL| |https://github.com/abw/Temp | |late2/issues/317 --- Comment #1 from Pedro Amorim --- This may be a non-issue (?) if it is indeed a template toolkit bug and it gets fixed upstream, the problem is that the value of 't' persists even after the end of the loop. Having said that, we may also just decide that using 't' as a variable name (anywhere) in TT is bad practice, because it may conflict with the translation method 't' we use. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 12 18:56:52 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 12 Mar 2024 17:56:52 +0000 Subject: [Koha-bugs] [Bug 36158] Text on the "Show SQL code" button at guided_reports.pl breaks if report notice templates exist In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36158 Pedro Amorim changed: What |Removed |Added ---------------------------------------------------------------------------- See Also| |https://bugs.koha-community | |.org/bugzilla3/show_bug.cgi | |?id=36297 -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 12 18:57:43 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 12 Mar 2024 17:57:43 +0000 Subject: [Koha-bugs] [Bug 36154] Add images to the lists and loan histories In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36154 Hammat wele changed: What |Removed |Added ---------------------------------------------------------------------------- Assignee|matthias.le-gac at inlibro.com |hammat.wele at inlibro.com CC| |hammat.wele at inlibro.com -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 12 19:02:42 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 12 Mar 2024 18:02:42 +0000 Subject: [Koha-bugs] [Bug 36302] Patron search from search bar broken In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36302 --- Comment #4 from Pedro Amorim --- I believe this defer_loading check was added here to have the "back" browser behavior work in the event that a search only returned 1 result and the cgi->redirect to that result kicks in (as opposed to showing the search results with just 1 entry). Is this cgi->redirect (in members/member.pl) still needed now that we have auto-complete suggestions? -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 12 19:04:45 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 12 Mar 2024 18:04:45 +0000 Subject: [Koha-bugs] [Bug 36101] Deleting an item removes the itemnumber from old_reserves when it should not In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36101 Victor Grousset/tuxayo changed: What |Removed |Added ---------------------------------------------------------------------------- Severity|enhancement |normal -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Tue Mar 12 19:18:25 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 12 Mar 2024 18:18:25 +0000 Subject: [Koha-bugs] [Bug 36303] New: Add after_circ_action hook action for checking in item that was not checked out Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36303 Bug ID: 36303 Summary: Add after_circ_action hook action for checking in item that was not checked out Change sponsored?: --- Product: Koha Version: master Hardware: All OS: All Status: NEW Severity: enhancement Priority: P5 - low Component: Plugin architecture Assignee: koha-bugs at lists.koha-community.org Reporter: glasklas at gmail.com QA Contact: testopia at bugs.koha-community.org This patch adds an after_circ_action hook action for the case when an item that is not checked out is checked in. -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Tue Mar 12 19:20:47 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 12 Mar 2024 18:20:47 +0000 Subject: [Koha-bugs] [Bug 36303] Add after_circ_action hook action for checking in item that was not checked out In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36303 --- Comment #1 from David Gustafsson --- Created attachment 163097 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163097&action=edit Bug 36303: Add after_circ_action hook action for checking in item that was not checked out To test: 1) Run tests in t/db_dependent/Koha/Plugins/Circulation_hooks.t Sponsored-by: Gothenburg University Library -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 12 19:24:18 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 12 Mar 2024 18:24:18 +0000 Subject: [Koha-bugs] [Bug 36303] Add after_circ_action hook action for checking in item that was not checked out In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36303 David Gustafsson changed: What |Removed |Added ---------------------------------------------------------------------------- Assignee|koha-bugs at lists.koha-commun |glasklas at gmail.com |ity.org | -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 12 19:24:24 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 12 Mar 2024 18:24:24 +0000 Subject: [Koha-bugs] [Bug 36303] Add after_circ_action hook action for checking in item that was not checked out In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36303 David Gustafsson changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |Needs Signoff -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 12 19:37:04 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 12 Mar 2024 18:37:04 +0000 Subject: [Koha-bugs] [Bug 36291] Scrolling glitch on ILL batches table In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36291 --- Comment #3 from Tomás Cohen Arazi --- Steps to reproduce: 1. Have a fresh KTD 2. Run: $ ktd --shell k$ bash <(curl -s https://raw.githubusercontent.com/ammopt/koha-ill-dev/master/start-ill-dev.sh) k$ cd k$ git clone https://github.com/ammopt/koha-ill-dev.git k$ cd koha-ill-dev/ k$ sudo apt install libdata-faker-perl libtext-lorem-perl k$ PERL5LIB=$PERL5LIB:./lib perl fake_data.pl --how-many 200 --entity ill k$ for x in {1..21}; do echo "INSERT INTO illbatches (name, backend, library_id, status_code, patron_id) VALUES ('$x', 'FreeForm', 'CPL', 'NEW', 52);"; done | koha-mysql kohadev 3. Go to /cgi-bin/koha/ill/ill-requests.pl?method=batch_list 4. Scroll down => FAIL: Koha is your enemy! -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 12 20:00:37 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 12 Mar 2024 19:00:37 +0000 Subject: [Koha-bugs] [Bug 36192] [OMNIBUS] CSRF Protection for Koha In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36192 Nick Clemens changed: What |Removed |Added ---------------------------------------------------------------------------- Depends on| |36246 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36246 [Bug 36246] Have a centralized method for submitting a form via a link -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 12 20:00:37 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 12 Mar 2024 19:00:37 +0000 Subject: [Koha-bugs] [Bug 36246] Have a centralized method for submitting a form via a link In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36246 Nick Clemens changed: What |Removed |Added ---------------------------------------------------------------------------- Blocks| |36192 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36192 [Bug 36192] [OMNIBUS] CSRF Protection for Koha -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 12 20:00:53 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 12 Mar 2024 19:00:53 +0000 Subject: [Koha-bugs] [Bug 36246] Have a centralized method for submitting a form via a link In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36246 Nick Clemens changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |jonathan.druart at gmail.com Assignee|koha-bugs at lists.koha-commun |nick at bywatersolutions.com |ity.org | -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Tue Mar 12 20:15:45 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 12 Mar 2024 19:15:45 +0000 Subject: [Koha-bugs] [Bug 36246] Have a centralized method for submitting a form via a link In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36246 David Nind changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Needs Signoff |Signed Off -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 12 20:15:48 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 12 Mar 2024 19:15:48 +0000 Subject: [Koha-bugs] [Bug 36246] Have a centralized method for submitting a form via a link In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36246 David Nind changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #162835|0 |1 is obsolete| | --- Comment #2 from David Nind --- Created attachment 163098 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163098&action=edit Bug 36246: Add JS function/include for submitting forms from link data This patch adds a new js include file form-submit.js which will read data elements from a link and use those to submit a form This patch fixes forms on acqui/invoice.pl as an example To test: 1 - Add some invoices for a vendor 2 - Got to Acquisitions->Invoices 3 - Actions -> Close - confirm it works 4 - Got to 'Closed invoices' - reopen 5 - Go to Details on the invoice 6 - Add an adjustment 7 - Delete the adjustment 8 - Confirm it works Signed-off-by: David Nind -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 12 20:41:22 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 12 Mar 2024 19:41:22 +0000 Subject: [Koha-bugs] [Bug 36302] Patron search from search bar broken In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36302 Brendan Lawlor changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Needs Signoff |Signed Off -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 12 20:41:24 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 12 Mar 2024 19:41:24 +0000 Subject: [Koha-bugs] [Bug 36302] Patron search from search bar broken In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36302 Brendan Lawlor changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #163096|0 |1 is obsolete| | --- Comment #5 from Brendan Lawlor --- Created attachment 163099 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163099&action=edit Bug 36302: Remove defer_loading logic Test plan, ktd: 1) Search "henry" on the top search bar, notice 1 result is auto suggested 2) Ignore the auto-complete, press 'Enter' instead 3) Notice no results are returned. 4) Apply patch. Repeat. Signed-off-by: Brendan Lawlor -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 12 20:41:56 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 12 Mar 2024 19:41:56 +0000 Subject: [Koha-bugs] [Bug 36302] Patron search from search bar broken In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36302 Brendan Lawlor changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |blawlor at clamsnet.org -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 12 21:37:24 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 12 Mar 2024 20:37:24 +0000 Subject: [Koha-bugs] [Bug 36195] CSRF - testing reports In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36195 --- Comment #10 from Victor Grousset/tuxayo --- I reported the issue corresponding to Bug 36280 in the pad just a day before promulgation of directive «Please file individual bugs to deal with remaining issues per RM request» Just writing here to be sure that report didn't slip under the radar due to being right before the change in strategy for CSRF related regressions. -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 12 21:46:46 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 12 Mar 2024 20:46:46 +0000 Subject: [Koha-bugs] [Bug 36195] CSRF - testing reports In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36195 --- Comment #11 from Katrin Fischer --- (In reply to Victor Grousset/tuxayo from comment #10) > I reported the issue corresponding to Bug 36280 in the pad just a day before > promulgation of directive «Please file individual bugs to deal with > remaining issues per RM request» > > Just writing here to be sure that report didn't slip under the radar due to > being right before the change in strategy for CSRF related regressions. I pushed all patches on this and the other CSRF bug today. So this is just for future bugs. -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 12 21:49:12 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 12 Mar 2024 20:49:12 +0000 Subject: [Koha-bugs] [Bug 36118] ILL request log does not display patron information In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36118 Victor Grousset/tuxayo changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Signed Off |BLOCKED --- Comment #8 from Victor Grousset/tuxayo --- > 4) Pick a type, insert '42' on cardnumber and pick a library, hit 'Create' picking a type results in error 403 > Programming error - No CSRF token passed for POST > http://localhost:8081/intranet/ill/ill-requests.pl?method=create&backend=FreeForm > (referer: > http://localhost:8081/cgi-bin/koha/ill/ill-requests.pl?method=create&backend=FreeForm) Is that already reported? It doesn't seem to be in Bug 36195 's pad and bug 34478 's dependencies. So can't test for now. Code looks good at least :) -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 12 21:53:02 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 12 Mar 2024 20:53:02 +0000 Subject: [Koha-bugs] [Bug 35357] Item not removed from holds queue when checked out to a different patron In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35357 --- Comment #28 from Katrin Fischer --- Thanks for explaining :) -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 12 21:54:44 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 12 Mar 2024 20:54:44 +0000 Subject: [Koha-bugs] [Bug 35473] Core bookings and room reservations plugin tables clash In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35473 --- Comment #22 from Katrin Fischer --- I think we have the best possible outcome here that will allow libraries to fix the issue without losing data. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 12 21:58:21 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 12 Mar 2024 20:58:21 +0000 Subject: [Koha-bugs] [Bug 36077] Create separate cookie options for the staff interface In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36077 --- Comment #4 from Katrin Fischer --- (In reply to Mirjam Vantieghem from comment #3) > Not sure if this belongs here or in a separate bug: > When the CookieConsent system preference is set to require, the > CookieConsent also comes in the pop-up window of the Z39.50/SRU search from > the cataloguing module on the Staff client, even after confirming consent in > the staff client. > That seems unnecessary, unless there are other cookies in the Z39.50/SRU > pop-up window. Can you please report a separate bug as "bug"? -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Tue Mar 12 22:02:10 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 12 Mar 2024 21:02:10 +0000 Subject: [Koha-bugs] [Bug 36123] Hide 856$y when $u is missing In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36123 Katrin Fischer changed: What |Removed |Added ---------------------------------------------------------------------------- Summary|Visibility setting in |Hide 856$y when $u is |framework for the 856$u not |missing |being followed in OPAC or | |Staff interface | --- Comment #3 from Katrin Fischer --- (In reply to Esther Melander from comment #2) > If $u is hidden, should $y appear in the OPAC as a clickable link > (especially if the URL box is unchecked)? The link will be broken and return > an error page, but should it even appear in the first place? I would think > that if $u is hidden, $y should either be hidden automatically as well or > only appear as text. We could make it more clever like that, but I think that makes it a different kind of bug. The problem is that the logic in our XSLT could be smarter, but the visibility settings work as expected. $u is hidden when set to hidden, $y is kept. there are no relationships/dependencies between the subfields in the frameworks. I am changing the bug description a little bit to reflect that. -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 12 22:08:23 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 12 Mar 2024 21:08:23 +0000 Subject: [Koha-bugs] [Bug 36302] Patron search from search bar broken In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36302 --- Comment #6 from Katrin Fischer --- (In reply to Pedro Amorim from comment #4) > I believe this defer_loading check was added here to have the "back" browser > behavior work in the event that a search only returned 1 result and the > cgi->redirect to that result kicks in (as opposed to showing the search > results with just 1 entry). > Is this cgi->redirect (in members/member.pl) still needed now that we have > auto-complete suggestions? I believe we did have the auto-suggest before this was added, it's a bit of a different use case. Having the back button work would be preferrable, but maybe we can fix the immediate issue first and further improve again in another bug. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 12 22:14:51 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 12 Mar 2024 21:14:51 +0000 Subject: [Koha-bugs] [Bug 33268] Overlay rules don't work correctly when source is set to * In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33268 Victor Grousset/tuxayo changed: What |Removed |Added ---------------------------------------------------------------------------- Text to go in the|This enhancement changes | release notes|how marc overlay rules are | |evaluated. Before the | |change rules with filter | |set to '*' (wildcard) where | |only applied when no other | |rules had been defined for | |a specific filter value, | |regardless of if any of the | |rules with that filter | |value matched or not. | | | |With | |this change we fallback to | |the wildcard filter rules | |even though rules with a | |matching filter value do | |exists, if no rule for that | |filter value matches. This | |resolves the issue of | |having to repeat the same | |default rules for each | |filter value rule set. If | |for some filter value the | |wildcard filter rules | |should be overridden, a | |wildcard tag rule for that | |filter value can be defined | |which will have higher | |precedence and override all | |the filter wildcard rules. | | | |In summary, the rules will | |applied as follows: | | | |- A | |matching rule is looked for | |based on context (module | |and filter value), if | |multiple contexts matches | |rules for the module with | |highest priority are used. | |The module priority is | |(from highest to lowest) | |"User name", "Patron | |category" and "Source". | | | |- | |If no matching rule is | |found, we fallback to the | |wildcard filter rules of | |the current context module. | | | |For Koha installations | |where marc overlay rules is | |in use a database migration | |will run that creates new | |rules if necessary to | |preserve the current | |behavior, so no user action | |needs to be taken in order | |to correct for this change. | -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 12 22:21:40 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 12 Mar 2024 21:21:40 +0000 Subject: [Koha-bugs] [Bug 36188] Allow to sort lists by items.dateaccessioned of item records In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36188 Alex Buckley changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #162554|0 |1 is obsolete| | -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Tue Mar 12 22:22:40 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 12 Mar 2024 21:22:40 +0000 Subject: [Koha-bugs] [Bug 36302] Patron search from search bar broken In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36302 --- Comment #7 from Brendan Lawlor --- Not sure if I'm missing something, but with this patch applied the back button still works how I would expect it to. If I search from the main page for Henry, it takes me directly to that patron, and the back button takes me back to the main page. If I search for Bob it takes me to the results page with two entries. Then if I search for Henry it takes me to the patron record and back takes me back to the results page. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 12 22:23:37 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 12 Mar 2024 21:23:37 +0000 Subject: [Koha-bugs] [Bug 36188] Allow to sort lists by items.dateaccessioned of item records In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36188 --- Comment #20 from Alex Buckley --- Created attachment 163100 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163100&action=edit Bug 36188: Sort lists by Date acquired (items.dateaccessioned) in the staff client When a list is sorted by date acquired it should be ordered descending by default. This is to ensure the newest items are displayed first. Test plan: 1. Apply patches and restart services 2. Go to the Lists module and create a new list 3. Set the 'Sort this list by' dropdown = 'Date acquired' 4. Add several barcodes to the list belonging to items with a range of different items.dateaccessioned dates (952$d subfields) 5. Observe the list records are ordered by the 'Date acquired' column: - Records with the newest date acquired values displayed first. - The date acquired value for each title item record is listed in this column. 6. Switch to order date acquired ascending by clicking on the 'Date acquired' column label - records with the oldest date acquired should be displayed first. 7. Edit the list. Change the 'Sort this list by' dropdown to 'Title' 8. Notice the list records are ordered by the 'Title' column in an ascending order - A-Z alphabetically. Sponsored-By: The Treasury, New Zealand -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Tue Mar 12 22:33:30 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 12 Mar 2024 21:33:30 +0000 Subject: [Koha-bugs] [Bug 36188] Allow to sort lists by items.dateaccessioned of item records In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36188 --- Comment #21 from Alex Buckley --- Created attachment 163101 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163101&action=edit Bug 36188: Sort lists by date acquired (items.dateaccessioned) in the OPAC When a list is sorted by date acquired it should be ordered descending by default. This is to ensure the newest items are displayed first. Test plan: 1. Apply patches and restart services 2. In the Staff client, go to the Lists module and create a new list 3. Set the 'Sort this list by' dropdown = 'Date acquired' 4. Add several barcodes to the list belonging to items with a range of different date acquired dates 5. In the staff client observe the list records are ordered by the 'Date acquired' in descending order - i.e. titles with newest date acquired are displayed first 6. In a new browser window navigate to the list in the Koha OPAC 7. Confirm the list titles in the OPAC are ordered in the same order as the staff client 8. In the OPAC click on the 'Sort' button and select 'Date acquired (oldest to newest) 9. Confirm the OPAC list order reverses 10. In the OPAC choose other values from the 'Sort' button and confirm the list is re-sorted correctly Sponsored-By: The Treasury, New Zealand -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 12 23:01:17 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 12 Mar 2024 22:01:17 +0000 Subject: [Koha-bugs] [Bug 35762] Add option to send WELCOME notice immediately In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35762 Lisette Scheer changed: What |Removed |Added ---------------------------------------------------------------------------- Resolution|--- |INVALID Status|NEW |RESOLVED --- Comment #3 from Lisette Scheer --- Yep, not sure how we missed that since I talked with a couple folks before putting the bug in. -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Tue Mar 12 23:20:33 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 12 Mar 2024 22:20:33 +0000 Subject: [Koha-bugs] [Bug 36188] Allow to sort lists by items.dateaccessioned of item records In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36188 Alex Buckley changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #162931|0 |1 is obsolete| | -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 12 23:22:57 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 12 Mar 2024 22:22:57 +0000 Subject: [Koha-bugs] [Bug 36188] Allow to sort lists by items.dateaccessioned of item records In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36188 Alex Buckley changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Signed Off |Needs Signoff --- Comment #22 from Alex Buckley --- Hi Lucas, Esther and Owen, I've just attached two amended patches which change the text displayed to 'Date acquired'. Would you mind please taking a look and letting us know if that look alright? Also, Owen would you mind please checking if the sorting is still inconsistent between the OPAC and staff client? Alex -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 12 23:44:04 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 12 Mar 2024 22:44:04 +0000 Subject: [Koha-bugs] [Bug 36233] Cannot search invoices if too many vendors In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36233 Victor Grousset/tuxayo changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #162849|0 |1 is obsolete| | --- Comment #7 from Victor Grousset/tuxayo --- Created attachment 163102 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163102&action=edit Bug 36233: Use select2 to load vendors on invoice search This patch moves the dropdown to use select2 and avoids loading all vendors at page load. To test: 1 - Create some extra vendors in your system, ideally over 20 2 - Search for a vendor in acquisitions 3 - Click 'Invoices' 4 - Note the dropdown of all vendors 'Vendor:' in search bar on left 5 - The vendor you came from shoudl eb selected 6 - Apply patch 7 - Repeat 8 - Note only a partial list of vendors is loaded, confirm current vendor still selected 9 - Search in the dropdown and confirm vendors are returned 10 - Select a vendor and search 11 - confirm selection is retained Signed-off-by: Lisette Scheer Rebased-by: Victor Grousset/tuxayo -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 12 23:44:07 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 12 Mar 2024 22:44:07 +0000 Subject: [Koha-bugs] [Bug 36233] Cannot search invoices if too many vendors In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36233 Victor Grousset/tuxayo changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #162853|0 |1 is obsolete| | --- Comment #8 from Victor Grousset/tuxayo --- Created attachment 163103 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163103&action=edit Bug 36233: (follow-up) Fix width and enable clear option -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Mar 12 23:45:11 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 12 Mar 2024 22:45:11 +0000 Subject: [Koha-bugs] [Bug 36233] Cannot search invoices if too many vendors In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36233 Victor Grousset/tuxayo changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |victor at tuxayo.net --- Comment #9 from Victor Grousset/tuxayo --- Rebased to fix conflict -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Mar 13 01:10:45 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 13 Mar 2024 00:10:45 +0000 Subject: [Koha-bugs] [Bug 36246] Have a centralized method for submitting a form via a link In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36246 David Cook changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |dcook at prosentient.com.au -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Mar 13 02:02:45 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 13 Mar 2024 01:02:45 +0000 Subject: [Koha-bugs] [Bug 33575] Add table settings to the holds table for a specific record in the staff interface In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33575 Michelle Spinney changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |mspinney at clamsnet.org -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Mar 13 06:01:21 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 13 Mar 2024 05:01:21 +0000 Subject: [Koha-bugs] [Bug 28633] Add a preferred_name field and an effective_name method to patrons In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28633 --- Comment #53 from David Cook --- (In reply to Katrin Fischer from comment #51) > Should/can we revive this one? I still have people asking for this, so it would be great to see it make it. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Mar 13 06:46:54 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 13 Mar 2024 05:46:54 +0000 Subject: [Koha-bugs] [Bug 36302] Patron search from search bar broken In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36302 --- Comment #8 from Jonathan Druart --- defer_loading is coming from commit f6394501f2ae6468cef8279ba8e296427cb69188 Bug 30063: Restore back behaviour See 30063 comment 23 (point 6). To recreate: 1. search 'henry' 2. the table loads, only one result 3. redirected to the patron detail view 4. go back 5. the table loads, only one result 6. redirected to the patron detail view 5 should not display the page. It's the behaviour on master, which is broken by this patch. The regression has been introduced by commit f3bd0e7ebddac73552dd175b39d458855d7d663e Bug 34478: Manual fix - change to get remove csrf token - member-search-box where we changed from POST to GET and so we do no longer set the variable: members/member.pl:72 my $defer_loading = $input->request_method() eq "GET" && !$circsearch ? 1 : 0; -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Mar 13 06:47:01 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 13 Mar 2024 05:47:01 +0000 Subject: [Koha-bugs] [Bug 36302] Patron search from search bar broken In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36302 Jonathan Druart changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Signed Off |Failed QA -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Mar 13 06:47:36 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 13 Mar 2024 05:47:36 +0000 Subject: [Koha-bugs] [Bug 36302] Patron search from search bar broken In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36302 --- Comment #9 from Jonathan Druart --- defer_loading is coming from commit f6394501f2ae6468cef8279ba8e296427cb69188 Bug 30063: Restore back behaviour See 30063 comment 23 (point 6). To recreate: 1. search 'henry' 2. the table loads, only one result 3. redirected to the patron detail view 4. go back 5. the table loads, only one result 6. redirected to the patron detail view 5 should not display the table result. It's the behaviour on master, which is broken by this patch. The regression has been introduced by commit f3bd0e7ebddac73552dd175b39d458855d7d663e Bug 34478: Manual fix - change to get remove csrf token - member-search-box where we changed from POST to GET and so we do no longer set the variable: members/member.pl:72 my $defer_loading = $input->request_method() eq "GET" && !$circsearch ? 1 : 0; -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Mar 13 07:56:56 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 13 Mar 2024 06:56:56 +0000 Subject: [Koha-bugs] [Bug 36195] CSRF - testing reports In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36195 Fridolin Somers changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |fridolin.somers at biblibre.co | |m --- Comment #12 from Fridolin Somers --- Depends on Bug 34478 no ? -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Wed Mar 13 07:57:32 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 13 Mar 2024 06:57:32 +0000 Subject: [Koha-bugs] [Bug 36193] CSRF - Code review missed In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36193 Fridolin Somers changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |fridolin.somers at biblibre.co | |m --- Comment #26 from Fridolin Somers --- Depends on Bug 34478 no ? -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Mar 13 07:58:12 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 13 Mar 2024 06:58:12 +0000 Subject: [Koha-bugs] [Bug 36177] We need integration tests to cover CSRF checks In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36177 Fridolin Somers changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |fridolin.somers at biblibre.co | |m Status|Pushed to master |RESOLVED Resolution|--- |FIXED --- Comment #16 from Fridolin Somers --- Depends on Bug 36148 not in 23.11.x -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Mar 13 09:03:39 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 13 Mar 2024 08:03:39 +0000 Subject: [Koha-bugs] [Bug 36235] System preferences chopping everything after a semicolon. In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36235 Fridolin Somers changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |fridolin.somers at biblibre.co | |m --- Comment #13 from Fridolin Somers --- Bug 36084 is not in 23.11.x but looks like this can be backported ? -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Mar 13 09:06:44 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 13 Mar 2024 08:06:44 +0000 Subject: [Koha-bugs] [Bug 36215] Bookings calendar only shows bookings within RESTdefaultPageSize In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36215 Fridolin Somers changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |fridolin.somers at biblibre.co | |m --- Comment #6 from Fridolin Somers --- Ah sure about this change ? // Fetch list of bookable items let itemsFetch = $.ajax({ - url: '/api/v1/biblios/' + biblionumber + '/items?bookable=1' + '&_per_page=-1', + url: '/api/v1/biblios/' + biblionumber + '/items?bookable=1' + '?_per_page=-1', Looks like it will generate two question mark: url: '/api/v1/biblios/9999/items?bookable=1?_per_page=-1' -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Mar 13 09:08:42 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 13 Mar 2024 08:08:42 +0000 Subject: [Koha-bugs] [Bug 36251] Patron search by letter broken in holds In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36251 Fridolin Somers changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |fridolin.somers at biblibre.co | |m Status|Pushed to master |RESOLVED Resolution|--- |FIXED --- Comment #8 from Fridolin Somers --- Depends on bug 35329 not in 23.11.x -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Mar 13 09:09:43 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 13 Mar 2024 08:09:43 +0000 Subject: [Koha-bugs] [Bug 36130] ILL batches table not showing all batches In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36130 Fridolin Somers changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |fridolin.somers at biblibre.co | |m Resolution|--- |FIXED Status|Pushed to master |RESOLVED --- Comment #11 from Fridolin Somers --- Depends on Bug 36241 not in 23.11.x -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Mar 13 09:09:44 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 13 Mar 2024 08:09:44 +0000 Subject: [Koha-bugs] [Bug 36291] Scrolling glitch on ILL batches table In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36291 Bug 36291 depends on bug 36130, which changed state. Bug 36130 Summary: ILL batches table not showing all batches https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36130 What |Removed |Added ---------------------------------------------------------------------------- Status|Pushed to master |RESOLVED Resolution|--- |FIXED -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Mar 13 09:17:01 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 13 Mar 2024 08:17:01 +0000 Subject: [Koha-bugs] [Bug 36304] New: Update C4::Auth in_iprange function to work when Koha is hosted behind a cloudflare proxy Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36304 Bug ID: 36304 Summary: Update C4::Auth in_iprange function to work when Koha is hosted behind a cloudflare proxy Change sponsored?: --- Product: Koha Version: 23.05 Hardware: All OS: All Status: NEW Severity: major Priority: P5 - low Component: Architecture, internals, and plumbing Assignee: koha-bugs at lists.koha-community.org Reporter: vanoudt at gmail.com QA Contact: testopia at bugs.koha-community.org Created attachment 163104 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163104&action=edit Patch CF::Auth in_iprange to allow for CloudFlare proxying When Koha is run behind a cloudflare proxy, cloudflare obfuscates the REMOTE_ADDR that is provided to koha. It does, however, add another header that we can use to check the actual origin of the client - HTTP_CF_CONNECTING_IP. This patch simply checks to see if this new header is present, indicating koha is behind the cloudflare poroxy, and uses it instead of REMOTE_ADDR to check if a client's IP address is in a valid range. -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Mar 13 09:19:58 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 13 Mar 2024 08:19:58 +0000 Subject: [Koha-bugs] [Bug 36232] Error fixing OAI-PMH:AutoUpdateSetsEmbedItemData syspref name on the DB In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36232 Fridolin Somers changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |fridolin.somers at biblibre.co | |m Version(s)|24.05.00 |24.05.00,23.11.04 released in| | Status|Pushed to master |Pushed to stable --- Comment #11 from Fridolin Somers --- Pushed to 23.11.x for 23.11.04 -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Mar 13 09:39:30 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 13 Mar 2024 08:39:30 +0000 Subject: [Koha-bugs] [Bug 23465] Add item form in acq/serials is missing Select2 style selects In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=23465 Katrin Fischer changed: What |Removed |Added ---------------------------------------------------------------------------- Summary|Add item form in acq is |Add item form in |missing Select2 style |acq/serials is missing |selects |Select2 style selects --- Comment #1 from Katrin Fischer --- This is still true and it would be great to see it fixed. -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Mar 13 10:32:52 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 13 Mar 2024 09:32:52 +0000 Subject: [Koha-bugs] [Bug 36302] Patron search from search bar broken In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36302 --- Comment #10 from Jonathan Druart --- Another regression/behaviour change is that hitting http://localhost:8081/cgi-bin/koha/members/members-home.pl will load the table and display the X first patrons. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Mar 13 10:34:48 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 13 Mar 2024 09:34:48 +0000 Subject: [Koha-bugs] [Bug 36302] Patron search from search bar broken In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36302 --- Comment #11 from Pedro Amorim --- Having discussed this with Jonathan, the regression he mentions on https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36302#c9 is only reproduce able with Firefox, not Chrome. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Mar 13 10:51:16 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 13 Mar 2024 09:51:16 +0000 Subject: [Koha-bugs] [Bug 36235] System preferences chopping everything after a semicolon. In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36235 --- Comment #14 from Pedro Amorim --- (In reply to Fridolin Somers from comment #13) > Bug 36084 is not in 23.11.x but looks like this can be backported ? I don't think so. koha-tmpl/intranet-tmpl/prog/js/vue/fetch/system-preferences-api-client.js does not exist in 23,11,x -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Mar 13 11:31:59 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 13 Mar 2024 10:31:59 +0000 Subject: [Koha-bugs] [Bug 36302] Patron search from search bar broken In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36302 Pedro Amorim changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Failed QA |Needs Signoff -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Mar 13 11:32:02 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 13 Mar 2024 10:32:02 +0000 Subject: [Koha-bugs] [Bug 36302] Patron search from search bar broken In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36302 --- Comment #12 from Pedro Amorim --- Created attachment 163105 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163105&action=edit Bug 36302: Use replace instead of href This will change URL but not fiddle with browser history. Works the same (and as expected) in both Chrome and Firefox -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Mar 13 11:32:04 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 13 Mar 2024 10:32:04 +0000 Subject: [Koha-bugs] [Bug 36302] Patron search from search bar broken In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36302 --- Comment #13 from Pedro Amorim --- Created attachment 163106 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163106&action=edit Bug 36302: Remove unused code Please can someone tell me why we need this code? Inititally I thought this is where the redirect was coming from, but it's coming from JS, not here, so why do we need this? -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Mar 13 11:53:49 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 13 Mar 2024 10:53:49 +0000 Subject: [Koha-bugs] [Bug 36302] Patron search from search bar broken In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36302 --- Comment #14 from Jonathan Druart --- (In reply to Pedro Amorim from comment #13) > Created attachment 163106 [details] [review] > Bug 36302: Remove unused code > > Please can someone tell me why we need this code? > Inititally I thought this is where the redirect was coming from, but it's > coming from JS, not here, so why do we need this? We need it. If you search for 42 you want the patron with cardnumber to be displayed, not the table with all the occurrences of "42". -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Mar 13 11:54:24 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 13 Mar 2024 10:54:24 +0000 Subject: [Koha-bugs] [Bug 36302] Patron search from search bar broken In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36302 --- Comment #15 from Jonathan Druart --- (In reply to Pedro Amorim from comment #12) > Created attachment 163105 [details] [review] > Bug 36302: Use replace instead of href > > This will change URL but not fiddle with browser history. > Works the same (and as expected) in both Chrome and Firefox This is not fixing comment 10. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Mar 13 11:56:25 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 13 Mar 2024 10:56:25 +0000 Subject: [Koha-bugs] [Bug 36302] Patron search from search bar broken In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36302 --- Comment #16 from Jonathan Druart --- (In reply to Pedro Amorim from comment #13) > Created attachment 163106 [details] [review] [review] > Bug 36302: Remove unused code > > Please can someone tell me why we need this code? > Inititally I thought this is where the redirect was coming from, but it's > coming from JS, not here, so why do we need this? We need it. If you search for 42 you want the patron with cardnumber=42 to be displayed, not the table with all the occurrences of "42". -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Mar 13 11:59:38 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 13 Mar 2024 10:59:38 +0000 Subject: [Koha-bugs] [Bug 36302] Patron search from search bar broken In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36302 Pedro Amorim changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Needs Signoff |ASSIGNED -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Mar 13 12:22:29 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 13 Mar 2024 11:22:29 +0000 Subject: [Koha-bugs] [Bug 35826] Optimize building of holds queue based on transport cost matrix In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35826 --- Comment #24 from Andreas Jonsson --- Created attachment 163107 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163107&action=edit Bug 35826: Make copy of cost matrix when substituting inf -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Mar 13 12:25:24 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 13 Mar 2024 11:25:24 +0000 Subject: [Koha-bugs] [Bug 36302] Patron search from search bar broken In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36302 Pedro Amorim changed: What |Removed |Added ---------------------------------------------------------------------------- Status|ASSIGNED |Needs Signoff -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Mar 13 12:25:26 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 13 Mar 2024 11:25:26 +0000 Subject: [Koha-bugs] [Bug 36302] Patron search from search bar broken In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36302 Pedro Amorim changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #163099|0 |1 is obsolete| | Attachment #163105|0 |1 is obsolete| | Attachment #163106|0 |1 is obsolete| | --- Comment #17 from Pedro Amorim --- Created attachment 163108 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163108&action=edit Bug 36302: Get rid of defer_loading Update JS submit of patron_search_form to check for URLParams instead of defer_loading. This is to keep behavior of not doing a search when accessing http://localhost:8081/cgi-bin/koha/members/members-home.pl directly -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Mar 13 12:25:29 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 13 Mar 2024 11:25:29 +0000 Subject: [Koha-bugs] [Bug 36302] Patron search from search bar broken In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36302 --- Comment #18 from Pedro Amorim --- Created attachment 163109 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163109&action=edit Bug 36302: use replace instead of href This will change URL but not fiddle with browser history. Works the same (and as expected) in both Chrome and Firefox Test plan, ktd: 1) Search henry on the top search bar, notice 1 result is auto suggested 2) Ignore the auto-complete, press 'Enter' instead 3) Notice no results are returned. 4) Apply patch. Repeat. 5) Notice you get redirected to the single result of "henry" 6) Press the browser 'back' button and notice it works as expected (both Chrome+Firefox) 7) Visit patrons home directly: http://localhost:8081/cgi-bin/koha/members/members-home.pl 8) Notice no search is performed -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Mar 13 13:21:03 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 13 Mar 2024 12:21:03 +0000 Subject: [Koha-bugs] [Bug 36302] Patron search from search bar broken In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36302 --- Comment #19 from Pedro Amorim --- (In reply to Brendan Lawlor from comment #7) > Not sure if I'm missing something, but with this patch applied the back > button still works how I would expect it to. > > If I search from the main page for Henry, it takes me directly to that > patron, and the back button takes me back to the main page. > > If I search for Bob it takes me to the results page with two entries. Then > if I search for Henry it takes me to the patron record and back takes me > back to the results page. Thank you Brendan for your initial sign-off. I've since followed up while discussing with Jonathan's in case you want to take a look again, -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Mar 13 13:27:48 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 13 Mar 2024 12:27:48 +0000 Subject: [Koha-bugs] [Bug 36302] Patron search from search bar broken In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36302 --- Comment #20 from Jonathan Druart --- Still not happy with it, under Firefox: * Go to mainpage * Click "Patrons" in the header => You are on http://localhost:8081/cgi-bin/koha/members/members-home.pl * "Search for patrons": Search: "henry" (form on the left) => Redirected to the patron detail page * back => You are now on the mainpage! We expect the patron search page. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Mar 13 13:35:18 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 13 Mar 2024 12:35:18 +0000 Subject: [Koha-bugs] [Bug 36305] New: Inventory tools need adjustments for CSRF Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36305 Bug ID: 36305 Summary: Inventory tools need adjustments for CSRF Change sponsored?: --- Product: Koha Version: master Hardware: All OS: All Status: NEW Severity: normal Priority: P5 - low Component: Tools Assignee: koha-bugs at lists.koha-community.org Reporter: nick at bywatersolutions.com QA Contact: testopia at bugs.koha-community.org The main forms don't use 'op' other than checking for the existence Problem follow-ups use an ajax post -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Wed Mar 13 13:36:21 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 13 Mar 2024 12:36:21 +0000 Subject: [Koha-bugs] [Bug 36305] Inventory tools need adjustments for CSRF In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36305 Nick Clemens changed: What |Removed |Added ---------------------------------------------------------------------------- Blocks| |36192 See Also| |https://bugs.koha-community | |.org/bugzilla3/show_bug.cgi | |?id=36190 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36192 [Bug 36192] [OMNIBUS] CSRF Protection for Koha -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Mar 13 13:36:21 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 13 Mar 2024 12:36:21 +0000 Subject: [Koha-bugs] [Bug 36192] [OMNIBUS] CSRF Protection for Koha In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36192 Nick Clemens changed: What |Removed |Added ---------------------------------------------------------------------------- Depends on| |36305 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36305 [Bug 36305] Inventory tools need adjustments for CSRF -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Wed Mar 13 13:36:21 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 13 Mar 2024 12:36:21 +0000 Subject: [Koha-bugs] [Bug 36190] op param for stateful requests must start with 'cud-' In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36190 Nick Clemens changed: What |Removed |Added ---------------------------------------------------------------------------- See Also| |https://bugs.koha-community | |.org/bugzilla3/show_bug.cgi | |?id=36305 -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Wed Mar 13 13:40:15 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 13 Mar 2024 12:40:15 +0000 Subject: [Koha-bugs] [Bug 36190] op param for stateful requests must start with 'cud-' In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36190 Nick Clemens changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |Needs Signoff -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Wed Mar 13 13:40:17 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 13 Mar 2024 12:40:17 +0000 Subject: [Koha-bugs] [Bug 36190] op param for stateful requests must start with 'cud-' In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36190 Nick Clemens changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #162530|0 |1 is obsolete| | Attachment #162531|0 |1 is obsolete| | --- Comment #3 from Nick Clemens --- Created attachment 163110 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163110&action=edit Bug 36190: To not assume op is invalid if it is a TT variable Signed-off-by: Nick Clemens -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Wed Mar 13 13:40:19 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 13 Mar 2024 12:40:19 +0000 Subject: [Koha-bugs] [Bug 36190] op param for stateful requests must start with 'cud-' In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36190 --- Comment #4 from Nick Clemens --- Created attachment 163111 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163111&action=edit Bug 36190: (QA follow-up) Tidy -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Wed Mar 13 13:40:21 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 13 Mar 2024 12:40:21 +0000 Subject: [Koha-bugs] [Bug 36190] op param for stateful requests must start with 'cud-' In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36190 --- Comment #5 from Nick Clemens --- Created attachment 163112 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163112&action=edit Bug 36190: Fix problems found by test opac-shelves - forms were stateless - changed to GET sco-main - forms stateless - changed to GET ** untested because sco + auth is broken smart-rules.tt - JS form template - added placeholder 'cud-' op ill-requests - added cud- tp ops ** tested comments, but not checkout, simple changes boraccount - removed repeated op - updated script patroncards/edit-batch - add placeholder 'cud-' op patroncards/manage - add placheholder 'cud-' op elasticsearch/mappings - separate forms - this could use a style follow-up, but makes more sense separate I think reports/dictionary - stateless - changed to GET guided_reports_start - stateless - changed to GET suggestion/suggestion - add placeholder 'cud-' op inventory - filed bug 36305, needs more handling -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Wed Mar 13 13:40:30 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 13 Mar 2024 12:40:30 +0000 Subject: [Koha-bugs] [Bug 36190] op param for stateful requests must start with 'cud-' In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36190 Nick Clemens changed: What |Removed |Added ---------------------------------------------------------------------------- Assignee|koha-bugs at lists.koha-commun |nick at bywatersolutions.com |ity.org | CC| |nick at bywatersolutions.com -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Wed Mar 13 13:42:58 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 13 Mar 2024 12:42:58 +0000 Subject: [Koha-bugs] [Bug 36277] t/db_dependent/api/v1/transfer_limits.t is failing In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36277 Jonathan Druart changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |jonathan.druart at gmail.com --- Comment #3 from Jonathan Druart --- Koha_Master_MDB_Latest/1359 -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Mar 13 14:35:05 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 13 Mar 2024 13:35:05 +0000 Subject: [Koha-bugs] [Bug 36277] t/db_dependent/api/v1/transfer_limits.t is failing In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36277 --- Comment #4 from Jonathan Druart --- apt install stress stress --cpu 16 (or the number of CPUs you have) Run the following script to inject a lot of libraries use t::lib::TestBuilder; my $builder = t::lib::TestBuilder->new; for my $i ( 1..100000 ) { say $i; $builder->build_object({class => 'Koha::Libraries'}); } % time prove t/db_dependent/api/v1/transfer_limits.t t/db_dependent/api/v1/transfer_limits.t .. 3/4 # Inactivity timeout # Failed test 'POST //hN26548B2h7s3DR9jWZ55OcQnBYvz_olhgm6YAKWU8rRGvCuHOkjM:thePassword123@/api/v1/transfer_limits/batch' # at t/db_dependent/api/v1/transfer_limits.t line 210. # Failed test 'SWAGGER3.2.1' # at t/db_dependent/api/v1/transfer_limits.t line 210. # got: undef # expected: '201' t/db_dependent/api/v1/transfer_limits.t .. 4/4 # Looks like you failed 2 tests of 26. # Failed test 'batch_add() and batch_delete() tests' # at t/db_dependent/api/v1/transfer_limits.t line 269. # Looks like you failed 1 test of 4. t/db_dependent/api/v1/transfer_limits.t .. Dubious, test returned 1 (wstat 256, 0x100) Failed 1/4 subtests Test Summary Report ------------------- t/db_dependent/api/v1/transfer_limits.t (Wstat: 256 Tests: 4 Failed: 1) Failed test: 4 Non-zero exit status: 1 Files=1, Tests=4, 156 wallclock secs ( 0.03 usr 0.00 sys + 105.04 cusr 6.17 csys = 111.24 CPU) Result: FAIL real 2m36.183s user 1m45.121s sys 0m6.208s No idea what to do then... There might be a perf regression somewhere. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Mar 13 14:38:04 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 13 Mar 2024 13:38:04 +0000 Subject: [Koha-bugs] [Bug 36277] t/db_dependent/api/v1/transfer_limits.t is failing In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36277 --- Comment #5 from Jonathan Druart --- IMO those 2 nested loops need to be rewritten. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Mar 13 14:38:36 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 13 Mar 2024 13:38:36 +0000 Subject: [Koha-bugs] [Bug 36277] t/db_dependent/api/v1/transfer_limits.t is failing In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36277 --- Comment #6 from Jonathan Druart --- 138 foreach my $from ( @from_branches ) { 139 foreach my $to ( @to_branches ) { -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Mar 13 15:25:49 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 13 Mar 2024 14:25:49 +0000 Subject: [Koha-bugs] [Bug 16567] RSS feeds show issues in W3C validator and can't be read by some aggregators (Chimpfeedr, feedbucket) In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=16567 --- Comment #2 from Katrin Fischer --- I just checked again in a 22.11 installation and we are still not providing valid RSS data from the search results. This feed does not validate. line 45, column 4: Undefined description element: p (100 occurrences) [help]

    ^ In addition, interoperability with the widest range of feed readers could be improved by implementing the following recommendations. line 22, column 163: Self reference doesn't match document location [help] ... p;sort_by=acqdate_dsc&format=atom"/> ^ line 32, column 1: Misplaced Item (49 occurrences) [help] -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Mar 13 16:01:53 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 13 Mar 2024 15:01:53 +0000 Subject: [Koha-bugs] [Bug 33898] background_jobs_worker.pl may leave defunct children processes for extended periods of time In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33898 Kyle M Hall changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Signed Off |Passed QA --- Comment #29 from Kyle M Hall --- (In reply to Victor Grousset/tuxayo from comment #28) > (In reply to Marcel de Rooy from comment #20) > > The alternative patch addresses the issues raised earlier on the use of > > signals and follows the suggestions of David. > > Thanks :) > > > Kyle, Victor and Asymar: Would this work for you? > > It works, so signing off. > As for the signal vs no signals I don't know the good practices to QA this. > Same for how this plays with when using database polling or the message > queue. (I would have missed that the 1st alternate patch missed this) I think we can move this to PQA with the sign-offs we have! -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Mar 13 16:08:23 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 13 Mar 2024 15:08:23 +0000 Subject: [Koha-bugs] [Bug 33898] background_jobs_worker.pl may leave defunct children processes for extended periods of time In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33898 --- Comment #30 from Asymar Riu --- Hi, sorry for the delay in replying: I confirm that it works. Thank you very much! :) -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Mar 13 16:41:53 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 13 Mar 2024 15:41:53 +0000 Subject: [Koha-bugs] [Bug 36302] Patron search from search bar broken In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36302 Pedro Amorim changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #163108|0 |1 is obsolete| | Attachment #163109|0 |1 is obsolete| | --- Comment #21 from Pedro Amorim --- Created attachment 163113 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163113&action=edit Bug 36302: Revert back to POST Pass the csrf token and 'cud-noop' After having discussed with Joubu and multiple failed attempts at fixing the issue AND restoring previous behavior, this is the fix we agreed on. This will change URL but not fiddle with browser history. Works the same (and as expected) in both Chrome and Firefox Test plan, ktd: 1) Search henry on the top search bar, notice 1 result is auto suggested 2) Ignore the auto-complete, press 'Enter' instead 3) Notice no results are returned. 4) Apply patch. Repeat. 5) Notice you get redirected to the single result of henry 6) Press the browser 'back' button and notice it works as expected (both Chrome+Firefox) 7) Visit patrons home directly: http://localhost:8081/cgi-bin/koha/members/members-home.pl 8) Notice no search is performed -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Mar 13 16:51:36 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 13 Mar 2024 15:51:36 +0000 Subject: [Koha-bugs] [Bug 12723] Add separate fee for renewal of rental items In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=12723 JR changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |jrudisill at cityofchesapeake. | |net -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Mar 13 16:58:00 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 13 Mar 2024 15:58:00 +0000 Subject: [Koha-bugs] [Bug 36291] Scrolling glitch on ILL batches table In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36291 --- Comment #4 from Pedro Amorim --- Can reproduce (only on Firefox tho, it doesn't happen in Chrome). Firefox throws this console entry: This site appears to use a scroll-linked positioning effect. This may not work well with asynchronous panning; see https://firefox-source-docs.mozilla.org/performance/scroll-linked_effects.html for further details and to join the discussion on related tools and features! -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Mar 13 17:01:10 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 13 Mar 2024 16:01:10 +0000 Subject: [Koha-bugs] [Bug 36305] Inventory tools need adjustments for CSRF In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36305 Kyle M Hall changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |kyle at bywatersolutions.com Assignee|koha-bugs at lists.koha-commun |kyle at bywatersolutions.com |ity.org | -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Mar 13 17:24:10 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 13 Mar 2024 16:24:10 +0000 Subject: [Koha-bugs] [Bug 36305] Inventory tools need adjustments for CSRF In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36305 Kyle M Hall changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |Needs Signoff -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Mar 13 17:24:12 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 13 Mar 2024 16:24:12 +0000 Subject: [Koha-bugs] [Bug 36305] Inventory tools need adjustments for CSRF In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36305 --- Comment #1 from Kyle M Hall --- Created attachment 163114 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163114&action=edit Bug 36305: Tidy forms -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Mar 13 17:24:19 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 13 Mar 2024 16:24:19 +0000 Subject: [Koha-bugs] [Bug 36305] Inventory tools need adjustments for CSRF In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36305 --- Comment #2 from Kyle M Hall --- Created attachment 163115 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163115&action=edit Bug 36305: Implement op paramters -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Mar 13 17:45:44 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 13 Mar 2024 16:45:44 +0000 Subject: [Koha-bugs] [Bug 36306] New: Make Koha UserName configurable how it is created Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36306 Bug ID: 36306 Summary: Make Koha UserName configurable how it is created Change sponsored?: --- Product: Koha Version: master Hardware: All OS: All Status: NEW Severity: enhancement Priority: P5 - low Component: Patrons Assignee: koha-bugs at lists.koha-community.org Reporter: kelly at bywatersolutions.com QA Contact: testopia at bugs.koha-community.org CC: gmcharlt at gmail.com, kyle.m.hall at gmail.com It would be nice to allow libraries to configure how the Koha User Name is created in the system. Libraries have many different ways they use this field, such as patron-picked user name, card number, firstname.lastname, or a totally different value. This would be a nice system preference to allow libraries to identify which works for their library and also would be nice to have it as a patron category choice. -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Mar 13 17:51:13 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 13 Mar 2024 16:51:13 +0000 Subject: [Koha-bugs] [Bug 36130] ILL batches table not showing all batches In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36130 Pedro Amorim changed: What |Removed |Added ---------------------------------------------------------------------------- Keywords| |rel_23_11_candidate --- Comment #12 from Pedro Amorim --- (In reply to Fridolin Somers from comment #11) > Depends on Bug 36241 not in 23.11.x Hey, sorry Frido I added the dependency because at the time I submitted the bug bug 36241 was required to follow the test plan. This actually depends on bug 30719 which is in 23.11.x so this should ideally be backported. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Mar 13 17:53:58 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 13 Mar 2024 16:53:58 +0000 Subject: [Koha-bugs] [Bug 36270] Remove special handling for <> In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36270 Brendan Lawlor changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |blawlor at clamsnet.org -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Mar 13 17:54:06 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 13 Mar 2024 16:54:06 +0000 Subject: [Koha-bugs] [Bug 30657] Make patron attributes available via Template Toolkit in overdues In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30657 Brendan Lawlor changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |blawlor at clamsnet.org -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Mar 13 18:16:29 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 13 Mar 2024 17:16:29 +0000 Subject: [Koha-bugs] [Bug 36307] New: SMS::Send driver errors are not captured and stored Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36307 Bug ID: 36307 Summary: SMS::Send driver errors are not captured and stored Change sponsored?: --- Product: Koha Version: master Hardware: All OS: All Status: NEW Severity: enhancement Priority: P5 - low Component: Architecture, internals, and plumbing Assignee: koha-bugs at lists.koha-community.org Reporter: kyle at bywatersolutions.com QA Contact: testopia at bugs.koha-community.org If an SMS::Send driver succeeds, it returns a value that evaluates to true. Every driver I've inspected uses croak when it encounters a failure state. When an SMS message fails to send, code hard codes the failure code to NO_NOTES (No notes from SMS driver). We should store the real error in `failure_code` and display that if the failure code doesn't match a known failure code. -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Mar 13 18:29:58 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 13 Mar 2024 17:29:58 +0000 Subject: [Koha-bugs] [Bug 36307] SMS::Send driver errors are not captured and stored In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36307 Kyle M Hall changed: What |Removed |Added ---------------------------------------------------------------------------- Severity|enhancement |normal Assignee|koha-bugs at lists.koha-commun |kyle at bywatersolutions.com |ity.org | -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Mar 13 18:38:08 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 13 Mar 2024 17:38:08 +0000 Subject: [Koha-bugs] [Bug 36307] SMS::Send driver errors are not captured and stored In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36307 Kyle M Hall changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |Needs Signoff -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Mar 13 18:38:10 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 13 Mar 2024 17:38:10 +0000 Subject: [Koha-bugs] [Bug 36307] SMS::Send driver errors are not captured and stored In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36307 --- Comment #1 from Kyle M Hall --- Created attachment 163116 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163116&action=edit Bug 36307 - SMS::Send driver errors are not captured and stored If an SMS::Send driver succeeds, it returns a value that evaluates to true. Every driver I've inspected uses croak when it encounters a failure state. When an SMS message fails to send, code hard codes the failure code to NO_NOTES (No notes from SMS driver). We should store the real error in `failure_code` and display that if the failure code doesn't match a known failure code. Test Plan: 1) Apply this patch 2) Set SMSSendDriver to any value 3) Generate a pending sms message 4) Run the following query: update message_queue set status = 'failed', failure_code = "This is a test"; 5) View the patron's messages, note the delivery note contains the contents of the failure code 6) Run the following query: update message_queue set status = 'failed', failure_code = "SMS_SEND_DRIVER_MISSING"; 7) Reload the patron's messages, not the delivery note is now "The SMS driver could not be loaded". -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Mar 13 18:50:35 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 13 Mar 2024 17:50:35 +0000 Subject: [Koha-bugs] [Bug 36308] New: SIP2 login broken by CSRF changes Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36308 Bug ID: 36308 Summary: SIP2 login broken by CSRF changes Change sponsored?: --- Product: Koha Version: master Hardware: All OS: All Status: NEW Severity: critical Priority: P5 - low Component: SIP2 Assignee: koha-bugs at lists.koha-community.org Reporter: nick at bywatersolutions.com QA Contact: testopia at bugs.koha-community.org bug 36102 changed the login parameters from 'userid'/'password' to 'login_userid'/'login_password' SIP authentication was missed in the update -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Mar 13 18:52:16 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 13 Mar 2024 17:52:16 +0000 Subject: [Koha-bugs] [Bug 36308] SIP2 login broken by CSRF changes In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36308 Nick Clemens changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |Needs Signoff -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Wed Mar 13 18:52:18 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 13 Mar 2024 17:52:18 +0000 Subject: [Koha-bugs] [Bug 36308] SIP2 login broken by CSRF changes In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36308 --- Comment #1 from Nick Clemens --- Created attachment 163117 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163117&action=edit Bug 36308: Update sip login parameters To test: perl misc/sip_cli_emulator.pl -a localhost -p 6001 -su term1 -sp term1 -l CPL -m patron_information --patron=koha Login fails Apply patch, restart all perl misc/sip_cli_emulator.pl -a localhost -p 6001 -su term1 -sp term1 -l CPL -m patron_information --patron=koha Login succeeds -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Wed Mar 13 18:53:02 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 13 Mar 2024 17:53:02 +0000 Subject: [Koha-bugs] [Bug 36308] SIP2 login broken by CSRF changes In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36308 Nick Clemens changed: What |Removed |Added ---------------------------------------------------------------------------- Depends on| |36102 CC| |jonathan.druart at gmail.com Assignee|koha-bugs at lists.koha-commun |nick at bywatersolutions.com |ity.org | --- Comment #2 from Nick Clemens --- Probably we also need test coverage for this login Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36102 [Bug 36102] Protect login forms from CSRF attacks -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Mar 13 18:53:02 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 13 Mar 2024 17:53:02 +0000 Subject: [Koha-bugs] [Bug 36102] Protect login forms from CSRF attacks In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36102 Nick Clemens changed: What |Removed |Added ---------------------------------------------------------------------------- Blocks| |36308 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36308 [Bug 36308] SIP2 login broken by CSRF changes -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Mar 13 18:54:08 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 13 Mar 2024 17:54:08 +0000 Subject: [Koha-bugs] [Bug 15277] Add Template Toolkit syntax for slips and notices to editor In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=15277 Lisette Scheer changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |lisette.scheer at bywatersolut | |ions.com --- Comment #1 from Lisette Scheer --- Could we do this with codemirror support similar to the reports? -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Mar 13 18:54:23 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 13 Mar 2024 17:54:23 +0000 Subject: [Koha-bugs] [Bug 36309] New: create_superlibrarian.pl output could be more helpful Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36309 Bug ID: 36309 Summary: create_superlibrarian.pl output could be more helpful Change sponsored?: --- Product: Koha Version: master Hardware: All OS: All Status: NEW Severity: enhancement Priority: P5 - low Component: Command-line Utilities Assignee: koha-bugs at lists.koha-community.org Reporter: tomascohen at gmail.com QA Contact: testopia at bugs.koha-community.org CC: robin at catalyst.net.nz This helpful script could provide better output instead of just exploding. For instance, it could display the valid values for branchcode and categorycode in the event of a broken FK while creating the patron. -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Wed Mar 13 18:55:05 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 13 Mar 2024 17:55:05 +0000 Subject: [Koha-bugs] [Bug 36309] create_superlibrarian.pl output could be more helpful In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36309 Tomás Cohen Arazi changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |tomascohen at gmail.com Status|NEW |Needs Signoff Assignee|koha-bugs at lists.koha-commun |tomascohen at gmail.com |ity.org | -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Mar 13 18:56:01 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 13 Mar 2024 17:56:01 +0000 Subject: [Koha-bugs] [Bug 34472] Template Toolkit reference guide needed In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=34472 Lisette Scheer changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |lisette.scheer at bywatersolut | |ions.com -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Mar 13 19:06:25 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 13 Mar 2024 18:06:25 +0000 Subject: [Koha-bugs] [Bug 36087] Editing dates of a booked items causes failure In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36087 Nick Clemens changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |nick at bywatersolutions.com Assignee|koha-bugs at lists.koha-commun |martin.renvoize at ptfs-europe |ity.org |.com -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Mar 13 19:26:08 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 13 Mar 2024 18:26:08 +0000 Subject: [Koha-bugs] [Bug 36087] Editing dates of a booked items causes failure In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36087 Martin Renvoize changed: What |Removed |Added ---------------------------------------------------------------------------- Depends on| |29002 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29002 [Bug 29002] Add ability to book items ahead of time -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Mar 13 19:26:08 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 13 Mar 2024 18:26:08 +0000 Subject: [Koha-bugs] [Bug 29002] Add ability to book items ahead of time In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29002 Martin Renvoize changed: What |Removed |Added ---------------------------------------------------------------------------- Blocks| |36087 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36087 [Bug 36087] Editing dates of a booked items causes failure -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Mar 13 19:28:56 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 13 Mar 2024 18:28:56 +0000 Subject: [Koha-bugs] [Bug 36309] create_superlibrarian.pl output could be more helpful In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36309 --- Comment #1 from Tomás Cohen Arazi --- Created attachment 163118 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163118&action=edit Bug 36309: Make create_superlibrarian.pl output more useful In situations in which you are not familiar with all the Koha settings, and table structure, the fact this script just fails telling there's a broken FK is just not practical. We should capture those exceptions and display a useful message instead. This script does that. It adds some validations and some exception handling too. It prints a nice message about the bad value the user passed, and the valid values too! To test: 1. Run this on a fresh KTD: $ ktd --shell k$ perl misc/devel/create_superlibrarian.pl \ --userid tcohen \ --password tomasito \ --cardnumber 123456789 \ --categorycode POT \ --branchcode ATO => FAIL: It explodes with a MySQL exception message! 2. Apply this patch 3. Repeat 1 => SUCCESS: It tells you which value is wrong and what values you can pick to make the command work 4. Pick a valid value, and repeat => SUCCESS: Now the other value is wrong, a nice message is displayed! 5. Fix with a valid value and repeat => SUCCESS: Patron created! 6. Sign off :-D -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Mar 13 19:34:22 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 13 Mar 2024 18:34:22 +0000 Subject: [Koha-bugs] [Bug 36309] create_superlibrarian.pl output could be more helpful In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36309 --- Comment #2 from Tomás Cohen Arazi --- Comment for QA: I'm not 100% happy with our exception system as there's no consistent way to implement this without several manual checks and disambiguations... and disabling STDERR warns at DBIx::Class level to avoid noise for the end user. That said, it is a discussion to have on another report. And the extra checks inside a transaction I implemented here cause no harm either. I think the benefits are worth the (tiny) extra overhead. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Mar 13 20:34:48 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 13 Mar 2024 19:34:48 +0000 Subject: [Koha-bugs] [Bug 36188] Allow to sort lists by items.dateaccessioned of item records In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36188 --- Comment #23 from Esther Melander --- The change to Date acquired looks fine. Setting the sort to Date acquired in the list edit screen does seem to sort correctly. I had one bibliographic record with two items with different dates. The list sorted correctly even though the one item was acquired earlier than the other. For example, the top bibliographic record had items with dates acquired that looked like this: 09/04/2014 09/10/2020 The second bibliographic record had an item with this date: 03/17/2016 This sorting is correct since the bibliographic record with the newest item (09/10/2020) is at the top of the list. But is it confusing if the dates themselves are still out of order? Bibliographic records with multiple copies acquired at different times add to the appearance of an incorrect sort. Is there a way to deal with multiple copies acquired at different times. -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Mar 13 21:08:09 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 13 Mar 2024 20:08:09 +0000 Subject: [Koha-bugs] [Bug 27753] Automate resolution of return claim when checking in an item In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=27753 Katie Bliss changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |kebliss at dmpl.org -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Mar 13 21:13:03 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 13 Mar 2024 20:13:03 +0000 Subject: [Koha-bugs] [Bug 36101] Deleting an item removes the itemnumber from old_reserves when it should not In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36101 Katie Bliss changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |kebliss at dmpl.org -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Mar 13 21:20:17 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 13 Mar 2024 20:20:17 +0000 Subject: [Koha-bugs] [Bug 36154] Add images to the lists and loan histories In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36154 Katie Bliss changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |kebliss at dmpl.org -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Mar 13 21:49:12 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 13 Mar 2024 20:49:12 +0000 Subject: [Koha-bugs] [Bug 35370] There should be a system preference to disable checking for holds when issuing an item In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35370 Mike Barrette changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |mbarrette at oslri.net -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Mar 13 21:50:17 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 13 Mar 2024 20:50:17 +0000 Subject: [Koha-bugs] [Bug 22403] Temporary Card In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=22403 --- Comment #3 from Christopher Brannon --- (In reply to Owen Leonard from comment #1) > (In reply to Christopher Brannon from comment #0) > > We are CONSTANTLY having to write out patron card numbers on post-its for > > patrons that forgot their library cards. > > I'm curious about the use case in your library. What do they need their > number for? Primarily for what Lisette mentioned, but sometimes patrons want it so they can do the self check rather than hold up a staff member, or they want to login on a catalog to place holds. -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Wed Mar 13 21:51:26 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 13 Mar 2024 20:51:26 +0000 Subject: [Koha-bugs] [Bug 35370] There should be a system preference to disable checking for holds when issuing an item In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35370 --- Comment #4 from Mike Barrette --- We are interested in this at OSLRI as well. As long as the hold Koha is warning about is not an already waiting hold for another patron. We would still want the warning if a waiting hold is checked out to a different patron (family member pickup), with options to cancel or revert waiting status. -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Wed Mar 13 21:54:39 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 13 Mar 2024 20:54:39 +0000 Subject: [Koha-bugs] [Bug 33462] Force password change for new patrons entered by staff In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33462 --- Comment #21 from Christopher Brannon --- We seem to have lost Sam on this conversation. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Mar 13 22:25:37 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 13 Mar 2024 21:25:37 +0000 Subject: [Koha-bugs] [Bug 36101] Deleting an item removes the itemnumber from old_reserves when it should not In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36101 Lucas Gass changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Needs Signoff |Signed Off -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Mar 13 22:25:39 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 13 Mar 2024 21:25:39 +0000 Subject: [Koha-bugs] [Bug 36101] Deleting an item removes the itemnumber from old_reserves when it should not In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36101 Lucas Gass changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #163087|0 |1 is obsolete| | --- Comment #2 from Lucas Gass --- Created attachment 163119 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163119&action=edit Bug 36101: Drop constraint to items.itemnumber from old_reserves-table Signed-off-by: Lucas Gass -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Mar 13 22:25:42 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 13 Mar 2024 21:25:42 +0000 Subject: [Koha-bugs] [Bug 36101] Deleting an item removes the itemnumber from old_reserves when it should not In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36101 --- Comment #3 from Lucas Gass --- Created attachment 163120 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163120&action=edit Bug 36101: (follow-up) Fix DBUpdate file permission and perltidy Signed-off-by: Lucas Gass -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Mar 13 22:26:44 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 13 Mar 2024 21:26:44 +0000 Subject: [Koha-bugs] [Bug 22403] Temporary Card In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=22403 Dave changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |ddaghita at mckinneytexas.org -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Mar 13 22:27:02 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 13 Mar 2024 21:27:02 +0000 Subject: [Koha-bugs] [Bug 36271] Bookings should respect circulation rules for max loan periods In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36271 Kristi changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |kkrueger at cuyahogalibrary.or | |g --- Comment #3 from Kristi --- For us (one of the ByWater libraries), we would picture this as tied in to the circulation rules for item types. We have item types set up for the portions of our collection that can be booked. A kit that staff book for story hours, for example, has an item type of Staff Program Support and that item type has its own circ period (1 day plus built in prep time from the booking module) and number of renewals allowed (0). -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Mar 13 22:27:27 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 13 Mar 2024 21:27:27 +0000 Subject: [Koha-bugs] [Bug 36101] Deleting an item removes the itemnumber from old_reserves when it should not In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36101 Lucas Gass changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |lucas at bywatersolutions.com --- Comment #4 from Lucas Gass --- Looks good, I added a follow to fix the file permission for installer/data/mysql/atomicupdate/bug_36101.pl and perltidy. -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Wed Mar 13 22:29:36 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 13 Mar 2024 21:29:36 +0000 Subject: [Koha-bugs] [Bug 36302] Patron search from search bar broken In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36302 Lucas Gass changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Needs Signoff |Signed Off -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Mar 13 22:29:39 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 13 Mar 2024 21:29:39 +0000 Subject: [Koha-bugs] [Bug 36302] Patron search from search bar broken In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36302 Lucas Gass changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #163113|0 |1 is obsolete| | --- Comment #22 from Lucas Gass --- Created attachment 163121 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163121&action=edit Bug 36302: Revert back to POST Pass the csrf token and 'cud-noop' After having discussed with Joubu and multiple failed attempts at fixing the issue AND restoring previous behavior, this is the fix we agreed on. This will change URL but not fiddle with browser history. Works the same (and as expected) in both Chrome and Firefox Test plan, ktd: 1) Search henry on the top search bar, notice 1 result is auto suggested 2) Ignore the auto-complete, press 'Enter' instead 3) Notice no results are returned. 4) Apply patch. Repeat. 5) Notice you get redirected to the single result of henry 6) Press the browser 'back' button and notice it works as expected (both Chrome+Firefox) 7) Visit patrons home directly: http://localhost:8081/cgi-bin/koha/members/members-home.pl 8) Notice no search is performed Signed-off-by: Lucas Gass -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Wed Mar 13 22:40:45 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Wed, 13 Mar 2024 21:40:45 +0000 Subject: [Koha-bugs] [Bug 36233] Cannot search invoices if too many vendors In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36233 Victor Grousset/tuxayo changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Signed Off |Failed QA --- Comment #10 from Victor Grousset/tuxayo --- commit: > Fix width and enable clear option Unfortunately that sets in stone the width at page load. Any resizing of the width of the page will have the Vendor stay at > the same width while the other filter are responsive. Set to 100%, this seems to work > > > 8 - Note only a partial list of vendors is loaded, confirm current vendor still selected > > No, all my 31 vendors are there. Any additional reproduction step? What is your RESTDefaltPageSize? The vendors can all be scrolled, however, if you watch the network tab in the console, you will see there is a paged request for vendors as you scroll > > > In a system with many vendors this can cause slowness or crashes. > > Neither a sign of that on my slowass PC 🐌 Yes, we have a site with ~270k vendors - I tested with 500 and noticed a wait :-) -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 14 12:08:42 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 14 Mar 2024 11:08:42 +0000 Subject: [Koha-bugs] [Bug 35138] Elastic search - add new facets In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35138 --- Comment #2 from Jonathan Druart --- (In reply to Jonathan Druart from comment #1) > Still no translatability however. Translating using JS should be trivial as there will be an id on the label: facets.inc [% facets_loo.label | html %] -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Thu Mar 14 13:33:09 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 14 Mar 2024 12:33:09 +0000 Subject: [Koha-bugs] [Bug 36314] koha-email-disable does not disable all emails In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36314 --- Comment #2 from Tomás Cohen Arazi --- `koha-email-{enabled|disable}` is only used by `koha-list`. I'm not sure what's the best approach to this. We could have a syspref instead of email.enabled. -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 14 14:10:19 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 14 Mar 2024 13:10:19 +0000 Subject: [Koha-bugs] [Bug 36318] New: Patrons searching Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36318 Bug ID: 36318 Summary: Patrons searching Change sponsored?: --- Product: Project Infrastructure Version: unspecified Hardware: All OS: All Status: NEW Severity: enhancement Priority: P5 - low Component: QA tools Assignee: jonathan.druart at gmail.com Reporter: sistemak.medialab at tabakalera.eus Hi, I write from a library from Spain. Here we use two family names "Firstname and Surnames (2 family names). For example Isabel Ruiperez Alcaraz. In the new version, it can't search the patron only since the second surname "Alcaraz" Anybody knows how do it? L. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 14 14:11:14 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 14 Mar 2024 13:11:14 +0000 Subject: [Koha-bugs] [Bug 35558] Do not fetch local image if none exists In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35558 --- Comment #17 from Didier Gautheron --- Same is need for OPAC -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 14 14:17:02 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 14 Mar 2024 13:17:02 +0000 Subject: [Koha-bugs] [Bug 36306] Make Koha UserName configurable how it is created In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36306 hebah at bywatersolutions.com changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |hebah at bywatersolutions.com -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 14 14:42:41 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 14 Mar 2024 13:42:41 +0000 Subject: [Koha-bugs] [Bug 36277] t/db_dependent/api/v1/transfer_limits.t is failing In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36277 Jonathan Druart changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |Needs Signoff -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 14 14:42:44 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 14 Mar 2024 13:42:44 +0000 Subject: [Koha-bugs] [Bug 36277] t/db_dependent/api/v1/transfer_limits.t is failing In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36277 --- Comment #7 from Jonathan Druart --- Created attachment 163134 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163134&action=edit Bug 36277: Do not fetch the whole library list -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 14 14:42:46 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 14 Mar 2024 13:42:46 +0000 Subject: [Koha-bugs] [Bug 36277] t/db_dependent/api/v1/transfer_limits.t is failing In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36277 --- Comment #8 from Jonathan Druart --- Created attachment 163135 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163135&action=edit Bug 36277: Improve algorithmic complexity of batch_add The 2 nested loops are terrible in term of algorithmic complexity. Especially if we are fetching from there. The goal of this patch is to fetch all the limits outside of the loop. If you have 100 libraries, it will remove 100^2 - 1 fetches! -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 14 14:45:19 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 14 Mar 2024 13:45:19 +0000 Subject: [Koha-bugs] [Bug 36277] t/db_dependent/api/v1/transfer_limits.t is failing In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36277 --- Comment #9 from Jonathan Druart --- This certainly arises because one of the tests does not clean correctly behind it. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 14 14:45:22 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 14 Mar 2024 13:45:22 +0000 Subject: [Koha-bugs] [Bug 36277] t/db_dependent/api/v1/transfer_limits.t is failing In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36277 Jonathan Druart changed: What |Removed |Added ---------------------------------------------------------------------------- Assignee|chris at bigballofwax.co.nz |jonathan.druart at gmail.com -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 14 14:49:06 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 14 Mar 2024 13:49:06 +0000 Subject: [Koha-bugs] [Bug 36318] Patrons searching In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36318 Jonathan Druart changed: What |Removed |Added ---------------------------------------------------------------------------- Resolution|--- |DUPLICATE Status|NEW |RESOLVED --- Comment #1 from Jonathan Druart --- Hola, Have a look at bug 33117 and the new syspref DefaultPatronSearchMethod. You may want to update its value to "contains". *** This bug has been marked as a duplicate of bug 33117 *** -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 14 14:49:06 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 14 Mar 2024 13:49:06 +0000 Subject: [Koha-bugs] [Bug 33117] Patron checkout search not working if searching with second surname In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33117 Jonathan Druart changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |sistemak.medialab at tabakaler | |a.eus --- Comment #72 from Jonathan Druart --- *** Bug 36318 has been marked as a duplicate of this bug. *** -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 14 14:55:53 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 14 Mar 2024 13:55:53 +0000 Subject: [Koha-bugs] [Bug 35703] Marking Lost card does not prevent patron from placing holds In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35703 --- Comment #1 from Kristi --- After speaking with Nick at ByWater, part of the issue with the lost/stolen setting is that it needs to work better with the API. The hold check needs to be the same on the OPAC and API. -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Thu Mar 14 15:01:26 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 14 Mar 2024 14:01:26 +0000 Subject: [Koha-bugs] [Bug 36319] New: Splitting a single item between multiple funds Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36319 Bug ID: 36319 Summary: Splitting a single item between multiple funds Change sponsored?: --- Product: Koha Version: 23.05 Hardware: All OS: All Status: NEW Severity: enhancement Priority: P5 - low Component: Acquisitions Assignee: koha-bugs at lists.koha-community.org Reporter: liberm at uhv.edu QA Contact: testopia at bugs.koha-community.org Periodically we run into instances where we need to split the cost of a book or database between two funds. Currently this is not possible in Koha and so we add and subtract money from funds to get the money to match, but it doesn't allow us to track the actuality of how the money was spent for reporting purposes. -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 14 15:02:21 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 14 Mar 2024 14:02:21 +0000 Subject: [Koha-bugs] [Bug 35558] Do not fetch local image if none exists In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35558 --- Comment #18 from Jonathan Druart --- Created attachment 163136 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163136&action=edit Bug 35558: Do not retrieve the local image if none exists - OPAC -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 14 15:06:42 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 14 Mar 2024 14:06:42 +0000 Subject: [Koha-bugs] [Bug 36301] Patron search is searching on attribute types even if a specific non attribute type search field is selected In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36301 Jonathan Druart changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |jonathan.druart at gmail.com --- Comment #1 from Jonathan Druart --- I don't understand, please provide more detail. The non-searchable patron attributes are not listed. Are you talking about the REST API endpoint? -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 14 15:20:49 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 14 Mar 2024 14:20:49 +0000 Subject: [Koha-bugs] [Bug 36320] New: Clicking Edit items from catalogue/detail.pl leads to 'Add item' screen Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36320 Bug ID: 36320 Summary: Clicking Edit items from catalogue/detail.pl leads to 'Add item' screen Change sponsored?: --- Product: Koha Version: master Hardware: All OS: All Status: NEW Severity: normal Priority: P5 - low Component: Cataloging Assignee: koha-bugs at lists.koha-community.org Reporter: lucas at bywatersolutions.com QA Contact: testopia at bugs.koha-community.org CC: m.de.rooy at rijksmuseum.nl To recreate: 1. Find a record with more than 1 items attached. 2. From catalogue/detail.pl click the 'Edit' button in the toolbar to activate the dropdown. 3. Click 'Edit items'. 4. This cannot direct the user to any particular item to edit because Koha doesn't know which item you want to edit at this point. If there is a single item this should direct the user straight to an 'Edit item'. If a record has many items maybe a blank screen ( no Add Item ) would be less confusing? -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 14 15:41:52 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 14 Mar 2024 14:41:52 +0000 Subject: [Koha-bugs] [Bug 36139] Bug 35518 follow-up: fix AutoSwitchPatron In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36139 Jonathan Druart changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |jonathan.druart at gmail.com --- Comment #2 from Jonathan Druart --- Is this ready for signoff? -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 14 15:42:42 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 14 Mar 2024 14:42:42 +0000 Subject: [Koha-bugs] [Bug 36320] Clicking Edit items from catalogue/detail.pl leads to 'Add item' screen In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36320 Lucas Gass changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |oleonard at myacpl.org -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 14 15:49:45 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 14 Mar 2024 14:49:45 +0000 Subject: [Koha-bugs] [Bug 34478] Full CSRF protection In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=34478 --- Comment #187 from Jonathan Druart --- *** Bug 35677 has been marked as a duplicate of this bug. *** -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 14 15:51:19 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 14 Mar 2024 14:51:19 +0000 Subject: [Koha-bugs] [Bug 34478] Full CSRF protection In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=34478 Jonathan Druart changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |amitddng135 at gmail.com --- Comment #188 from Jonathan Druart --- *** Bug 19645 has been marked as a duplicate of this bug. *** -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 14 15:51:25 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 14 Mar 2024 14:51:25 +0000 Subject: [Koha-bugs] [Bug 34478] Full CSRF protection In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=34478 --- Comment #189 from Jonathan Druart --- *** Bug 22314 has been marked as a duplicate of this bug. *** -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 14 15:51:38 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 14 Mar 2024 14:51:38 +0000 Subject: [Koha-bugs] [Bug 34478] Full CSRF protection In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=34478 --- Comment #190 from Jonathan Druart --- *** Bug 23060 has been marked as a duplicate of this bug. *** -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 14 15:51:45 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 14 Mar 2024 14:51:45 +0000 Subject: [Koha-bugs] [Bug 34478] Full CSRF protection In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=34478 --- Comment #191 from Jonathan Druart --- *** Bug 34111 has been marked as a duplicate of this bug. *** -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 14 15:51:50 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 14 Mar 2024 14:51:50 +0000 Subject: [Koha-bugs] [Bug 34478] Full CSRF protection In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=34478 Jonathan Druart changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |anuragmewar at gmail.com --- Comment #192 from Jonathan Druart --- *** Bug 23238 has been marked as a duplicate of this bug. *** -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 14 15:52:18 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 14 Mar 2024 14:52:18 +0000 Subject: [Koha-bugs] [Bug 34478] Full CSRF protection In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=34478 --- Comment #193 from Jonathan Druart --- *** Bug 30502 has been marked as a duplicate of this bug. *** -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 14 15:52:28 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 14 Mar 2024 14:52:28 +0000 Subject: [Koha-bugs] [Bug 36318] Patrons searching In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36318 --- Comment #2 from lmitxelena --- Thank you Jonathan, the bug that you mentions, answers the question. Leire -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 14 15:53:56 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 14 Mar 2024 14:53:56 +0000 Subject: [Koha-bugs] [Bug 34270] Upgrade and prune jQueryUI assets in the staff interface In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=34270 Jonathan Druart changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |dudzikmichal at wp.pl --- Comment #8 from Jonathan Druart --- *** Bug 35046 has been marked as a duplicate of this bug. *** -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 14 15:59:15 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 14 Mar 2024 14:59:15 +0000 Subject: [Koha-bugs] [Bug 36302] Patron search from search bar broken In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36302 --- Comment #25 from Nick Clemens --- (In reply to Jonathan Druart from comment #24) > I am sorry but... I am still getting the redirect to the patron detail page > after hitting the back button. > > BUT I have tried v23.11.00 and it behaving like that as well. > > Sure I tried yesterday a pre-csrf and it works "working" (no redirect). > > David, what did you notice during your testing session? I tested this a bit today, there are slightly different results when searching from mainpage vs members-home - the former using patron-search-box the latter member-search-box. Some of this is covered by discussion, just highlighting it all together >From mainpage the url is: http://localhost:8081/cgi-bin/koha/members/member.pl?quicksearch=1&circsearch=1&searchmember=henry >From members-home the url is: http://localhost:8081/cgi-bin/koha/members/member.pl?quicksearch=1&searchmember=henry&searchfieldstype=standard&searchtype=starts_with&branchcode_filter=&categorycode_filter= circsearch makes the difference in that without that, the table is blank, this seems to be from defer_loading which prevents the form submission Chrome and Firefox behave differently because it seems Chrome/Edge is designed to prevent a redirect when clicking back - Firefox does not do this When the patch changes from GET to POST this effects the defer_loading variable so really seems to be effectively the same as the initial patch. My only thought has been to store the initial page or pass it through as a variable, and offer a "Back to {page}" link on the patron screen -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 14 16:02:09 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 14 Mar 2024 15:02:09 +0000 Subject: [Koha-bugs] [Bug 36301] Patron search is searching on attribute types even if a specific non attribute type search field is selected In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36301 --- Comment #2 from Pedro Amorim --- This is a bug Jake discovered and we were looking at it together but when coming up with a test plan for it we found bug 36302. We tried reproducing this again but weren't able to anymore. There appears to be something funky going on but I'll try to come back to it if/when we can reproduce it again. -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Thu Mar 14 16:04:01 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 14 Mar 2024 15:04:01 +0000 Subject: [Koha-bugs] [Bug 36297] Avoid using var named "t" in templates In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36297 --- Comment #3 from Pedro Amorim --- (In reply to Kyle M Hall from comment #2) > (In reply to Pedro Amorim from comment #1) > > This may be a non-issue (?) if it is indeed a template toolkit bug and it > > gets fixed upstream, the problem is that the value of 't' persists even > > after the end of the loop. > > Having said that, we may also just decide that using 't' as a variable name > > (anywhere) in TT is bad practice, because it may conflict with the > > translation method 't' we use. > > I don't think we can count on this being fixed upstream any time soon. I > think it's reasonable for use to fix the existing instances and perhaps add > a unit test to grep for "FOREACH t IN" in all our templates. +1 -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 14 16:21:14 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 14 Mar 2024 15:21:14 +0000 Subject: [Koha-bugs] [Bug 36297] Avoid using var named "t" in templates In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36297 Julian Maurice changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |julian.maurice at biblibre.com --- Comment #4 from Julian Maurice --- Remember that there is also 'tn', 'tnx', ... (exhaustive list in i18n.inc). Also FOREACH is probably not the only way to "hide" these macros (for instance [% t = ... %] or [% WHILE (t = ...) %] probably does the same thing) Another solution could be to remove i18n.inc, forcing us to use [% I18N.t("...") %] which is unlikely to conflict with other variables. Or another (but hypothetical as I'm not sure it works): redefine these functions as filters [% "..." | t %] (I believe filters don't conflict with variable names ?) -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 14 16:33:50 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 14 Mar 2024 15:33:50 +0000 Subject: [Koha-bugs] [Bug 36321] New: Problem when dateexpiry in BorrowerUnwantedField Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36321 Bug ID: 36321 Summary: Problem when dateexpiry in BorrowerUnwantedField Change sponsored?: --- Product: Koha Version: master Hardware: All OS: All Status: NEW Severity: normal Priority: P5 - low Component: Patrons Assignee: koha-bugs at lists.koha-community.org Reporter: fridolin.somers at biblibre.com QA Contact: testopia at bugs.koha-community.org CC: gmcharlt at gmail.com, kyle.m.hall at gmail.com When dateexpiry is in BorrowerUnwantedField it is hidden in patron edition form. The problem is when editing an existing patron the value is re-computed with category settings, as if it where empty. -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Thu Mar 14 16:36:20 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 14 Mar 2024 15:36:20 +0000 Subject: [Koha-bugs] [Bug 36321] Problem when dateexpiry in BorrowerUnwantedField In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36321 Fridolin Somers changed: What |Removed |Added ---------------------------------------------------------------------------- Assignee|koha-bugs at lists.koha-commun |fridolin.somers at biblibre.co |ity.org |m Status|NEW |ASSIGNED -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Thu Mar 14 16:43:21 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 14 Mar 2024 15:43:21 +0000 Subject: [Koha-bugs] [Bug 36321] Problem when dateexpiry in BorrowerUnwantedField In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36321 Fridolin Somers changed: What |Removed |Added ---------------------------------------------------------------------------- Status|ASSIGNED |Needs Signoff Patch complexity|--- |Trivial patch -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 14 16:43:23 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 14 Mar 2024 15:43:23 +0000 Subject: [Koha-bugs] [Bug 36321] Problem when dateexpiry in BorrowerUnwantedField In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36321 --- Comment #1 from Fridolin Somers --- Created attachment 163137 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163137&action=edit Bug 36321: Problem when dateexpiry in BorrowerUnwantedField hen dateexpiry is in BorrowerUnwantedField it is hidden in patron edition form. The problem is when editing an existing patron the value is re-computed with category settings, as if it where empty. This comes from all fields in BorrowerUnwantedField beeing removed from %newdata in memberentry.pl. Whe must skip dateexpiry. Test plan : 1) Be sure dateexpiry is not in BorrowerUnwantedField 2) Define a patron category with enrollment period 12 month 3) Create a new patron in this category 4) Its expiration date is in now + 12 month 5) Edit the patron category to set enrollment period 6 month 6) Add dateexpiry in BorrowerUnwantedField 7) Edit the patron and save => Without patch the expiration date is changed to now + 6 month => With patch the exporation date is unchanged -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 14 16:58:06 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 14 Mar 2024 15:58:06 +0000 Subject: [Koha-bugs] [Bug 36302] Patron search from search bar broken In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36302 --- Comment #26 from Jonathan Druart --- Ha good catch! There is another form to adjust! -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 14 16:59:16 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 14 Mar 2024 15:59:16 +0000 Subject: [Koha-bugs] [Bug 36302] Patron search from search bar broken In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36302 --- Comment #27 from Jonathan Druart --- (In reply to Jonathan Druart from comment #26) > Ha good catch! There is another form to adjust! Absolutely not! -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 14 17:01:10 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 14 Mar 2024 16:01:10 +0000 Subject: [Koha-bugs] [Bug 36302] Patron search from search bar broken In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36302 --- Comment #28 from Jonathan Druart --- Nick, do you know what is the behaviour in stable branches? -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 14 17:02:30 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 14 Mar 2024 16:02:30 +0000 Subject: [Koha-bugs] [Bug 36277] t/db_dependent/api/v1/transfer_limits.t is failing In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36277 Tomás Cohen Arazi changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |tomascohen at gmail.com --- Comment #10 from Tomás Cohen Arazi --- We overlapped here. Nice to see patches, though. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 14 17:06:47 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 14 Mar 2024 16:06:47 +0000 Subject: [Koha-bugs] [Bug 35138] Elastic search - add new facets In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35138 --- Comment #3 from Michaela Sieber --- Thanks Jonathan for your proof of concept. We testet the patch that uses an authorized value for the configuration of ElasticSearch facets. Everything in the patch worked as expected. -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Thu Mar 14 17:07:03 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 14 Mar 2024 16:07:03 +0000 Subject: [Koha-bugs] [Bug 36302] Patron search from search bar broken In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36302 --- Comment #29 from Nick Clemens --- (In reply to Jonathan Druart from comment #28) > Nick, do you know what is the behaviour in stable branches? On a 23.05 site In firefox I get redirected to patron if I hit back In chrome I get the member search with no results when I hit back after searching for a patron from the members module If I perform a checkout search from anywhere else, back takes me to the original page, i.e. Serials home -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 14 17:36:35 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 14 Mar 2024 16:36:35 +0000 Subject: [Koha-bugs] [Bug 36320] Clicking Edit items from catalogue/detail.pl leads to 'Add item' screen In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36320 Andrew Fuerste-Henry changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |andrewfh at dubcolib.org --- Comment #1 from Andrew Fuerste-Henry --- This behavior is so long-standing that I'm a little hesitant to change it. But on the other hand I've definitely trained librarians to ignore the "Edit items" button exactly because the behavior is not what one might want/expect. I agree that for a bib with just 1 item, it makes sense to assume a click on "Edit items" should edit the one available item. A blank screen when one clicks Edit Items on a record with multiple items makes sense to me. The change might be disruptive. -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 14 17:45:13 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 14 Mar 2024 16:45:13 +0000 Subject: [Koha-bugs] [Bug 36321] Problem when dateexpiry in BorrowerUnwantedField In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36321 ByWater Sandboxes changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #163137|0 |1 is obsolete| | --- Comment #2 from ByWater Sandboxes --- Created attachment 163144 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163144&action=edit Bug 36321: Problem when dateexpiry in BorrowerUnwantedField hen dateexpiry is in BorrowerUnwantedField it is hidden in patron edition form. The problem is when editing an existing patron the value is re-computed with category settings, as if it where empty. This comes from all fields in BorrowerUnwantedField beeing removed from %newdata in memberentry.pl. Whe must skip dateexpiry. Test plan : 1) Be sure dateexpiry is not in BorrowerUnwantedField 2) Define a patron category with enrollment period 12 month 3) Create a new patron in this category 4) Its expiration date is in now + 12 month 5) Edit the patron category to set enrollment period 6 month 6) Add dateexpiry in BorrowerUnwantedField 7) Edit the patron and save => Without patch the expiration date is changed to now + 6 month => With patch the exporation date is unchanged Signed-off-by: Andrew Fuerste-Henry -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 14 18:02:56 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 14 Mar 2024 17:02:56 +0000 Subject: [Koha-bugs] [Bug 36139] Bug 35518 follow-up: fix AutoSwitchPatron In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36139 Michael Hafen changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |Needs Signoff --- Comment #3 from Michael Hafen --- Yes, sorry. I'll change the status. -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 14 19:10:16 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 14 Mar 2024 18:10:16 +0000 Subject: [Koha-bugs] [Bug 35143] Add hooks for status changes to ILL requests to send_staff_notice In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35143 Marie-Luce Laflamme changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |marie-luce.laflamme at inlibro | |.com --- Comment #1 from Marie-Luce Laflamme --- Yes, it would be great to send an email to the library whenever there's a new ILL request. It could also be useful to add an alert next to the 'new suggestion pending' warning on the staff lending page. -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 14 19:50:02 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 14 Mar 2024 18:50:02 +0000 Subject: [Koha-bugs] [Bug 35143] Add hooks for status changes to ILL requests to send_staff_notice In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35143 --- Comment #2 from Marie-Luce Laflamme --- Suggestion of a test plan Required settings Enable the native ILL module and the necessary backend code before testing. Test plan 1- Created a new ILL_NEW_REQUEST template in (tools > Notices & slips) e.g. template code: ILL_NEW_REQUEST and message like: "A new interlibrary loan request from a patron is awaiting for approval. Request ID [% illrequest.illrequest_id %] . Please review this request: [% ill_full_metadata %]" 2- Add ILL template codes in the system preference "ILLSendStaffNotices" ILL_REQUEST_CANCEL|ILL_REQUEST_MODIFIED||ILL_NEW_REQUEST 3- Add your email in the system preference "ILLDefaultStaffEmail" 4- Login in to the OPAC 5- Go to the «Interlibrary request» section 6- Place a request 7- Check the message_queue in a terminal ---> At the moment, Koha is not generating the "ILL_NEW_REQUEST" email (issue) ---> it should be added to the message_queue 8- Return to the OPAC 9- Modify the ILL request and save the changes 10- Check your email inbox --> Koha is sending correctly the ILL_REQUEST_MODIFIED email to staff 11- Go back to the OPAC and cancel the ILLrequest. 12- Check your email inbox --> Koha is sending correctly the ILL_REQUEST_CANCEL email to staff -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 14 19:58:23 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 14 Mar 2024 18:58:23 +0000 Subject: [Koha-bugs] [Bug 36321] Problem when dateexpiry in BorrowerUnwantedField In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36321 Andrew Fuerste-Henry changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Needs Signoff |Signed Off CC| |andrewfh at dubcolib.org -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 14 20:11:27 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 14 Mar 2024 19:11:27 +0000 Subject: [Koha-bugs] [Bug 36324] New: Authority subfields cannot be reordered Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36324 Bug ID: 36324 Summary: Authority subfields cannot be reordered Change sponsored?: --- Product: Koha Version: 23.11 Hardware: All OS: All Status: NEW Severity: enhancement Priority: P5 - low Component: Cataloging Assignee: koha-bugs at lists.koha-community.org Reporter: esther.melander at bywatersolutions.com QA Contact: testopia at bugs.koha-community.org CC: m.de.rooy at rijksmuseum.nl According to bug 34114, authority subfields should be able to be reordered when editing. That function seems to be broken and the fields cannot be reordered. When clicking on a subfield, a box appears that allows me to edit the subfield letter/number instead. I would think the ability to edit the subfield letter/number in the authority editor could be problematic. The ability to sort the fields by clicking and dragging was existing behavior and should be restored. -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Thu Mar 14 20:12:23 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 14 Mar 2024 19:12:23 +0000 Subject: [Koha-bugs] [Bug 32381] Koha should be able to receive and record reasons for failed SMS notices In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=32381 Kyle M Hall changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution|--- |DUPLICATE CC| |kyle at bywatersolutions.com --- Comment #4 from Kyle M Hall --- *** This bug has been marked as a duplicate of bug 36307 *** -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 14 20:12:23 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 14 Mar 2024 19:12:23 +0000 Subject: [Koha-bugs] [Bug 36307] SMS::Send driver errors are not captured and stored In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36307 Kyle M Hall changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |andrewfh at dubcolib.org --- Comment #2 from Kyle M Hall --- *** Bug 32381 has been marked as a duplicate of this bug. *** -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 14 20:16:06 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 14 Mar 2024 19:16:06 +0000 Subject: [Koha-bugs] [Bug 34643] Split CircConfirmItemParts for self-checkout and self-checkin In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=34643 Victor Grousset/tuxayo changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #159113|0 |1 is obsolete| | --- Comment #6 from Victor Grousset/tuxayo --- Created attachment 163145 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163145&action=edit Bug 34643: Split CircConfirmItemParts for self-checkout and self-checkin Many libraries wish to be able to allow self-check for multi-part items while requesting librarians to verify the parts when checking out/in at the desk. It makes sense to split CircConfirmItemParts into three prefs such that the feature can be enabled/disabled for SCO and SCI independently. Test Plan: 1) Apply this patch 2) Enable SCO and SCI 3) Set CircConfirmItemPartsSCO to "Don't allow" 4) Attempt to checkout out an item with materials via SCO, it should fail 5) Set CircConfirmItemPartsSCO to "Allow" 6) Repeat step 4, it should succeed 7) Set CircConfirmItemPartsSCI to "Don't allow" 8) Attempt to check in the item via SCI, it should fail 9) Attempt to check in the item via SCO, it should fail 9) Set CircConfirmItemPartsSCI to "Allow" 10) Attempt to check in the item via SCO and SCI, it should succeed! Signed-off-by: AFHDubCoLib -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 14 20:18:46 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 14 Mar 2024 19:18:46 +0000 Subject: [Koha-bugs] [Bug 34643] Split CircConfirmItemParts for self-checkout and self-checkin In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=34643 --- Comment #7 from Victor Grousset/tuxayo --- Is that something we usually do to not have some sysprefs in installer/data/mysql/mandatory/sysprefs.sql ? When their default value is 0. It's not mentioned here: https://wiki.koha-community.org/wiki/System_Preferences#Adding_a_new_system_preference --- Amended the patch for minor tidying. --- Otherwise, code looks good. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 14 20:23:29 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 14 Mar 2024 19:23:29 +0000 Subject: [Koha-bugs] [Bug 34643] Split CircConfirmItemParts for self-checkout and self-checkin In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=34643 Victor Grousset/tuxayo changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |victor at tuxayo.net Status|Signed Off |Failed QA --- Comment #8 from Victor Grousset/tuxayo --- (In reply to Victor Grousset/tuxayo from comment #7) > Is that something we usually do to not have some sysprefs in > installer/data/mysql/mandatory/sysprefs.sql ? > When their default value is 0. Confirmed that is an issue: Bug 34979 -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Thu Mar 14 20:59:59 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Thu, 14 Mar 2024 19:59:59 +0000 Subject: [Koha-bugs] [Bug 36233] Cannot search invoices if too many vendors In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36233 --- Comment #13 from Victor Grousset/tuxayo --- > Set to 100%, this seems to work great, indeed, thanks :) > What is your RESTDefaltPageSize? The vendors can all be scrolled, however, if you watch the network tab in the console, you will see there is a paged request for vendors as you scroll I got confused, I though it was without patch and part of the issue. It works, I see the lazy loading when scrolling down, nice :) > Yes, we have a site with ~270k vendors 270k 🤯 Ok, then no need to witness it to confirm that this will fix issues. I can't imagine the HTML size for the % .1f linked to 0.00 ? -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 15 11:32:08 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 15 Mar 2024 10:32:08 +0000 Subject: [Koha-bugs] [Bug 35087] Discount rate does not accept comma as decimal separator In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35087 Marcel de Rooy changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Signed Off |Failed QA --- Comment #32 from Marcel de Rooy --- We have 3 patches. And later patches revert stuff from earlier ones. Please squash, explain, fix ? -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 15 11:32:18 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 15 Mar 2024 10:32:18 +0000 Subject: [Koha-bugs] [Bug 35087] Discount rate does not accept comma as decimal separator In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35087 Marcel de Rooy changed: What |Removed |Added ---------------------------------------------------------------------------- QA Contact|martin.renvoize at ptfs-europe |m.de.rooy at rijksmuseum.nl |.com | -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 15 11:36:04 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 15 Mar 2024 10:36:04 +0000 Subject: [Koha-bugs] [Bug 36277] t/db_dependent/api/v1/transfer_limits.t is failing In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36277 Martin Renvoize changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #163134|0 |1 is obsolete| | --- Comment #14 from Martin Renvoize --- Created attachment 163189 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163189&action=edit Bug 36277: Do not fetch the whole library list Signed-off-by: Martin Renvoize -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 15 11:36:07 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 15 Mar 2024 10:36:07 +0000 Subject: [Koha-bugs] [Bug 36277] t/db_dependent/api/v1/transfer_limits.t is failing In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36277 Martin Renvoize changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #163135|0 |1 is obsolete| | --- Comment #15 from Martin Renvoize --- Created attachment 163190 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163190&action=edit Bug 36277: Improve algorithmic complexity of batch_add The 2 nested loops are terrible in term of algorithmic complexity. Especially if we are fetching from there. The goal of this patch is to fetch all the limits outside of the loop. If you have 100 libraries, it will remove 100^2 - 1 fetches! Signed-off-by: Martin Renvoize -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 15 11:36:22 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 15 Mar 2024 10:36:22 +0000 Subject: [Koha-bugs] [Bug 36277] t/db_dependent/api/v1/transfer_limits.t is failing In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36277 Martin Renvoize changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |martin.renvoize at ptfs-europe | |.com QA Contact|testopia at bugs.koha-communit |martin.renvoize at ptfs-europe |y.org |.com -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 15 11:37:19 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 15 Mar 2024 10:37:19 +0000 Subject: [Koha-bugs] [Bug 36277] t/db_dependent/api/v1/transfer_limits.t is failing In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36277 Martin Renvoize changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Signed Off |Passed QA --- Comment #16 from Martin Renvoize --- Wow, this is really quite a considerable improvement in my opinion. Code is clear to me and tests continue to pass before and after.. and pass consistently after too when I put the system under load now. Thanks Jonathan. Passing QA -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 15 11:38:59 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 15 Mar 2024 10:38:59 +0000 Subject: [Koha-bugs] [Bug 36328] New: C4::Scrubber should allow more html tags Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36328 Bug ID: 36328 Summary: C4::Scrubber should allow more html tags Change sponsored?: --- Product: Koha Version: unspecified Hardware: All OS: All Status: ASSIGNED Severity: enhancement Priority: P5 - low Component: Architecture, internals, and plumbing Assignee: jonathan.druart at gmail.com Reporter: jonathan.druart at gmail.com QA Contact: testopia at bugs.koha-community.org Should not we allow span, div, etc. as well as existing "br b i em big small strong"? -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 15 11:40:04 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 15 Mar 2024 10:40:04 +0000 Subject: [Koha-bugs] [Bug 29539] UNIMARC: authority number in $9 displays for thesaurus controlled fields instead of content of $a In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29539 Marcel de Rooy changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Signed Off |Passed QA -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 15 11:40:06 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 15 Mar 2024 10:40:06 +0000 Subject: [Koha-bugs] [Bug 29539] UNIMARC: authority number in $9 displays for thesaurus controlled fields instead of content of $a In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29539 Marcel de Rooy changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #161768|0 |1 is obsolete| | --- Comment #23 from Marcel de Rooy --- Created attachment 163191 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163191&action=edit Bug 29539: UNIMARC: authority number in $9 displays for thesaurus controlled fields instead of content of $a When you try to dislpay a bibliographic record on unimarc that has subjects linked with authorities then only the $9 is displayed as link instead of the content of $a and it's subdivisions, if any. To test: 1) You will need to have a bibliographic record with at least one subject autority connected in unimarc framework. 2) View that record on OPAC on detail display. The subject will display as a number ( $9 ) and you cannot see the text/term of the subject ( $a ) 3) Apply patch 4) Repeat step 2 5) The subject display in a normal way based on content $a - or more subfields Sponsored-by: National Library of Greece Signed-off-by: David Nind Bug 29539: (follow-up) remove tag_onesubject template Also: Restores the Replaces "not(position()=last())" with the more used "position() != last()" Removes unecessary change in Signed-off-by: David Nind Signed-off-by: Marcel de Rooy -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 15 11:41:31 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 15 Mar 2024 10:41:31 +0000 Subject: [Koha-bugs] [Bug 36328] C4::Scrubber should allow more html tags In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36328 Jonathan Druart changed: What |Removed |Added ---------------------------------------------------------------------------- Status|ASSIGNED |Needs Signoff -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 15 11:41:33 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 15 Mar 2024 10:41:33 +0000 Subject: [Koha-bugs] [Bug 36328] C4::Scrubber should allow more html tags In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36328 --- Comment #1 from Jonathan Druart --- Created attachment 163192 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163192&action=edit Bug 36328: Add p span div to Scrubber -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 15 11:41:36 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 15 Mar 2024 10:41:36 +0000 Subject: [Koha-bugs] [Bug 36328] C4::Scrubber should allow more html tags In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36328 --- Comment #2 from Jonathan Druart --- Created attachment 163193 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163193&action=edit Bug 36328: Add test -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 15 11:45:41 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 15 Mar 2024 10:45:41 +0000 Subject: [Koha-bugs] [Bug 36327] Items view - Deletion of items is broken In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36327 Pedro Amorim changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |ASSIGNED Assignee|koha-bugs at lists.koha-commun |pedro.amorim at ptfs-europe.co |ity.org |m -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 15 11:46:35 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 15 Mar 2024 10:46:35 +0000 Subject: [Koha-bugs] [Bug 36328] C4::Scrubber should allow more html tags In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36328 Jonathan Druart changed: What |Removed |Added ---------------------------------------------------------------------------- Blocks| |19613 -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 15 11:48:46 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 15 Mar 2024 10:48:46 +0000 Subject: [Koha-bugs] [Bug 36302] Patron search from search bar broken In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36302 Julian Maurice changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |julian.maurice at biblibre.com --- Comment #30 from Julian Maurice --- >From the test plan: > 6) Press the browser 'back' button and notice it works as expected (both Chrome+Firefox) What is the expected behaviour ? I get "this page has expired" error -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 15 11:51:56 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 15 Mar 2024 10:51:56 +0000 Subject: [Koha-bugs] [Bug 36033] Table pseudonymized_transactions needs more indexes In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36033 Marcel de Rooy changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |m.de.rooy at rijksmuseum.nl --- Comment #5 from Marcel de Rooy --- (In reply to Fridolin Somers from comment #0) > To improve SQL queries performance, it needs more indexes, specially on > itemnumber. Could you provide further details for the need of those indexes? I am seeing a search on datetime in cleanup_database. Where, when do we need the other ones? KEY `pseudonymized_transactions_ibfk_1` (`categorycode`), KEY `pseudonymized_transactions_borrowers_ibfk_2` (`branchcode`), - KEY `pseudonymized_transactions_borrowers_ibfk_3` (`transaction_branchcode`) + KEY `pseudonymized_transactions_borrowers_ibfk_3` (`transaction_branchcode`), + KEY `pseudonymized_transactions_items_ibfk_4` (`itemnumber`), + KEY `pseudonymized_transactions_ibfk_5` (`transaction_type`), + KEY `pseudonymized_transactions_ibfk_6` (`datetime`) The names are confusing? But seeing more confusion in structure there. No blocker. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 15 11:55:31 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 15 Mar 2024 10:55:31 +0000 Subject: [Koha-bugs] [Bug 36327] Items view - Deletion of items is broken In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36327 Pedro Amorim changed: What |Removed |Added ---------------------------------------------------------------------------- Status|ASSIGNED |Needs Signoff -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 15 11:55:34 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 15 Mar 2024 10:55:34 +0000 Subject: [Koha-bugs] [Bug 36327] Items view - Deletion of items is broken In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36327 --- Comment #1 from Pedro Amorim --- Created attachment 163195 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163195&action=edit Bug 36327: Preparation: Update form Each delete form now contains the itemnumber to better unambiguosly identify the the itemnumber it refers to The delete button now carries the itemnumber it refers to -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 15 11:55:38 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 15 Mar 2024 10:55:38 +0000 Subject: [Koha-bugs] [Bug 36327] Items view - Deletion of items is broken In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36327 --- Comment #2 from Pedro Amorim --- Created attachment 163196 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163196&action=edit Bug 36327: Clean-up old unused code that results in error -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 15 11:55:41 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 15 Mar 2024 10:55:41 +0000 Subject: [Koha-bugs] [Bug 36327] Items view - Deletion of items is broken In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36327 --- Comment #3 from Pedro Amorim --- Created attachment 163197 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163197&action=edit Bug 36327: Delete link is no longer a GET href -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 15 11:55:45 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 15 Mar 2024 10:55:45 +0000 Subject: [Koha-bugs] [Bug 36327] Items view - Deletion of items is broken In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36327 --- Comment #4 from Pedro Amorim --- Created attachment 163198 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163198&action=edit Bug 36327: Update handling of item delete This needs to be rewritten to .on('click') because the delete item link relevant to this patchset is appended to the dom, this is how we guarantee this event listener is attached to the appended link. This also ensures the same item deletion logic is applied for both button: The delete button from the left 'Actions' dropdown and the 'Delete item' link that pops up when anywhere in the row is clicked 1) visit a biblio details view: http://localhost:8081/cgi-bin/koha/cataloguing/additem.pl?biblionumber=230 2) Click anywhere on one of the items rows 3) Notice 2 actions show up "Edit item" and "Delete item" 4) Click "delete item" 5) Notice nothing happens in the UI 6) Notice console throws the following error: cataloging_additem_23.1200007.js:29 Uncaught ReferenceError: confirm_deletion is not defined at HTMLAnchorElement. (cataloging_additem_23.1200007.js:29:17) at HTMLAnchorElement.dispatch (jquery-3.6.0.min_23.1200007.js:2:43064) at v.handle (jquery-3.6.0.min_23.1200007.js:2:41048) 7) Apply patches 8) Notice console error no longer shows 9) Notice delete confirmation is shown, notice clicking it deletes the correct item. 10) Notice the delete item link anywhere in the item row has the same behavior as the 'Delete' option under 'Actions' on the leftmost column of the table -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 15 12:02:11 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 15 Mar 2024 11:02:11 +0000 Subject: [Koha-bugs] [Bug 32429] With "Write off all" UseEmailReceipts sends emails for each, with "Write off selected" a digest In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=32429 Katrin Fischer changed: What |Removed |Added ---------------------------------------------------------------------------- Severity|minor |normal --- Comment #1 from Katrin Fischer --- It can be very confusing to patrons, upping severity. Also: Confirmed still valid in 22.11 at least. -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 15 12:03:25 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 15 Mar 2024 11:03:25 +0000 Subject: [Koha-bugs] [Bug 36277] t/db_dependent/api/v1/transfer_limits.t is failing In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36277 Tomás Cohen Arazi changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #163189|0 |1 is obsolete| | Attachment #163190|0 |1 is obsolete| | --- Comment #17 from Tomás Cohen Arazi --- Created attachment 163199 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163199&action=edit Bug 36277: Do not fetch the whole library list Signed-off-by: Martin Renvoize Signed-off-by: Tomas Cohen Arazi -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 15 12:03:28 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 15 Mar 2024 11:03:28 +0000 Subject: [Koha-bugs] [Bug 36277] t/db_dependent/api/v1/transfer_limits.t is failing In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36277 --- Comment #18 from Tomás Cohen Arazi --- Created attachment 163200 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163200&action=edit Bug 36277: Improve algorithmic complexity of batch_add The 2 nested loops are terrible in term of algorithmic complexity. Especially if we are fetching from there. The goal of this patch is to fetch all the limits outside of the loop. If you have 100 libraries, it will remove 100^2 - 1 fetches! Signed-off-by: Martin Renvoize Signed-off-by: Tomas Cohen Arazi -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 15 12:11:53 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 15 Mar 2024 11:11:53 +0000 Subject: [Koha-bugs] [Bug 36277] t/db_dependent/api/v1/transfer_limits.t is failing In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36277 --- Comment #19 from Tomás Cohen Arazi --- I tested the UI too, and nothing seems to be broken. I noticed the endpoint allows setting things the UI doesn't, though. But I'll file a separate bug for that. Nice job as usual, Jonathan. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 15 12:15:26 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 15 Mar 2024 11:15:26 +0000 Subject: [Koha-bugs] [Bug 36329] New: Transfer limits should respect `BranchTransferLimitsType` Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36329 Bug ID: 36329 Summary: Transfer limits should respect `BranchTransferLimitsType` Change sponsored?: --- Product: Koha Version: master Hardware: All OS: All Status: NEW Severity: normal Priority: P5 - low Component: REST API Assignee: koha-bugs at lists.koha-community.org Reporter: tomascohen at gmail.com CC: tomascohen at gmail.com The endpoint allows passing both a `collection code` and an `item type` on a batch request, but the UI would never allow such combination. I wonder if this is a design decision (i.e. supporting both in the future) or just a missing check. My intuition says it is the latter. I'm submitting a patch just in case. Kyle? -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 15 12:15:43 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 15 Mar 2024 11:15:43 +0000 Subject: [Koha-bugs] [Bug 36329] Transfer limits should respect `BranchTransferLimitsType` In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36329 Tomás Cohen Arazi changed: What |Removed |Added ---------------------------------------------------------------------------- Depends on| |36277 CC| |kyle at bywatersolutions.com Assignee|koha-bugs at lists.koha-commun |tomascohen at gmail.com |ity.org | Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36277 [Bug 36277] t/db_dependent/api/v1/transfer_limits.t is failing -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Fri Mar 15 12:15:43 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 15 Mar 2024 11:15:43 +0000 Subject: [Koha-bugs] [Bug 36277] t/db_dependent/api/v1/transfer_limits.t is failing In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36277 Tomás Cohen Arazi changed: What |Removed |Added ---------------------------------------------------------------------------- Blocks| |36329 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36329 [Bug 36329] Transfer limits should respect `BranchTransferLimitsType` -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 15 12:18:03 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 15 Mar 2024 11:18:03 +0000 Subject: [Koha-bugs] [Bug 36302] Patron search from search bar broken In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36302 --- Comment #31 from Pedro Amorim --- I don't agree with this behavior, i.e. redirecting to the single search result if only one is returned: 1) Maybe this is the norm? But I have personally not seen other search systems with this behavior. 2) We're not consistent: Some tables in Koha (most?) return a single result if only one is found, not redirect happens. 3) It's artificial, unexpected and a pain to maintain, as we've proven here. Having said that, we've gone to great lengths in making sure this historic behavior is kept, and it appears we've reached a consensus that, in Firefox, when clicking the "back" button from the patron detail page, being redirected to it again is what was happening before the CSRF work, meaning this patch fixes the search issue introduced by CSRF and keeps the original behaviour. (In reply to Julian Maurice from comment #30) > From the test plan: > > 6) Press the browser 'back' button and notice it works as expected (both Chrome+Firefox) > What is the expected behaviour ? I get "this page has expired" error When I first tested my patch I was sure it had the same behavior on both browsers, but having tested it again after Joubu's comment, it appears it does not. The current expected behavior: Chrome: You get redirected to whatever page you started the header patron search from. Firefox: You get redirected to patrons-home and immediately redirected to the single patron detail page afterwards, regardless of where you started the header patron search form. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 15 12:27:12 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 15 Mar 2024 11:27:12 +0000 Subject: [Koha-bugs] [Bug 36277] t/db_dependent/api/v1/transfer_limits.t is failing In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36277 Tomás Cohen Arazi changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Passed QA |Failed QA --- Comment #20 from Tomás Cohen Arazi --- Wait a minute :-D -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 15 12:27:55 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 15 Mar 2024 11:27:55 +0000 Subject: [Koha-bugs] [Bug 36297] Avoid using var named "t" in templates In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36297 --- Comment #5 from Kyle M Hall --- (In reply to Julian Maurice from comment #4) > Remember that there is also 'tn', 'tnx', ... (exhaustive list in i18n.inc). > > Also FOREACH is probably not the only way to "hide" these macros (for > instance [% t = ... %] or [% WHILE (t = ...) %] probably does the same thing) > > Another solution could be to remove i18n.inc, forcing us to use [% > I18N.t("...") %] which is unlikely to conflict with other variables. > > Or another (but hypothetical as I'm not sure it works): redefine these > functions as filters [% "..." | t %] (I believe filters don't conflict with > variable names ?) Further testing leads me to believe that you are correct that filters do not overwrite variable when they have matching names! -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 15 12:38:44 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 15 Mar 2024 11:38:44 +0000 Subject: [Koha-bugs] [Bug 30579] When placing item level hold, some options that are not used are not disabled In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30579 Kyle M Hall changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Signed Off |Patch doesn't apply CC| |kyle at bywatersolutions.com -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 15 12:40:20 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 15 Mar 2024 11:40:20 +0000 Subject: [Koha-bugs] [Bug 35944] Bookings is not taken into account in CanBookBeRenewed In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35944 Nick Clemens changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Patch doesn't apply |Passed QA -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 15 12:40:23 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 15 Mar 2024 11:40:23 +0000 Subject: [Koha-bugs] [Bug 35944] Bookings is not taken into account in CanBookBeRenewed In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35944 Nick Clemens changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #162417|0 |1 is obsolete| | Attachment #162418|0 |1 is obsolete| | Attachment #162423|0 |1 is obsolete| | Attachment #162424|0 |1 is obsolete| | --- Comment #11 from Nick Clemens --- Created attachment 163201 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163201&action=edit Bug 35944: Unit tests Signed-off-by: David Nind -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 15 12:40:26 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 15 Mar 2024 11:40:26 +0000 Subject: [Koha-bugs] [Bug 35944] Bookings is not taken into account in CanBookBeRenewed In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35944 --- Comment #12 from Nick Clemens --- Created attachment 163202 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163202&action=edit Bug 35944: Add booking handling to CanBookBeRenewed This patch adds a bookings check to CanBookBeRenewed Signed-off-by: David Nind -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 15 12:40:29 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 15 Mar 2024 11:40:29 +0000 Subject: [Koha-bugs] [Bug 35944] Bookings is not taken into account in CanBookBeRenewed In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35944 --- Comment #13 from Nick Clemens --- Created attachment 163203 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163203&action=edit Bug 35944: Add message to SIP renewal attempt This patch adds a replacement for 'booked' to the SIP renewal handling so we can display 'Item is booked for another borrower'. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 15 12:40:32 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 15 Mar 2024 11:40:32 +0000 Subject: [Koha-bugs] [Bug 35944] Bookings is not taken into account in CanBookBeRenewed In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35944 --- Comment #14 from Nick Clemens --- Created attachment 163204 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163204&action=edit Bug 35944: Add link to 'booked' biblio in checkouts table This patch updates the checkouts table so handle 'booked' items including linking to the biblio booking details page. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 15 12:40:35 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 15 Mar 2024 11:40:35 +0000 Subject: [Koha-bugs] [Bug 35944] Bookings is not taken into account in CanBookBeRenewed In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35944 --- Comment #15 from Nick Clemens --- Created attachment 163205 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163205&action=edit Bug 35944: (QA follow-up) Check if there are bookings before other calculations -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 15 12:40:38 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 15 Mar 2024 11:40:38 +0000 Subject: [Koha-bugs] [Bug 35944] Bookings is not taken into account in CanBookBeRenewed In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35944 --- Comment #16 from Nick Clemens --- Created attachment 163206 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163206&action=edit Bug 35944: (QA follow-up) Tidy -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 15 12:41:01 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 15 Mar 2024 11:41:01 +0000 Subject: [Koha-bugs] [Bug 36302] Patron search from search bar broken In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36302 --- Comment #32 from Pedro Amorim --- Created attachment 163207 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163207&action=edit Bug 36302: [ALTERNATIVE] Get rid of defer_loading Same test plan as the other patch, behavior is expected to be the same on both But this alternative removes technical debt, whereas the other patch adds. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 15 12:41:55 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 15 Mar 2024 11:41:55 +0000 Subject: [Koha-bugs] [Bug 35944] Bookings is not taken into account in CanBookBeRenewed In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35944 --- Comment #17 from Nick Clemens --- Very minor rebase, small follow-up to address performance concerns - could you just give a nod Martin? -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 15 12:43:43 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 15 Mar 2024 11:43:43 +0000 Subject: [Koha-bugs] [Bug 36101] Deleting an item removes the itemnumber from old_reserves when it should not In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36101 --- Comment #9 from Lari Strand --- In our case, we need to find out the biblio details for the deleted item so we can show these details for patrons in their lists of past loans/old issues. Without the itemnumber in the old_issues table finding out what the patron has previously loaned is impossible. We are not using opac as a patron interface, we have our own implementation, that uses this plugin to talk to the web interface: https://github.com/KohaSuomi/koha-plugin-rest-di If the biblio is also deleted, we can find the details from deletedbiblio-table. Maybe finding out biblio details based on the old_issues itemnumber might be interesting for statistical/reporting purposes as well. "Keeping an itemnumber in this table that does no longer exist is bad practice." We still have deleted-tables so I don't consider the data as non-existing. If we touch these old_-tables like this and destroy this archived data that can be linked still with deleted-tables, shouldn't we do the same to action_logs? I consider action_logs as an "archive" table just like old_issues or old_reserves (not sure if we do this already, though. Remove itemnumbers/biblionumbers from action_logs that are linked to deleted items/biblios?). -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 15 12:46:05 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 15 Mar 2024 11:46:05 +0000 Subject: [Koha-bugs] [Bug 36302] Patron search from search bar broken In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36302 --- Comment #33 from Pedro Amorim --- The noop approach is/was hacky and it doesn't seem to fix the issue entirely anyway. I'm submitting my first approach again as an alternative patch and let others decide which route is better. There may of course be a better approach at fixing this that I've not been able to come up with, open to input as always. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 15 12:47:45 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 15 Mar 2024 11:47:45 +0000 Subject: [Koha-bugs] [Bug 35944] Bookings is not taken into account in CanBookBeRenewed In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35944 Nick Clemens changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #163201|0 |1 is obsolete| | Attachment #163202|0 |1 is obsolete| | Attachment #163203|0 |1 is obsolete| | Attachment #163204|0 |1 is obsolete| | Attachment #163205|0 |1 is obsolete| | Attachment #163206|0 |1 is obsolete| | --- Comment #18 from Nick Clemens --- Created attachment 163208 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163208&action=edit Bug 35944: Unit tests Signed-off-by: David Nind -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 15 12:47:48 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 15 Mar 2024 11:47:48 +0000 Subject: [Koha-bugs] [Bug 35944] Bookings is not taken into account in CanBookBeRenewed In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35944 --- Comment #19 from Nick Clemens --- Created attachment 163209 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163209&action=edit Bug 35944: Add booking handling to CanBookBeRenewed This patch adds a bookings check to CanBookBeRenewed Signed-off-by: David Nind -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 15 12:47:51 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 15 Mar 2024 11:47:51 +0000 Subject: [Koha-bugs] [Bug 35944] Bookings is not taken into account in CanBookBeRenewed In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35944 --- Comment #20 from Nick Clemens --- Created attachment 163210 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163210&action=edit Bug 35944: Add message to SIP renewal attempt This patch adds a replacement for 'booked' to the SIP renewal handling so we can display 'Item is booked for another borrower'. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 15 12:47:54 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 15 Mar 2024 11:47:54 +0000 Subject: [Koha-bugs] [Bug 35944] Bookings is not taken into account in CanBookBeRenewed In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35944 --- Comment #21 from Nick Clemens --- Created attachment 163211 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163211&action=edit Bug 35944: Add link to 'booked' biblio in checkouts table This patch updates the checkouts table so handle 'booked' items including linking to the biblio booking details page. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 15 12:47:57 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 15 Mar 2024 11:47:57 +0000 Subject: [Koha-bugs] [Bug 35944] Bookings is not taken into account in CanBookBeRenewed In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35944 --- Comment #22 from Nick Clemens --- Created attachment 163212 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163212&action=edit Bug 35944: (QA follow-up) Check if there are bookings before other calculations -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 15 12:48:00 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 15 Mar 2024 11:48:00 +0000 Subject: [Koha-bugs] [Bug 35944] Bookings is not taken into account in CanBookBeRenewed In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35944 --- Comment #23 from Nick Clemens --- Created attachment 163213 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163213&action=edit Bug 35944: (QA follow-up) Tidy -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 15 12:49:49 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 15 Mar 2024 11:49:49 +0000 Subject: [Koha-bugs] [Bug 36101] Deleting an item removes the itemnumber from old_reserves when it should not In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36101 --- Comment #10 from Lari Strand --- Sorry, I was supposed to comment this to https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=32729, but the same logic applies here I assume. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 15 12:51:37 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 15 Mar 2024 11:51:37 +0000 Subject: [Koha-bugs] [Bug 33393] Modify sentence above the order table in English 1-page order PDF In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33393 Kyle M Hall changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Signed Off |Passed QA -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 15 12:51:39 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 15 Mar 2024 11:51:39 +0000 Subject: [Koha-bugs] [Bug 33393] Modify sentence above the order table in English 1-page order PDF In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33393 Kyle M Hall changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #150524|0 |1 is obsolete| | Attachment #150525|0 |1 is obsolete| | Attachment #150526|0 |1 is obsolete| | --- Comment #30 from Kyle M Hall --- Created attachment 163214 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163214&action=edit Bug 33393: Add system preference Sponsored-by: Pymble Ladies' College Signed-off-by: David Nind Signed-off-by: Kyle M Hall -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 15 12:51:56 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 15 Mar 2024 11:51:56 +0000 Subject: [Koha-bugs] [Bug 33393] Modify sentence above the order table in English 1-page order PDF In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33393 --- Comment #31 from Kyle M Hall --- Created attachment 163215 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163215&action=edit Bug 33393: Enable libraries to configure their own text in the 1-Page order PDF Test plan: 1) Apply patches and restart services 2) Upgrade Koha schema: sudo koha-upgrade-schema 3) Go to Koha Administration -> Libraries. Ensure Library A has an address, phone and fax. 4) Go to Koha Administration -> System preferences. Search for OrderPdfFormat. Set this to English 1-page layout option. 5) Go to Acquisitions. Use an existing vendor or create a new one. Ensure the vendor has a postal address, phone, fax and accout number. 6) Create a basket for this vendor. Add many orders to this basket, for example 25 items (this is to make the Order PDF cover multiple pages). 7) Close the basket and add it to a basket group of the same name. 8) Edit the basket group. Add an address in the delivery place, and a delivery comment. Check the box to close the basket group and Save. 9) Click the button to Export as PDF. 10) View the exported PDF. Confirm the PDF is multiple pages long. If it is not then re-open the basketgroup and add more orders to the basket and repeat steps 7, 8, and 9 11) If the PDF is multiple pages long then confirm: - The text "Order number must appear on all related correspondence, shipping papers and invoices. Notify us immediately if you are unable to supply item(s)." appears above the order table. - The page numbers at the bottom of the first page are not obscured by the order table. - That the order table starts near the top of the second page, and not half way down. 12) Change content in the '1PageOrderPDFText' syspref (use the Enter key to split text over multiple lines) and save 13) Back in the Acquisitions module click the button to Export as PDF 14) View the exported PDF. Confirm the following: - The text above the order table is what you saved in the 1PageOrderPDFText system preference - The page numbers at the bottom of the first page are not obscrued by the order table. - That the order table starts near the top of the second page and not halfway down. 15) Empty the 1PageOrderPDFText system preference and save 16) Back in the Acquisitions module click te button to Export as PDF 17) View the exported PDF and confirm the line of text between the Tel/Fax line and the order table has been removed. Sponsored-by: Pymble Ladies' College Signed-off-by: David Nind Signed-off-by: Kyle M Hall -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 15 12:51:58 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 15 Mar 2024 11:51:58 +0000 Subject: [Koha-bugs] [Bug 33393] Modify sentence above the order table in English 1-page order PDF In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33393 --- Comment #32 from Kyle M Hall --- Created attachment 163216 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163216&action=edit Bug 33393: Add note to system preference explaining text length Sponsored-by: Pymble Ladies' College Signed-off-by: David Nind Signed-off-by: Kyle M Hall -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 15 12:52:00 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 15 Mar 2024 11:52:00 +0000 Subject: [Koha-bugs] [Bug 33393] Modify sentence above the order table in English 1-page order PDF In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33393 --- Comment #33 from Kyle M Hall --- Created attachment 163217 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163217&action=edit Bug 33393: tidy layout1page.pm Signed-off-by: Kyle M Hall -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 15 12:52:10 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 15 Mar 2024 11:52:10 +0000 Subject: [Koha-bugs] [Bug 33393] Modify sentence above the order table in English 1-page order PDF In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33393 Kyle M Hall changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |kyle at bywatersolutions.com QA Contact|testopia at bugs.koha-communit |kyle at bywatersolutions.com |y.org | -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 15 12:54:18 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 15 Mar 2024 11:54:18 +0000 Subject: [Koha-bugs] [Bug 33393] Modify sentence above the order table in English 1-page order PDF In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33393 --- Comment #34 from Kyle M Hall --- While I tend to agree PDF generation isn't the greatest, this is a minor enhancement and it was far too onerous to ask to replace an entire subsystem to add such a small enhancement. Let's get this in! -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 15 12:57:19 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 15 Mar 2024 11:57:19 +0000 Subject: [Koha-bugs] [Bug 35944] Bookings is not taken into account in CanBookBeRenewed In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35944 --- Comment #24 from Martin Renvoize --- Very happy with the follow-up, it gets my vote :) -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 15 12:58:08 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 15 Mar 2024 11:58:08 +0000 Subject: [Koha-bugs] [Bug 36101] Deleting an item removes the itemnumber from old_reserves when it should not In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36101 --- Comment #11 from Lari Strand --- This ticket is just to make handling of these two old_ -tables' itemnumber data uniform. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 15 13:00:59 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 15 Mar 2024 12:00:59 +0000 Subject: [Koha-bugs] [Bug 36302] Patron search from search bar broken In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36302 --- Comment #34 from Katrin Fischer --- (In reply to Pedro Amorim from comment #31) > I don't agree with this behavior, i.e. redirecting to the single search > result if only one is returned: > 1) Maybe this is the norm? But I have personally not seen other search > systems with this behavior. I think this is/was about saving clicks for the circulation desk mostly. If you scan a card, they want to go directly to the patron account. I am not sure if it's also applied for other searches/results in general. But I believe it's always been the case for cardnumber searches (since 3.2 at least, when I began using Koha). I believe if you picked an entry, using the auto-complete, you'd also want/expect this behavior. (Not sure those comments fully apply here, just trying to give a user point of view) > 2) We're not consistent: Some tables in Koha (most?) return a single result > if only one is found, not redirect happens. > 3) It's artificial, unexpected and a pain to maintain, as we've proven here. > > Having said that, we've gone to great lengths in making sure this historic > behavior is kept, and it appears we've reached a consensus that, in Firefox, > when clicking the "back" button from the patron detail page, being > redirected to it again is what was happening before the CSRF work, meaning > this patch fixes the search issue introduced by CSRF and keeps the original > behaviour. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 15 13:01:40 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 15 Mar 2024 12:01:40 +0000 Subject: [Koha-bugs] [Bug 36120] Add pickup locations to Bookings In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36120 Martin Renvoize changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #162923|0 |1 is obsolete| | --- Comment #27 from Martin Renvoize --- Created attachment 163218 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163218&action=edit Bug 36120: Add pickup_library_id to bookings table Signed-off-by: Lisette Scheer -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 15 13:01:44 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 15 Mar 2024 12:01:44 +0000 Subject: [Koha-bugs] [Bug 36120] Add pickup locations to Bookings In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36120 Martin Renvoize changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #162924|0 |1 is obsolete| | --- Comment #28 from Martin Renvoize --- Created attachment 163219 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163219&action=edit Bug 36120: Schema update Signed-off-by: Lisette Scheer -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 15 13:01:47 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 15 Mar 2024 12:01:47 +0000 Subject: [Koha-bugs] [Bug 36120] Add pickup locations to Bookings In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36120 Martin Renvoize changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #162925|0 |1 is obsolete| | --- Comment #29 from Martin Renvoize --- Created attachment 163220 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163220&action=edit Bug 36120: Add pickup_items to the pickup_locations response This patch adds pickup_items as a list of itemnumbers that can be picked from the library should it be selected as a pickup location. Signed-off-by: Lisette Scheer -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 15 13:01:50 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 15 Mar 2024 12:01:50 +0000 Subject: [Koha-bugs] [Bug 36120] Add pickup locations to Bookings In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36120 Martin Renvoize changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #162926|0 |1 is obsolete| | --- Comment #30 from Martin Renvoize --- Created attachment 163221 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163221&action=edit Bug 36120: Add pickup_library support to bookings API Signed-off-by: Lisette Scheer -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 15 13:01:53 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 15 Mar 2024 12:01:53 +0000 Subject: [Koha-bugs] [Bug 36120] Add pickup locations to Bookings In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36120 Martin Renvoize changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #162927|0 |1 is obsolete| | --- Comment #31 from Martin Renvoize --- Created attachment 163222 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163222&action=edit Bug 36120: Add pickup locations to place bookings modal This patch adds a call to /biblios/biblionumber/pickup_locations to fetch valid pickup locations for the biblio. Upon selecting a pickup location we adapt the item select to only allow for selecting items returned as valid for pickup at the selected location. Signed-off-by: Lisette Scheer -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 15 13:01:56 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 15 Mar 2024 12:01:56 +0000 Subject: [Koha-bugs] [Bug 36120] Add pickup locations to Bookings In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36120 Martin Renvoize changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #162928|0 |1 is obsolete| | --- Comment #32 from Martin Renvoize --- Created attachment 163223 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163223&action=edit Bug 36120: Add pickup library to bookings list table Signed-off-by: Lisette Scheer -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 15 13:01:59 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 15 Mar 2024 12:01:59 +0000 Subject: [Koha-bugs] [Bug 36120] Add pickup locations to Bookings In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36120 Martin Renvoize changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #162976|0 |1 is obsolete| | --- Comment #33 from Martin Renvoize --- Created attachment 163224 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163224&action=edit Bug 36120: Ensure existing bookings are assigned a pickup library Signed-off-by: Lisette Scheer -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 15 13:02:23 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 15 Mar 2024 12:02:23 +0000 Subject: [Koha-bugs] [Bug 36120] Add pickup locations to Bookings In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36120 --- Comment #34 from Martin Renvoize --- Rebased and added Lisette's signoff lines. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 15 13:10:14 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 15 Mar 2024 12:10:14 +0000 Subject: [Koha-bugs] [Bug 36277] t/db_dependent/api/v1/transfer_limits.t is failing In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36277 Tomás Cohen Arazi changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Failed QA |Passed QA Patch complexity|--- |Small patch -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 15 13:10:18 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 15 Mar 2024 12:10:18 +0000 Subject: [Koha-bugs] [Bug 36277] t/db_dependent/api/v1/transfer_limits.t is failing In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36277 --- Comment #21 from Tomás Cohen Arazi --- Created attachment 163225 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163225&action=edit Bug 36277: Avoid useless warnings As mentioned on bug 36329, this endpoint is only used with one of this parameters: * item_type * collection_code The other will be NULL both on the DB and the (deserialized) request body. For the data from the DB, the author added `|| q{}` but missed to do so on the incoming parameters when generates the hash key. This generates the following warnings when using from the UI: [2024/03/15 11:42:51] [WARN] Use of uninitialized value in sprintf at /kohadevbox/koha/Koha/REST/V1/TransferLimits.pm line 146. Signed-off-by: Tomas Cohen Arazi -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 15 13:10:44 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 15 Mar 2024 12:10:44 +0000 Subject: [Koha-bugs] [Bug 34792] CookieConsentBar content feels mis-aligned In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=34792 Kyle M Hall changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |kyle at bywatersolutions.com Status|Signed Off |Failed QA --- Comment #9 from Kyle M Hall --- I cannot for the life of me get this to work. I greatly suspect I have no idea what I'm going when it comes to updating the css from the scss. I've tried all the css related scripts in package.json and the commands on the wiki. Owen, can you ELI5 in the test plan? -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 15 13:20:13 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 15 Mar 2024 12:20:13 +0000 Subject: [Koha-bugs] [Bug 36302] Patron search from search bar broken In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36302 --- Comment #35 from Nick Clemens --- (In reply to Katrin Fischer from comment #34) > (In reply to Pedro Amorim from comment #31) > > I don't agree with this behavior, i.e. redirecting to the single search > > result if only one is returned: > > 1) Maybe this is the norm? But I have personally not seen other search > > systems with this behavior. > > I think this is/was about saving clicks for the circulation desk mostly. If > you scan a card, they want to go directly to the patron account. Cardnumber searches are still handled directly with a redirect in the script The case here is a standard search that returns a single patron -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 15 13:23:21 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 15 Mar 2024 12:23:21 +0000 Subject: [Koha-bugs] [Bug 36302] Patron search from search bar broken In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36302 --- Comment #36 from Katrin Fischer --- (In reply to Nick Clemens from comment #35) > (In reply to Katrin Fischer from comment #34) > > (In reply to Pedro Amorim from comment #31) > > > I don't agree with this behavior, i.e. redirecting to the single search > > > result if only one is returned: > > > 1) Maybe this is the norm? But I have personally not seen other search > > > systems with this behavior. > > > > I think this is/was about saving clicks for the circulation desk mostly. If > > you scan a card, they want to go directly to the patron account. > > Cardnumber searches are still handled directly with a redirect in the script > > The case here is a standard search that returns a single patron Hi Nick, thanks for clarifying! For another search I'd day it's not that important (but no guarantee everyone agrees with me) :) -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 15 13:23:36 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 15 Mar 2024 12:23:36 +0000 Subject: [Koha-bugs] [Bug 32729] Deleting an item removes the itemnumber from old_issues when it probably should not In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=32729 Emmi Takkinen changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |emmi.takkinen at koha-suomi.fi -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 15 13:26:56 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 15 Mar 2024 12:26:56 +0000 Subject: [Koha-bugs] [Bug 36302] Patron search from search bar broken In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36302 Nick Clemens changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #163207|0 |1 is obsolete| | --- Comment #37 from Nick Clemens --- Created attachment 163226 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163226&action=edit Bug 36302: [ALTERNATIVE] Get rid of defer_loading Same test plan as the other patch, behavior is expected to be the same on both But this alternative removes technical debt, whereas the other patch adds. Signed-off-by: Nick Clemens -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 15 13:28:05 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 15 Mar 2024 12:28:05 +0000 Subject: [Koha-bugs] [Bug 32729] Deleting an item removes the itemnumber from old_issues when it probably should not In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=32729 Lari Strand changed: What |Removed |Added ---------------------------------------------------------------------------- Assignee|koha-bugs at lists.koha-commun |lmstrand at gmail.com |ity.org | -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 15 13:30:29 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 15 Mar 2024 12:30:29 +0000 Subject: [Koha-bugs] [Bug 36302] Patron search from search bar broken In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36302 --- Comment #38 from Pedro Amorim --- (In reply to Katrin Fischer from comment #34) > I think this is/was about saving clicks for the circulation desk mostly. If > you scan a card, they want to go directly to the patron account. I am not > sure if it's also applied for other searches/results in general. But I > believe it's always been the case for cardnumber searches (since 3.2 at > least, when I began using Koha). > > I believe if you picked an entry, using the auto-complete, you'd also > want/expect this behavior. > > (Not sure those comments fully apply here, just trying to give a user point > of view) The following use case: "If you scan a card, they want to go directly to the patron account." This is already handled in member.pl. i.e. this is already ensured, regardless of the patches in this bug or the issue described by it. This functionality is not broken and is still in place. This: "I believe if you picked an entry, using the auto-complete, you'd also want/expect this behavior." I agree, and this is also already the case as well. Again, regardless of the patches in this bug or the issue described by it. When you click on any of the suggestions given by the auto-complete, you're forwarded directly to the patron you clicked on. The behavior that I don't agree with: "Search -> Browser goes to search results page -> JavaScript checks if only 1 result found -> Browser redirects user to this single result detail page" Doesn't happen in either of the use-cases above. A search is a search, if you submit a search then you should be presented with a search results page, regardless of how many results are found. Having a special case for: if a cardnumber is submitted, which is a unique identifier, Koha forwards you directly to the patron detail page and it does NOT first visit the search results page -> This is fine If you click on an auto-complete suggestion, Koha forwards you to the patron detail page and it does NOT first visit the search results page -> This is fine (and expected). -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 15 13:33:39 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 15 Mar 2024 12:33:39 +0000 Subject: [Koha-bugs] [Bug 36101] Deleting an item removes the itemnumber from old_reserves when it should not In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36101 --- Comment #12 from Lari Strand --- We should also consider the impact this change makes when we join deleted-tables with "active" tables in the future, when nothing is really deleted and transferred to somewhere else, but tagged as "deleted" in an always "active" table. Will deleting the data still make sense in the future? -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 15 13:42:37 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 15 Mar 2024 12:42:37 +0000 Subject: [Koha-bugs] [Bug 36302] Patron search from search bar broken In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36302 --- Comment #39 from Jonathan Druart --- I've tested the ALTERNATIVE patch alone and I get a weird JS error in the console: Uncaught SyntaxError: unexpected token: '!' http://localhost:8081/cgi-bin/koha/members/members-home.pl -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 15 13:52:09 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 15 Mar 2024 12:52:09 +0000 Subject: [Koha-bugs] [Bug 36297] Avoid using var named "t" in templates In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36297 --- Comment #6 from Pedro Amorim --- (In reply to Julian Maurice from comment #4) > Remember that there is also 'tn', 'tnx', ... (exhaustive list in i18n.inc). > > Also FOREACH is probably not the only way to "hide" these macros (for > instance [% t = ... %] or [% WHILE (t = ...) %] probably does the same thing) > > Another solution could be to remove i18n.inc, forcing us to use [% > I18N.t("...") %] which is unlikely to conflict with other variables. > > Or another (but hypothetical as I'm not sure it works): redefine these > functions as filters [% "..." | t %] (I believe filters don't conflict with > variable names ?) These are all good points, although I'm not sure how feasible or cost-efficient would be to turn all occurrences of [% t('translate this') | html %] into [% 'translate this' | t | html %] Running the following: git grep "\bt(" /kohadevbox/koha/koha-tmpl/intranet-tmpl/prog/ | wc -l Results in 1701 and that's likely not all of it. I'm assuming we can chain filters in .tt although I'm not 100% sure. If my above interpretation of what's being suggested is incorrect then please ignore. git grep "WHILE" We can see that WHILE is hardly ever used and although it'd be great to ensure it doesn't happen in the future, I'm not sure it's worth the effort at this point to address for this possibility too. git grep "\[% t=" git grep "\[% t =" Don't return anything. Thinking of cost-efficiency here, I think that only considering "FOREACH t IN" in our qa script for now would be a good step in the right direction. Addressing all possible macro names from i18n may also be an option but I'm not sure how far the rabbit hole goes. As far as I can tell this issue does not happen anywhere else in Koha at the moment. Even in files like additem.tt, I think because all t("translatable string") calls happen at the start of the file, before any of the "FOREACH t in templates" occurrences that come further down. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 15 13:53:27 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 15 Mar 2024 12:53:27 +0000 Subject: [Koha-bugs] [Bug 36326] Biblio detail view - Deletion of items is broken In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36326 Jonathan Druart changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |Needs Signoff -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 15 13:53:30 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 15 Mar 2024 12:53:30 +0000 Subject: [Koha-bugs] [Bug 36326] Biblio detail view - Deletion of items is broken In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36326 --- Comment #1 from Jonathan Druart --- Created attachment 163227 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163227&action=edit Bug 36326: Fix batch item mod/del access from biblio detail page Allow both $op eq "show" and "cud-show". We need to keep the POST when we upload a file, but we can simply allow GET with "show". Test plan: Go to the biblio detail page, select an item and test both tools via the links "Delete selected items" and "Modify selected items" -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 15 13:57:03 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 15 Mar 2024 12:57:03 +0000 Subject: [Koha-bugs] [Bug 36326] Biblio detail view - Deletion of items is broken In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36326 --- Comment #2 from Jonathan Druart --- Not the nicest fix, but the easiest. Other places have been fixed using a POST: commit 74d7ae7672a4b82568e57eaddefbded4bf5b05e6 Bug 34478: (follow-up) batchMod commit 925eb73a279e18194f05b92069d78fd93c88a58e Bug 34478: (follow-up) batch_record_modification -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 15 13:57:08 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 15 Mar 2024 12:57:08 +0000 Subject: [Koha-bugs] [Bug 36326] Biblio detail view - Deletion of items is broken In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36326 Jonathan Druart changed: What |Removed |Added ---------------------------------------------------------------------------- Assignee|koha-bugs at lists.koha-commun |jonathan.druart at gmail.com |ity.org | -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 15 13:57:57 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 15 Mar 2024 12:57:57 +0000 Subject: [Koha-bugs] [Bug 36302] Patron search from search bar broken In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36302 --- Comment #40 from Pedro Amorim --- (In reply to Jonathan Druart from comment #39) > I've tested the ALTERNATIVE patch alone and I get a weird JS error in the > console: > > Uncaught SyntaxError: unexpected token: '!' > > http://localhost:8081/cgi-bin/koha/members/members-home.pl I've retried the ALTERNATIVE patch alone again on current master on both Chrome and Firefox, I'm unable to reproduce this. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 15 14:01:00 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 15 Mar 2024 13:01:00 +0000 Subject: [Koha-bugs] [Bug 36327] Items view - Deletion of items is broken In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36327 Jonathan Druart changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Needs Signoff |Signed Off -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 15 14:01:03 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 15 Mar 2024 13:01:03 +0000 Subject: [Koha-bugs] [Bug 36327] Items view - Deletion of items is broken In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36327 Jonathan Druart changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #163195|0 |1 is obsolete| | Attachment #163196|0 |1 is obsolete| | Attachment #163197|0 |1 is obsolete| | Attachment #163198|0 |1 is obsolete| | --- Comment #5 from Jonathan Druart --- Created attachment 163228 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163228&action=edit Bug 36327: Preparation: Update form Each delete form now contains the itemnumber to better unambiguosly identify the the itemnumber it refers to The delete button now carries the itemnumber it refers to Signed-off-by: Jonathan Druart -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 15 14:01:06 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 15 Mar 2024 13:01:06 +0000 Subject: [Koha-bugs] [Bug 36327] Items view - Deletion of items is broken In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36327 --- Comment #6 from Jonathan Druart --- Created attachment 163229 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163229&action=edit Bug 36327: Clean-up old unused code that results in error Signed-off-by: Jonathan Druart -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 15 14:01:08 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 15 Mar 2024 13:01:08 +0000 Subject: [Koha-bugs] [Bug 36327] Items view - Deletion of items is broken In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36327 --- Comment #7 from Jonathan Druart --- Created attachment 163230 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163230&action=edit Bug 36327: Delete link is no longer a GET href Signed-off-by: Jonathan Druart -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 15 14:01:11 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 15 Mar 2024 13:01:11 +0000 Subject: [Koha-bugs] [Bug 36327] Items view - Deletion of items is broken In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36327 --- Comment #8 from Jonathan Druart --- Created attachment 163231 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163231&action=edit Bug 36327: Update handling of item delete This needs to be rewritten to .on('click') because the delete item link relevant to this patchset is appended to the dom, this is how we guarantee this event listener is attached to the appended link. This also ensures the same item deletion logic is applied for both button: The delete button from the left 'Actions' dropdown and the 'Delete item' link that pops up when anywhere in the row is clicked 1) visit a biblio details view: http://localhost:8081/cgi-bin/koha/cataloguing/additem.pl?biblionumber=230 2) Click anywhere on one of the items rows 3) Notice 2 actions show up "Edit item" and "Delete item" 4) Click "delete item" 5) Notice nothing happens in the UI 6) Notice console throws the following error: cataloging_additem_23.1200007.js:29 Uncaught ReferenceError: confirm_deletion is not defined at HTMLAnchorElement. (cataloging_additem_23.1200007.js:29:17) at HTMLAnchorElement.dispatch (jquery-3.6.0.min_23.1200007.js:2:43064) at v.handle (jquery-3.6.0.min_23.1200007.js:2:41048) 7) Apply patches 8) Notice console error no longer shows 9) Notice delete confirmation is shown, notice clicking it deletes the correct item. 10) Notice the delete item link anywhere in the item row has the same behavior as the 'Delete' option under 'Actions' on the leftmost column of the table Signed-off-by: Jonathan Druart -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 15 14:01:14 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 15 Mar 2024 13:01:14 +0000 Subject: [Koha-bugs] [Bug 36329] Transfer limits should respect `BranchTransferLimitsType` In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36329 Tomás Cohen Arazi changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |Needs Signoff Patch complexity|--- |Trivial patch -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 15 14:01:16 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 15 Mar 2024 13:01:16 +0000 Subject: [Koha-bugs] [Bug 36329] Transfer limits should respect `BranchTransferLimitsType` In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36329 --- Comment #1 from Tomás Cohen Arazi --- Created attachment 163232 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163232&action=edit Bug 36329: Add missing return codes -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 15 14:01:19 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 15 Mar 2024 13:01:19 +0000 Subject: [Koha-bugs] [Bug 36329] Transfer limits should respect `BranchTransferLimitsType` In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36329 --- Comment #2 from Tomás Cohen Arazi --- Created attachment 163233 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163233&action=edit Bug 36329: Miscelaneous spec fixes -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 15 14:01:21 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 15 Mar 2024 13:01:21 +0000 Subject: [Koha-bugs] [Bug 36329] Transfer limits should respect `BranchTransferLimitsType` In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36329 --- Comment #3 from Tomás Cohen Arazi --- Created attachment 163234 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163234&action=edit Bug 36329: Make POST /transfer_limits/batch honor BranchTransferLimitsType This patch adds tests for the different cases of `BranchTransferLimitsType`. It also adds tests for the situation of the consumer sending both limit criterias on the request. The controller gets adjusted for this new behavior and the spec gets documentation added about this. Bonus: tests are added the right guidelines code, and BranchTransferLimitsType gets mocked to avoid failures due to existing data. To test: 1. Apply this patches 2. Run: $ ktd --shell k$ qa => SUCCESS: All green, and tests pass! 3. Sign off :-D -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 15 14:04:23 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 15 Mar 2024 13:04:23 +0000 Subject: [Koha-bugs] [Bug 35919] Add record sources CRUD In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35919 --- Comment #29 from Tomás Cohen Arazi --- (In reply to Marcel de Rooy from comment #28) > If no one beats me to it, will be looking here "soon" I will try to address Jonathan's QA concerns. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 15 14:13:24 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 15 Mar 2024 13:13:24 +0000 Subject: [Koha-bugs] [Bug 36302] Patron search from search bar broken In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36302 --- Comment #41 from Jonathan Druart --- (In reply to Pedro Amorim from comment #40) > (In reply to Jonathan Druart from comment #39) > > I've tested the ALTERNATIVE patch alone and I get a weird JS error in the > > console: > > > > Uncaught SyntaxError: unexpected token: '!' > > > > http://localhost:8081/cgi-bin/koha/members/members-home.pl > > I've retried the ALTERNATIVE patch alone again on current master on both > Chrome and Firefox, I'm unable to reproduce this. Hum, retried and the error disappeared after a reset_all + restart of Firefox. Weird because I had the error with the patch applied and not on master. Forget that for now, I will keep an eye on it in case it pops up again. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 15 14:17:40 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 15 Mar 2024 13:17:40 +0000 Subject: [Koha-bugs] [Bug 27917] Make it clear that standing orders cannot create items at point of ordering In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=27917 hebah at bywatersolutions.com changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |hebah at bywatersolutions.com -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 15 14:17:41 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 15 Mar 2024 13:17:41 +0000 Subject: [Koha-bugs] [Bug 36330] New: Fix typo: reseve Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36330 Bug ID: 36330 Summary: Fix typo: reseve Change sponsored?: --- Product: Koha Version: master Hardware: All OS: All Status: NEW Severity: trivial Priority: P5 - low Component: Architecture, internals, and plumbing Assignee: koha-bugs at lists.koha-community.org Reporter: magnus at libriotech.no QA Contact: testopia at bugs.koha-community.org $ grep -rn "reseves" * installer/data/mysql/updatedatabase.pl:4907: print "Upgrade to $DBversion done (Added system preference ExpireReservesMaxPickUpDelay, system preference ExpireReservesMaxPickUpDelayCharge, add reseves.charge_if_expired)\n"; misc/cronjobs/holds/cancel_expired_holds.pl:37:This script calls C4::Reserves::CancelExpiredReserves which will find and cancel all expired reseves in the system. magnus at bilbo ~/code/kohaclone (master)$ grep -rn "reseve" * installer/data/mysql/kohastructure.sql:2233: `location` varchar(80) DEFAULT NULL COMMENT 'new shelving location for the item to have while on reseve (optional)', installer/data/mysql/kohastructure.sql:2236: `enabled` enum('yes','no') NOT NULL DEFAULT 'no' COMMENT 'if at least one enabled course has this item on reseve, this field will be ''yes'', otherwise it will be ''no''', installer/data/mysql/updatedatabase.pl:4907: print "Upgrade to $DBversion done (Added system preference ExpireReservesMaxPickUpDelay, system preference ExpireReservesMaxPickUpDelayCharge, add reseves.charge_if_expired)\n"; Koha/Schema/Result/CourseItem.pm:155:new shelving location for the item to have while on reseve (optional) Koha/Schema/Result/CourseItem.pm:180:if at least one enabled course has this item on reseve, this field will be 'yes', otherwise it will be 'no' misc/cronjobs/holds/cancel_expired_holds.pl:37:This script calls C4::Reserves::CancelExpiredReserves which will find and cancel all expired reseves in the system. -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 15 14:17:53 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 15 Mar 2024 13:17:53 +0000 Subject: [Koha-bugs] [Bug 36330] Fix typo: reseve In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36330 Magnus Enger changed: What |Removed |Added ---------------------------------------------------------------------------- Keywords| |Academy -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Fri Mar 15 14:39:27 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 15 Mar 2024 13:39:27 +0000 Subject: [Koha-bugs] [Bug 34978] Add --include and --exclude options to install_plugins.pl to choose the plugins to install In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=34978 --- Comment #9 from Julian Maurice --- > What was the use case for install_plugins.pl ? Shouldn't people just use the UI ? It would be nice to be able to install plugins from the UI (and by "install" I do not mean "upload and install", only "install") but I believe plugins don't even appear in the UI until misc/devel/install_plugins.pl is run. > We manage a hundred personnalized koha installations and we don't want to manually install all the plugins. One option you have is to keep in $KOHA_CONF only the plugins that should be enabled for that Koha installation. You can still have all plugins in the same git repository. That way you also cannot install the wrong plugins by accident (by forgetting --exclude or --include) I'm not against --include and --exclude options, as they could be useful for testing/debugging purposes, but I'm not sure if it's the best solution for your use case. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 15 14:45:02 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 15 Mar 2024 13:45:02 +0000 Subject: [Koha-bugs] [Bug 36297] Avoid using var named "t" in templates In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36297 --- Comment #7 from Fridolin Somers --- (In reply to Julian Maurice from comment #4) > Another solution could be to remove i18n.inc, forcing us to use [% > I18N.t("...") %] which is unlikely to conflict with other variables. I would prefer this option. This will also make is more easy to find translated strings. But I agree with cost-efficiency ;) -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 15 14:45:08 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 15 Mar 2024 13:45:08 +0000 Subject: [Koha-bugs] [Bug 36331] New: Items that cannot be held are prevented renewal when there are holds on the record Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36331 Bug ID: 36331 Summary: Items that cannot be held are prevented renewal when there are holds on the record Change sponsored?: --- Product: Koha Version: master Hardware: All OS: All Status: NEW Severity: major Priority: P5 - low Component: Circulation Assignee: koha-bugs at lists.koha-community.org Reporter: nick at bywatersolutions.com QA Contact: testopia at bugs.koha-community.org CC: gmcharlt at gmail.com, kyle.m.hall at gmail.com In the case where an item cannot be held 'AllowRenewalIfOtherItemsAvailable' will deny renewal if no other items are available. Since the holds don't affect this item, it is invalid. There is a FIXME in the code about this: # FIXME: We are not checking whether the item we are renewing can fill the hold -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Fri Mar 15 14:47:35 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 15 Mar 2024 13:47:35 +0000 Subject: [Koha-bugs] [Bug 14962] Temp Shelving Location In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=14962 Kristi changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |kkrueger at cuyahogalibrary.or | |g --- Comment #15 from Kristi --- Re: Christopher's earlier comment, "Ideally, it would be great if you had a display module to check items in on. It would ask where you want to display the item, and for how long. Then the module would temporarily move the item to the new location, setup a rule to change it back after the time is up, and would alert staff of the temporary location when checked in at the home location." We would be interested in using something similar for a set of titles that would stay within a display/shelf area in a particular branch for a set amount of time. Once the time is up, they'd be part of the general catalog. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 15 14:52:29 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 15 Mar 2024 13:52:29 +0000 Subject: [Koha-bugs] [Bug 20657] Globally enable PRE_CHOMP and POST_CHOMP in Template Toolkit configuration In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=20657 --- Comment #16 from Jonathan Druart --- Created attachment 163235 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163235&action=edit Bug 20657: Remove explicit chomp in patronfields.inc -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 15 14:53:25 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 15 Mar 2024 13:53:25 +0000 Subject: [Koha-bugs] [Bug 36331] Items that cannot be held are prevented renewal when there are holds on the record In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36331 Nick Clemens changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |Needs Signoff -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Fri Mar 15 14:53:27 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 15 Mar 2024 13:53:27 +0000 Subject: [Koha-bugs] [Bug 36331] Items that cannot be held are prevented renewal when there are holds on the record In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36331 --- Comment #1 from Nick Clemens --- Created attachment 163236 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163236&action=edit Bug 36331: Don't check reserves that an item cannot fill when checking if it can be renewed Before this patch we get all holds on a record and see if we can fill them with available items. This means we check to fill holds that the item in questoion may not be able to fill, especially in the case where no holds are allowed on the item type, this is wrong To test: 1 - Find or create a biblio with two items of different item types 2 - Make sure one item type allows holds, and the other has: "Default holds policy by item type" Set to "No holds allowed" 3 - Set system preference "AllowRenewalIfOtherItemsAvailable" to "Don't allow" 4 - Check out the unholdable item to a patron 5 - Set a hold for a different patron on the next available item 6 - Confirm the checked out item can be renewed (don't renew, just view the checkouts page) 7 - Checkout the other item to a third patron 8 - Confirm the first item can still be renewed 9 - Set system preference "AllowRenewalIfOtherItemsAvailable" to "Allow" 10 - Confirm the item cannot be renewed now 11 - Apply patch, restart all 12 - Confirm the item can be renewed 13 - Set the item type to a type that allows holds 14 - Confirm the item can no longer be renewed 15 - Restore the item type 16 - Set system preference "AllowRenewalIfOtherItemsAvailable" to "Don't allow" 17 - Confirm the item can be renewed 18 - Check in the item from the third patron 19 - Confirm the item can still be renewed 20 - prove -v t/db_dependent/Circulation.t - test still pass -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Fri Mar 15 14:53:37 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 15 Mar 2024 13:53:37 +0000 Subject: [Koha-bugs] [Bug 36331] Items that cannot be held are prevented renewal when there are holds on the record In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36331 Nick Clemens changed: What |Removed |Added ---------------------------------------------------------------------------- Assignee|koha-bugs at lists.koha-commun |nick at bywatersolutions.com |ity.org | -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 15 14:55:33 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 15 Mar 2024 13:55:33 +0000 Subject: [Koha-bugs] [Bug 36331] Items that cannot be held are prevented renewal when there are holds on the record In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36331 Nick Clemens changed: What |Removed |Added ---------------------------------------------------------------------------- See Also| |https://bugs.koha-community | |.org/bugzilla3/show_bug.cgi | |?id=29531 -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 15 14:55:33 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 15 Mar 2024 13:55:33 +0000 Subject: [Koha-bugs] [Bug 29531] CanBookBeRenewed is inconsistent when checking AllowRenewalIfOtherItemsAvailable In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29531 Nick Clemens changed: What |Removed |Added ---------------------------------------------------------------------------- See Also| |https://bugs.koha-community | |.org/bugzilla3/show_bug.cgi | |?id=36331 -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 15 14:55:51 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 15 Mar 2024 13:55:51 +0000 Subject: [Koha-bugs] [Bug 36332] New: JS error on moremember Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36332 Bug ID: 36332 Summary: JS error on moremember Change sponsored?: --- Product: Koha Version: unspecified Hardware: All OS: All Status: ASSIGNED Severity: major Priority: P5 - low Component: Templates Assignee: jonathan.druart at gmail.com Reporter: jonathan.druart at gmail.com QA Contact: testopia at bugs.koha-community.org Uncaught ReferenceError: script is not defined -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 15 14:56:50 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 15 Mar 2024 13:56:50 +0000 Subject: [Koha-bugs] [Bug 36332] JS error on moremember In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36332 Jonathan Druart changed: What |Removed |Added ---------------------------------------------------------------------------- Status|ASSIGNED |Needs Signoff -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 15 14:56:53 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 15 Mar 2024 13:56:53 +0000 Subject: [Koha-bugs] [Bug 36332] JS error on moremember In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36332 --- Comment #1 from Jonathan Druart --- Created attachment 163237 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163237&action=edit Bug 36332: Add missing semicolon in moremember.tt It's fixing a JS error Uncaught ReferenceError: script is not defined -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 15 14:57:02 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 15 Mar 2024 13:57:02 +0000 Subject: [Koha-bugs] [Bug 36332] JS error on moremember In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36332 Jonathan Druart changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Needs Signoff |Signed Off -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 15 14:57:12 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 15 Mar 2024 13:57:12 +0000 Subject: [Koha-bugs] [Bug 36332] JS error on moremember In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36332 Jonathan Druart changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Signed Off |Passed QA -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 15 14:59:26 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 15 Mar 2024 13:59:26 +0000 Subject: [Koha-bugs] [Bug 33361] Renewals prevented on items where there is an item level hold on another item on the record In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33361 Nick Clemens changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |nick at bywatersolutions.com --- Comment #3 from Nick Clemens --- I don't recreate this -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 15 15:06:12 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 15 Mar 2024 14:06:12 +0000 Subject: [Koha-bugs] [Bug 36326] Biblio detail view - Deletion of items is broken In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36326 --- Comment #3 from Pedro Amorim --- Created attachment 163238 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163238&action=edit Bug 36326: PoC Joubu, whats your opinion on this approach? -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 15 15:06:53 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 15 Mar 2024 14:06:53 +0000 Subject: [Koha-bugs] [Bug 36326] Biblio detail view - Deletion of items is broken In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36326 --- Comment #4 from Pedro Amorim --- Replacing "build link" logic with "build invisible form" logic. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 15 15:07:57 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 15 Mar 2024 14:07:57 +0000 Subject: [Koha-bugs] [Bug 20657] Globally enable PRE_CHOMP and POST_CHOMP in Template Toolkit configuration In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=20657 --- Comment #17 from Jonathan Druart --- Created attachment 163239 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163239&action=edit Bug 20657: Explicit + in class We need a script to catch those ones -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 15 15:07:59 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 15 Mar 2024 14:07:59 +0000 Subject: [Koha-bugs] [Bug 20657] Globally enable PRE_CHOMP and POST_CHOMP in Template Toolkit configuration In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=20657 --- Comment #18 from Jonathan Druart --- Created attachment 163240 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163240&action=edit Bug 20657: Explicit + for TT vars in sentences If inside div and span? -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 15 15:08:02 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 15 Mar 2024 14:08:02 +0000 Subject: [Koha-bugs] [Bug 20657] Globally enable PRE_CHOMP and POST_CHOMP in Template Toolkit configuration In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=20657 --- Comment #19 from Jonathan Druart --- Created attachment 163241 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163241&action=edit Bug 20657: Add non-breaking space in alphabet list -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 15 15:08:15 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 15 Mar 2024 14:08:15 +0000 Subject: [Koha-bugs] [Bug 20657] Globally enable PRE_CHOMP and POST_CHOMP in Template Toolkit configuration In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=20657 Jonathan Druart changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Needs Signoff |Failed QA --- Comment #20 from Jonathan Druart --- We are clearly not ready for that. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 15 15:15:39 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 15 Mar 2024 14:15:39 +0000 Subject: [Koha-bugs] [Bug 36333] New: Remove all empty lines from template's output Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36333 Bug ID: 36333 Summary: Remove all empty lines from template's output Change sponsored?: --- Product: Koha Version: unspecified Hardware: All OS: All Status: ASSIGNED Severity: normal Priority: P5 - low Component: Templates Assignee: jonathan.druart at gmail.com Reporter: jonathan.druart at gmail.com QA Contact: testopia at bugs.koha-community.org We have tried global TT CHOMP (see bug 20657) but it's not trivial and will introduce a lot of side-effects. I would like to reduce the number of empty lines in a more secure way. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 15 15:16:10 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 15 Mar 2024 14:16:10 +0000 Subject: [Koha-bugs] [Bug 20657] Globally enable PRE_CHOMP and POST_CHOMP in Template Toolkit configuration In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=20657 --- Comment #21 from Jonathan Druart --- I will address the original issue (comment 0) on bug 36333. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 15 15:19:51 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 15 Mar 2024 14:19:51 +0000 Subject: [Koha-bugs] [Bug 36332] JS error on moremember In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36332 --- Comment #2 from Katrin Fischer --- Thanks! -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 15 15:20:40 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 15 Mar 2024 14:20:40 +0000 Subject: [Koha-bugs] [Bug 36333] Remove all empty lines from template's output In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36333 Jonathan Druart changed: What |Removed |Added ---------------------------------------------------------------------------- Status|ASSIGNED |Needs Signoff -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 15 15:20:42 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 15 Mar 2024 14:20:42 +0000 Subject: [Koha-bugs] [Bug 36333] Remove all empty lines from template's output In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36333 --- Comment #1 from Jonathan Druart --- Created attachment 163242 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163242&action=edit Bug 36333: Remove empty lines from template's output This patch removes empty lines (containing only whitespaces) from the output. It does not have the intented result, we don't gain much in term of size. However the source is way cleaner and easier to read. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 15 15:24:26 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 15 Mar 2024 14:24:26 +0000 Subject: [Koha-bugs] [Bug 36326] Biblio detail view - Deletion of items is broken In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36326 --- Comment #5 from Jonathan Druart --- With bug 33568 in the queue, I really would prefer to limit the changes we add to this template. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 15 15:26:53 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 15 Mar 2024 14:26:53 +0000 Subject: [Koha-bugs] [Bug 36326] Biblio detail view - Deletion of items is broken In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36326 --- Comment #6 from Jonathan Druart --- Otherwise the way to do would be to have a form with empty hidden inputs that we populate when the form is submitted. like what we do on commit 1415fee322a497a3dc7e511a61854a4099ea40a6 Bug 36193: cud- treatment for cash_registers.pl or commit c706fc9e41583f593bda7a555764f61116e11fbb Bug 34478: Replace delete links with form - smart-rules -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 15 15:31:39 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 15 Mar 2024 14:31:39 +0000 Subject: [Koha-bugs] [Bug 29539] UNIMARC: authority number in $9 displays for thesaurus controlled fields instead of content of $a In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29539 Katrin Fischer changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Passed QA |Patch doesn't apply --- Comment #24 from Katrin Fischer --- Hi Marcel, I tried to apply the patches in the attached sequence and the other way around, I always end up with: Apply? [(y)es, (n)o, (i)nteractive] i Applying: Bug 29539: (follow-up) remove tag_onesubject template error: sha1 information is lacking or useless (koha-tmpl/opac-tmpl/bootstrap/en/xslt/UNIMARCslimUtils.xsl). error: could not build fake ancestor Patch failed at 0001 Bug 29539: (follow-up) remove tag_onesubject template hint: Use 'git am --show-current-patch=diff' to see the failed patch When you have resolved this problem run "git bz apply --continue". If you would prefer to skip this patch, instead run "git bz apply --skip". To restore the original branch and stop patching run "git bz apply --abort". Patch left in /tmp/Bug-29539-follow-up-remove-tagonesubject-template-daluwkeh.patch kohadev-koha at kohadevbox:koha(master|AM 1/1)$ git log Can you please check/rebase on latest master? -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 15 15:32:33 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 15 Mar 2024 14:32:33 +0000 Subject: [Koha-bugs] [Bug 16122] Item record needs to keep local use count In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=16122 Andrew Fuerste-Henry changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Needs Signoff |Signed Off -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 15 15:32:36 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 15 Mar 2024 14:32:36 +0000 Subject: [Koha-bugs] [Bug 16122] Item record needs to keep local use count In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=16122 Andrew Fuerste-Henry changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #163072|0 |1 is obsolete| | --- Comment #90 from Andrew Fuerste-Henry --- Created attachment 163243 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163243&action=edit Bug 16122: Add localuse column to items and deleteditems Signed-off-by: Christopher Brannon Signed-off-by: Emily Lamancusa Signed-off-by: Katrin Fischer Signed-off-by: Andrew Fuerste-Henry Signed-off-by: Andrew Fuerste Henry -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 15 15:32:39 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 15 Mar 2024 14:32:39 +0000 Subject: [Koha-bugs] [Bug 16122] Item record needs to keep local use count In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=16122 Andrew Fuerste-Henry changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #163073|0 |1 is obsolete| | --- Comment #91 from Andrew Fuerste-Henry --- Created attachment 163244 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163244&action=edit Bug 16122: API and Schema updates Signed-off-by: Christopher Brannon Signed-off-by: Emily Lamancusa Signed-off-by: Katrin Fischer Signed-off-by: Andrew Fuerste-Henry Signed-off-by: Andrew Fuerste Henry -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 15 15:32:42 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 15 Mar 2024 14:32:42 +0000 Subject: [Koha-bugs] [Bug 16122] Item record needs to keep local use count In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=16122 Andrew Fuerste-Henry changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #163074|0 |1 is obsolete| | --- Comment #92 from Andrew Fuerste-Henry --- Created attachment 163245 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163245&action=edit Bug 16122: Increment items.localuse Signed-off-by: Andrew Fuerste Henry -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 15 15:32:45 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 15 Mar 2024 14:32:45 +0000 Subject: [Koha-bugs] [Bug 16122] Item record needs to keep local use count In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=16122 Andrew Fuerste-Henry changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #163075|0 |1 is obsolete| | --- Comment #93 from Andrew Fuerste-Henry --- Created attachment 163246 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163246&action=edit Bug 16122: Add display and Table settings Signed-off-by: Andrew Fuerste-Henry Signed-off-by: Andrew Fuerste Henry -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 15 15:32:48 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 15 Mar 2024 14:32:48 +0000 Subject: [Koha-bugs] [Bug 16122] Item record needs to keep local use count In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=16122 Andrew Fuerste-Henry changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #163076|0 |1 is obsolete| | --- Comment #94 from Andrew Fuerste-Henry --- Created attachment 163247 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163247&action=edit Bug 16122: Add maintenance script to update items.localuse from stats Signed-off-by: Emily Lamancusa Signed-off-by: Katrin Fischer Signed-off-by: Andrew Fuerste-Henry Signed-off-by: Andrew Fuerste Henry -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 15 15:32:51 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 15 Mar 2024 14:32:51 +0000 Subject: [Koha-bugs] [Bug 16122] Item record needs to keep local use count In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=16122 Andrew Fuerste-Henry changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #163077|0 |1 is obsolete| | --- Comment #95 from Andrew Fuerste-Henry --- Created attachment 163248 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163248&action=edit Bug 16122: Add unit test To test: 1. Apply patch, updatedatabase & schema, restart all Services 2. Go to Administration > Table setting. Find the holdings table ( Catalog > holdings_table ) and turn the local use column on. 3. Go to an item record and notice the column 'Local uses' 4. Turn the system preference RecordLocalUseOnReturn Off. 5. Check in an item that is not checkout out. No local use should be recorded for the item. 6. Turn RecordLocalUseOnReturn on and check in an item that is not checked out. Local use on that item should increment by 1. 7. Create a statistical patron and check an item out to them. Local use should increment by 1. 8. Go to /api/v1/items?external_id={barcode} and make sure the numbers for localuse look correct. To test maintainence script: 1. Without the patch, have RecordLocalUseOnReturn on. 2. Check in some items to record localuse in the stats table. Keep note of those stats. 3. Apply the patches, updatedatabase. 4. Run the maintenance script, perl update_localuse_from_statistics.pl 5. Now check that items.localuse is congruent with what is in the stats table Signed-off-by: Andrew Fuerste Henry -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 15 15:38:14 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 15 Mar 2024 14:38:14 +0000 Subject: [Koha-bugs] [Bug 36334] New: Unnecessary JS code in member.tt Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36334 Bug ID: 36334 Summary: Unnecessary JS code in member.tt Change sponsored?: --- Product: Koha Version: unspecified Hardware: All OS: All Status: ASSIGNED Severity: minor Priority: P5 - low Component: Templates Assignee: jonathan.druart at gmail.com Reporter: jonathan.druart at gmail.com QA Contact: testopia at bugs.koha-community.org -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 15 15:40:08 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 15 Mar 2024 14:40:08 +0000 Subject: [Koha-bugs] [Bug 29522] Bib record not correctly updated when merging identical authorities with LinkerModule set to First Match In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29522 Katrin Fischer changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Passed QA |Pushed to master Version(s)| |24.05.00 released in| | -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 15 15:40:10 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 15 Mar 2024 14:40:10 +0000 Subject: [Koha-bugs] [Bug 29522] Bib record not correctly updated when merging identical authorities with LinkerModule set to First Match In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29522 --- Comment #18 from Katrin Fischer --- Pushed for 24.05! Well done everyone, thank you! -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 15 15:40:12 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 15 Mar 2024 14:40:12 +0000 Subject: [Koha-bugs] [Bug 35934] Items in transit show as both in-transit and Available on holdings list In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35934 Katrin Fischer changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Passed QA |Pushed to master Version(s)| |24.05.00 released in| | -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 15 15:40:14 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 15 Mar 2024 14:40:14 +0000 Subject: [Koha-bugs] [Bug 35934] Items in transit show as both in-transit and Available on holdings list In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35934 --- Comment #4 from Katrin Fischer --- Pushed for 24.05! Well done everyone, thank you! -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 15 15:40:15 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 15 Mar 2024 14:40:15 +0000 Subject: [Koha-bugs] [Bug 35944] Bookings is not taken into account in CanBookBeRenewed In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35944 Katrin Fischer changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Passed QA |Pushed to master Version(s)| |24.05.00 released in| | -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 15 15:40:17 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 15 Mar 2024 14:40:17 +0000 Subject: [Koha-bugs] [Bug 35944] Bookings is not taken into account in CanBookBeRenewed In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35944 --- Comment #25 from Katrin Fischer --- Pushed for 24.05! Well done everyone, thank you! -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 15 15:40:18 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 15 Mar 2024 14:40:18 +0000 Subject: [Koha-bugs] [Bug 35997] Cancelling a hold should remove the hold from the queue In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35997 Katrin Fischer changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Passed QA |Pushed to master Version(s)| |24.05.00 released in| | -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 15 15:40:20 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 15 Mar 2024 14:40:20 +0000 Subject: [Koha-bugs] [Bug 35997] Cancelling a hold should remove the hold from the queue In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35997 --- Comment #12 from Katrin Fischer --- Pushed for 24.05! Well done everyone, thank you! -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 15 15:40:22 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 15 Mar 2024 14:40:22 +0000 Subject: [Koha-bugs] [Bug 36224] It looks like spsuggest functionality was removed years ago, but the templates still refer to it In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36224 Katrin Fischer changed: What |Removed |Added ---------------------------------------------------------------------------- Version(s)| |24.05.00 released in| | Status|Passed QA |Pushed to master -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 15 15:40:23 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 15 Mar 2024 14:40:23 +0000 Subject: [Koha-bugs] [Bug 36224] It looks like spsuggest functionality was removed years ago, but the templates still refer to it In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36224 --- Comment #4 from Katrin Fischer --- Pushed for 24.05! Well done everyone, thank you! -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 15 15:40:25 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 15 Mar 2024 14:40:25 +0000 Subject: [Koha-bugs] [Bug 36277] t/db_dependent/api/v1/transfer_limits.t is failing In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36277 Katrin Fischer changed: What |Removed |Added ---------------------------------------------------------------------------- Version(s)| |24.05.00 released in| | Status|Passed QA |Pushed to master -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 15 15:40:26 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 15 Mar 2024 14:40:26 +0000 Subject: [Koha-bugs] [Bug 36277] t/db_dependent/api/v1/transfer_limits.t is failing In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36277 --- Comment #22 from Katrin Fischer --- Pushed for 24.05! Well done everyone, thank you! -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 15 15:40:28 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 15 Mar 2024 14:40:28 +0000 Subject: [Koha-bugs] [Bug 36292] 'See all charges' hyperlink to view guarantee fees is not linked correctly In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36292 Katrin Fischer changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Passed QA |Pushed to master Version(s)| |24.05.00 released in| | -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 15 15:40:29 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 15 Mar 2024 14:40:29 +0000 Subject: [Koha-bugs] [Bug 36292] 'See all charges' hyperlink to view guarantee fees is not linked correctly In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36292 --- Comment #6 from Katrin Fischer --- Pushed for 24.05! Well done everyone, thank you! -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 15 15:40:31 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 15 Mar 2024 14:40:31 +0000 Subject: [Koha-bugs] [Bug 36298] In patrons search road type authorized value code displayed in patron address In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36298 Katrin Fischer changed: What |Removed |Added ---------------------------------------------------------------------------- Version(s)| |24.05.00 released in| | Status|Passed QA |Pushed to master -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 15 15:40:32 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 15 Mar 2024 14:40:32 +0000 Subject: [Koha-bugs] [Bug 36298] In patrons search road type authorized value code displayed in patron address In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36298 --- Comment #4 from Katrin Fischer --- Pushed for 24.05! Well done everyone, thank you! -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 15 15:40:33 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 15 Mar 2024 14:40:33 +0000 Subject: [Koha-bugs] [Bug 36334] Unnecessary JS code in member.tt In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36334 Jonathan Druart changed: What |Removed |Added ---------------------------------------------------------------------------- Status|ASSIGNED |Needs Signoff -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 15 15:40:34 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 15 Mar 2024 14:40:34 +0000 Subject: [Koha-bugs] [Bug 36332] JS error on moremember In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36332 Katrin Fischer changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Passed QA |Pushed to master Version(s)| |24.05.00 released in| | -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 15 15:40:35 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 15 Mar 2024 14:40:35 +0000 Subject: [Koha-bugs] [Bug 36332] JS error on moremember In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36332 --- Comment #3 from Katrin Fischer --- Pushed for 24.05! Well done everyone, thank you! -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 15 15:40:35 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 15 Mar 2024 14:40:35 +0000 Subject: [Koha-bugs] [Bug 36334] Unnecessary JS code in member.tt In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36334 --- Comment #1 from Jonathan Druart --- Created attachment 163249 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163249&action=edit Bug 36334: Remove unnecessary JS code from member.tt This was initially written to set the input/select in the form in the left side of the main patron search page. But this is now done in patron-search.inc: koha-tmpl/intranet-tmpl/prog/en/includes/patron-search.inc: I don't see how/when this code is still used. Additionally: #searchmember_filter => does not exist, it's .search_patron_filter $("searchfieldstype_filter").val("[% searchfieldstype | html %]"); => Not a valid selector -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 15 15:41:28 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 15 Mar 2024 14:41:28 +0000 Subject: [Koha-bugs] [Bug 36334] Unnecessary JS code in member.tt In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36334 Jonathan Druart changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |nick at bywatersolutions.com, | |pedro.amorim at ptfs-europe.co | |m --- Comment #2 from Jonathan Druart --- Nick, Pedro, could you confirm that? -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 15 15:45:59 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 15 Mar 2024 14:45:59 +0000 Subject: [Koha-bugs] [Bug 36297] Avoid using var named "t" in templates In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36297 --- Comment #8 from Julian Maurice --- (In reply to Julian Maurice from comment #4) > Or another (but hypothetical as I'm not sure it works): redefine these > functions as filters [% "..." | t %] (I believe filters don't conflict with > variable names ?) For the record, it can work as a filter. It requires some code modification that I will submit in another bug report. I think it can be useful whatever we decide on this bug. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 15 15:47:19 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 15 Mar 2024 14:47:19 +0000 Subject: [Koha-bugs] [Bug 19157] XSS Stored in letter.pl In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=19157 Jonathan Druart changed: What |Removed |Added ---------------------------------------------------------------------------- Product|Koha security |Koha Component|Koha |Architecture, internals, | |and plumbing Status|ASSIGNED |RESOLVED Resolution|--- |DUPLICATE Group|Koha security | --- Comment #8 from Jonathan Druart --- Fixed. *** This bug has been marked as a duplicate of bug 13618 *** -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 15 15:47:19 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 15 Mar 2024 14:47:19 +0000 Subject: [Koha-bugs] [Bug 13618] Add additional template filter methods and a filter presence test to Koha In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=13618 --- Comment #272 from Jonathan Druart --- *** Bug 19157 has been marked as a duplicate of this bug. *** -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 15 15:49:55 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 15 Mar 2024 14:49:55 +0000 Subject: [Koha-bugs] [Bug 36326] Biblio detail view - Deletion of items is broken In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36326 Pedro Amorim changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #163238|0 |1 is obsolete| | --- Comment #7 from Pedro Amorim --- Created attachment 163250 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163250&action=edit Bug 36326: PoC followup I've moved the static elements to the form instead of appending them. This does not overlap 100% with bug 36193 or 34478 as in those cases we're not adding inputs to the form dynamically, so we should/have to keep that in here. Let me know what you think. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 15 15:50:23 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 15 Mar 2024 14:50:23 +0000 Subject: [Koha-bugs] [Bug 36335] New: ILS-DI GetRecords bad encoding for UNIMARC Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36335 Bug ID: 36335 Summary: ILS-DI GetRecords bad encoding for UNIMARC Change sponsored?: --- Product: Koha Version: master Hardware: All OS: All Status: NEW Severity: normal Priority: P5 - low Component: Web services Assignee: koha-bugs at lists.koha-community.org Reporter: fridolin.somers at biblibre.com QA Contact: testopia at bugs.koha-community.org ILS-DI GetRecords generates bad encoding of MARCXML for UNIMARC, like OAI in Bug 34467 -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 15 15:50:29 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 15 Mar 2024 14:50:29 +0000 Subject: [Koha-bugs] [Bug 36335] ILS-DI GetRecords bad encoding for UNIMARC In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36335 Fridolin Somers changed: What |Removed |Added ---------------------------------------------------------------------------- Depends on| |34467 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=34467 [Bug 34467] OAI GetRecord bad encoding for UNIMARC -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Fri Mar 15 15:50:29 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 15 Mar 2024 14:50:29 +0000 Subject: [Koha-bugs] [Bug 34467] OAI GetRecord bad encoding for UNIMARC In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=34467 Fridolin Somers changed: What |Removed |Added ---------------------------------------------------------------------------- Blocks| |36335 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36335 [Bug 36335] ILS-DI GetRecords bad encoding for UNIMARC -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 15 15:50:38 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 15 Mar 2024 14:50:38 +0000 Subject: [Koha-bugs] [Bug 36335] ILS-DI GetRecords bad encoding for UNIMARC In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36335 Fridolin Somers changed: What |Removed |Added ---------------------------------------------------------------------------- Assignee|koha-bugs at lists.koha-commun |fridolin.somers at biblibre.co |ity.org |m Status|NEW |ASSIGNED -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 15 16:04:12 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 15 Mar 2024 15:04:12 +0000 Subject: [Koha-bugs] [Bug 36335] ILS-DI GetRecords bad encoding for UNIMARC In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36335 Fridolin Somers changed: What |Removed |Added ---------------------------------------------------------------------------- Patch complexity|--- |Trivial patch Status|ASSIGNED |Needs Signoff -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 15 16:04:14 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 15 Mar 2024 15:04:14 +0000 Subject: [Koha-bugs] [Bug 36335] ILS-DI GetRecords bad encoding for UNIMARC In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36335 --- Comment #1 from Fridolin Somers --- Created attachment 163251 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163251&action=edit Bug 36335: Fix ILS-DI GetRecords bad encoding for UNIMARC ILS-DI GetRecords generates bad encoding of MARCXML for UNIMARC, like OAI in Bug 34467 Enable ILS-DI and display a record with : /cgi-bin/koha/ilsdi.pl?service=GetRecords&id= -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 15 16:14:14 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 15 Mar 2024 15:14:14 +0000 Subject: [Koha-bugs] [Bug 31729] Enable automatic filesystem refresh in Plack In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31729 --- Comment #57 from Thomas Klausner --- Finally created a pull-req for KTD to add my "fix" to the KTD docs: https://gitlab.com/koha-community/koha-testing-docker/-/merge_requests/492 I still see no easy way to add this to KTD itself, because KTD is calling koha-plack, and we don't want to add hot-reload there. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 15 16:18:41 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 15 Mar 2024 15:18:41 +0000 Subject: [Koha-bugs] [Bug 36324] Authority subfields cannot be reordered In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36324 --- Comment #2 from Esther Melander --- Created attachment 163253 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163253&action=edit Missing move icon Ah, I see that it does work and it is definitely not obvious. By clicking and dragging just to the left of the subfield letter the field can be reordered. However, the mouse pointer does not change to the double cross arrows when hovering. And with the missing move icon, the behavior is changed from previous versions. I have attached an image with screen shots of the Authority Editor versus the Basic Editor. Prior to 23.11, the Authority Editor had the move icon and the mouse pointer change. Changing the bug title to more accurately reflect the problem. -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 15 16:19:08 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 15 Mar 2024 15:19:08 +0000 Subject: [Koha-bugs] [Bug 36324] Authority editor missing move icon next to subfields In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36324 Esther Melander changed: What |Removed |Added ---------------------------------------------------------------------------- Summary|Authority subfields cannot |Authority editor missing |be reordered |move icon next to subfields -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Fri Mar 15 16:35:10 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 15 Mar 2024 15:35:10 +0000 Subject: [Koha-bugs] [Bug 33568] Use the REST API to display items on the biblio detail view In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33568 --- Comment #71 from Jonathan Druart --- Remote branch rebased. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 15 16:38:56 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 15 Mar 2024 15:38:56 +0000 Subject: [Koha-bugs] [Bug 36326] Biblio detail view - Deletion of items is broken In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36326 --- Comment #8 from Jonathan Druart --- This second patch is causing a major conflict with bug 33568 while my single line patch is fixing the original problem without any conflicts. I would prefer to prevent change to this template until 33568 is pushed. I will be happy to provide a better fix on top of it once in master. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 15 16:42:51 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 15 Mar 2024 15:42:51 +0000 Subject: [Koha-bugs] [Bug 36331] Items that cannot be held are prevented renewal when there are holds on the record In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36331 Andrew Fuerste-Henry changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Needs Signoff |Signed Off -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 15 16:42:52 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 15 Mar 2024 15:42:52 +0000 Subject: [Koha-bugs] [Bug 36331] Items that cannot be held are prevented renewal when there are holds on the record In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36331 Andrew Fuerste-Henry changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #163236|0 |1 is obsolete| | --- Comment #2 from Andrew Fuerste-Henry --- Created attachment 163254 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163254&action=edit Bug 36331: Don't check reserves that an item cannot fill when checking if it can be renewed Before this patch we get all holds on a record and see if we can fill them with available items. This means we check to fill holds that the item in questoion may not be able to fill, especially in the case where no holds are allowed on the item type, this is wrong To test: 1 - Find or create a biblio with two items of different item types 2 - Make sure one item type allows holds, and the other has: "Default holds policy by item type" Set to "No holds allowed" 3 - Set system preference "AllowRenewalIfOtherItemsAvailable" to "Don't allow" 4 - Check out the unholdable item to a patron 5 - Set a hold for a different patron on the next available item 6 - Confirm the checked out item can be renewed (don't renew, just view the checkouts page) 7 - Checkout the other item to a third patron 8 - Confirm the first item can still be renewed 9 - Set system preference "AllowRenewalIfOtherItemsAvailable" to "Allow" 10 - Confirm the item cannot be renewed now 11 - Apply patch, restart all 12 - Confirm the item can be renewed 13 - Set the item type to a type that allows holds 14 - Confirm the item can no longer be renewed 15 - Restore the item type 16 - Set system preference "AllowRenewalIfOtherItemsAvailable" to "Don't allow" 17 - Confirm the item can be renewed 18 - Check in the item from the third patron 19 - Confirm the item can still be renewed 20 - prove -v t/db_dependent/Circulation.t - test still pass Signed-off-by: Andrew Fuerste Henry -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 15 17:19:57 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 15 Mar 2024 16:19:57 +0000 Subject: [Koha-bugs] [Bug 36320] Clicking Edit items from catalogue/detail.pl leads to 'Add item' screen In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36320 Juliet Heltibridle changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |jheltibridle at rcplib.org --- Comment #3 from Juliet Heltibridle --- I like the idea of changing it to "Manage items" and replacing the Add items form at the bottom with a button to add an item. I use this page for a few tasks, like duplicating an item, or editing items individually one after another instead of in a batch. Our system also has holdings on the normal view page split so other library holdings don't show in the first tab, and going to the "edit item" screen gives me a table with everyone's items, so I can see them together if needed. It looks like I could do the same things by using the Add item drop-down, so I wouldn't be opposed to getting rid of the "edit items" drop-down entirely, if that was the consensus. -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 15 17:39:00 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 15 Mar 2024 16:39:00 +0000 Subject: [Koha-bugs] [Bug 36334] Unnecessary JS code in member.tt In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36334 Pedro Amorim changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Needs Signoff |Signed Off -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 15 17:39:02 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 15 Mar 2024 16:39:02 +0000 Subject: [Koha-bugs] [Bug 36334] Unnecessary JS code in member.tt In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36334 Pedro Amorim changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #163249|0 |1 is obsolete| | --- Comment #3 from Pedro Amorim --- Created attachment 163258 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163258&action=edit Bug 36334: Remove unnecessary JS code from member.tt This was initially written to set the input/select in the form in the left side of the main patron search page. But this is now done in patron-search.inc: koha-tmpl/intranet-tmpl/prog/en/includes/patron-search.inc: I don't see how/when this code is still used. Additionally: #searchmember_filter => does not exist, it's .search_patron_filter $("searchfieldstype_filter").val("[% searchfieldstype | html %]"); => Not a valid selector Signed-off-by: Pedro Amorim -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 15 18:48:07 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 15 Mar 2024 17:48:07 +0000 Subject: [Koha-bugs] [Bug 36027] search_for_data_inconsistencies.pl - make each section optional In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36027 --- Comment #15 from Phan Tung Bui --- Created attachment 163259 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163259&action=edit Bug 36027 : (follow-up) Improvement : Add check option i add the check option so that instead of skipping certain checks, you can also choose a specific test to run -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 15 19:04:10 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 15 Mar 2024 18:04:10 +0000 Subject: [Koha-bugs] [Bug 30579] When placing item level hold, some options that are not used are not disabled In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30579 Nick Clemens changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Patch doesn't apply |Signed Off -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 15 19:04:13 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 15 Mar 2024 18:04:13 +0000 Subject: [Koha-bugs] [Bug 30579] When placing item level hold, some options that are not used are not disabled In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30579 Nick Clemens changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #157937|0 |1 is obsolete| | Attachment #157938|0 |1 is obsolete| | Attachment #157939|0 |1 is obsolete| | Attachment #157940|0 |1 is obsolete| | Attachment #157941|0 |1 is obsolete| | Attachment #157942|0 |1 is obsolete| | Attachment #157943|0 |1 is obsolete| | --- Comment #63 from Nick Clemens --- Created attachment 163260 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163260&action=edit Bug 30579: Disentangle multi-hold and single bib forms This patch alters the structure of the hold request page to make it clear that "Hold next available", "Hold item group", and "Hold specific item" are mutually-exclusive options. While there is some duplication from this, it makes the sections easier to read and allows for more variation in the two forms To test: 1 - Find a bib with multiple items 2 - Enable item groups and item group holds in system preferences 3 - Load the records detail page 4 - Add an item group on the item groups tab 5 - Select two items and add to the group 6 - Click the 'Holds' tab and search for/select a patron 7 - Confirm the three levels of holds are clear 8 - Confirm checking the radio next to one disables the others 9 - Check 'Hold next available item from an item group' 10 - Do not select an item group 11 - Click 'Place hold' and confirm you are notified of need to select an item group NOTE: if you are overrirding you may also have an alert that the items cannot normally be put on hold 12 - Click 'Place hold on a specific item' - but do not select an item 13 - Click place hold and confirm there is an alert and you cannot continue 14 - Click 'Hold next available item' and place hold 15 - Hold is successfully placed 16 - Place another hold for the same patron 17 - Only the 'Hold next available item' form is enabled 18 - Confirm you cannot switch hold type 19 - Place hold 20 - Select a new patron and place an item group hold 21 - Select the same patron and place another hold - you are forced to place an item group hold 22 - Select a new patron and place a hold on a specific item 23 - Place a second hold, confirm you can only place it on a specific item Signed-off-by: hinemoea Signed-off-by: Sam Lau Signed-off-by: Emily Lamancusa -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 15 19:04:16 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 15 Mar 2024 18:04:16 +0000 Subject: [Koha-bugs] [Bug 30579] When placing item level hold, some options that are not used are not disabled In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30579 --- Comment #64 from Nick Clemens --- Created attachment 163261 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163261&action=edit Bug 30579: Add missing for attribute on label Signed-off-by: Emily Lamancusa -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 15 19:04:20 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 15 Mar 2024 18:04:20 +0000 Subject: [Koha-bugs] [Bug 30579] When placing item level hold, some options that are not used are not disabled In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30579 --- Comment #65 from Nick Clemens --- Created attachment 163262 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163262&action=edit Bug 30579: Remove doubled notes field Signed-off-by: Emily Lamancusa -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 15 19:04:23 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 15 Mar 2024 18:04:23 +0000 Subject: [Koha-bugs] [Bug 30579] When placing item level hold, some options that are not used are not disabled In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30579 --- Comment #66 from Nick Clemens --- Created attachment 163263 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163263&action=edit Bug 30579: (follow-up) Add fieldsets and style disabled elements This patch surrounds each section with a fieldset which allow enabling/disabling all the elements in one go. CSS is added to make it clear which fields are disabled. Button for item specific is moved form the multi-hold section Javascript is simplified to use the new fieldsets To test: 1 - Repeate test plan on earlier commit 2 - Additionally, search and select multiple records and place hold 3 - Confirm multi-hold placing works :-) Signed-off-by: Emily Lamancusa -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 15 19:04:26 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 15 Mar 2024 18:04:26 +0000 Subject: [Koha-bugs] [Bug 30579] When placing item level hold, some options that are not used are not disabled In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30579 --- Comment #67 from Nick Clemens --- Created attachment 163264 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163264&action=edit Bug 30579: (follow-up) Use same conditions on item groups place hold button as on other options Signed-off-by: Emily Lamancusa -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 15 19:04:29 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 15 Mar 2024 18:04:29 +0000 Subject: [Koha-bugs] [Bug 30579] When placing item level hold, some options that are not used are not disabled In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30579 --- Comment #68 from Nick Clemens --- Created attachment 163265 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163265&action=edit Bug 30579: (follow-up) Add required label and warning when hold levels required Signed-off-by: Emily Lamancusa -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 15 19:04:32 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 15 Mar 2024 18:04:32 +0000 Subject: [Koha-bugs] [Bug 30579] When placing item level hold, some options that are not used are not disabled In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30579 --- Comment #69 from Nick Clemens --- Created attachment 163266 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163266&action=edit Bug 30579: (follow-up) fix button id Signed-off-by: Emily Lamancusa -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 15 19:04:35 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 15 Mar 2024 18:04:35 +0000 Subject: [Koha-bugs] [Bug 30579] When placing item level hold, some options that are not used are not disabled In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30579 --- Comment #70 from Nick Clemens --- Created attachment 163267 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163267&action=edit Bug 30579: (follow-up) Remove unnecessary nested form elements -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 15 19:19:55 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 15 Mar 2024 18:19:55 +0000 Subject: [Koha-bugs] [Bug 36334] Unnecessary JS code in member.tt In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36334 Nick Clemens changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #163258|0 |1 is obsolete| | --- Comment #4 from Nick Clemens --- Created attachment 163268 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163268&action=edit Bug 36334: Remove unnecessary JS code from member.tt This was initially written to set the input/select in the form in the left side of the main patron search page. But this is now done in patron-search.inc: koha-tmpl/intranet-tmpl/prog/en/includes/patron-search.inc: I don't see how/when this code is still used. Additionally: #searchmember_filter => does not exist, it's .search_patron_filter $("searchfieldstype_filter").val("[% searchfieldstype | html %]"); => Not a valid selector Signed-off-by: Pedro Amorim Signed-off-by: Nick Clemens -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 15 19:19:57 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 15 Mar 2024 18:19:57 +0000 Subject: [Koha-bugs] [Bug 36334] Unnecessary JS code in member.tt In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36334 --- Comment #5 from Nick Clemens --- Created attachment 163269 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163269&action=edit Bug 36334: (follow-up) Restore selection of previous values in sidebar Signed-off-by: Nick Clemens -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 15 19:19:57 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 15 Mar 2024 18:19:57 +0000 Subject: [Koha-bugs] [Bug 36206] Administrative plugins In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36206 Kyle M Hall changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Signed Off |Passed QA -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 15 19:20:00 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 15 Mar 2024 18:20:00 +0000 Subject: [Koha-bugs] [Bug 36206] Administrative plugins In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36206 Kyle M Hall changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #162780|0 |1 is obsolete| | Attachment #162781|0 |1 is obsolete| | Attachment #162782|0 |1 is obsolete| | Attachment #162783|0 |1 is obsolete| | --- Comment #17 from Kyle M Hall --- Created attachment 163270 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163270&action=edit Bug 36206: Add 'admin' plugins option This patch adds an admin plugins class to the plugins system and displays such plugins under the 'Plugins' section in the Administration page. Signed-off-by: Lucas Gass Signed-off-by: Kyle M Hall -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 15 19:20:07 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 15 Mar 2024 18:20:07 +0000 Subject: [Koha-bugs] [Bug 36206] Administrative plugins In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36206 --- Comment #18 from Kyle M Hall --- Created attachment 163271 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163271&action=edit Bug 36206: Expose administration page to users with plugins_admin permission This patch updates the intranet home page logic such that the administration button appears for those users with just the 'admin' subpermission of plugins to allow them to access such plugins. We also update the display logic found inside the admin-home page so that user see plugin management appropriately. Signed-off-by: Lucas Gass Signed-off-by: Kyle M Hall -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 15 19:20:09 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 15 Mar 2024 18:20:09 +0000 Subject: [Koha-bugs] [Bug 36206] Administrative plugins In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36206 --- Comment #19 from Kyle M Hall --- Created attachment 163272 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163272&action=edit Bug 36206: Add 'Run administration tool' to plugin actions This patch adds the new 'Run administration tool' option to the plugin actions dropdown menu for plugins with such a function. Signed-off-by: Lucas Gass Signed-off-by: Kyle M Hall -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 15 19:20:12 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 15 Mar 2024 18:20:12 +0000 Subject: [Koha-bugs] [Bug 36206] Administrative plugins In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36206 --- Comment #20 from Kyle M Hall --- Created attachment 163273 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163273&action=edit Bug 36206: (follow-up) Change file permission Signed-off-by: Lucas Gass Signed-off-by: Kyle M Hall -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 15 19:20:14 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 15 Mar 2024 18:20:14 +0000 Subject: [Koha-bugs] [Bug 36206] Administrative plugins In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36206 --- Comment #21 from Kyle M Hall --- Created attachment 163274 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163274&action=edit Bug 36206: (QA follow-up) Tidy admin-home.pl Signed-off-by: Kyle M Hall -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 15 19:21:46 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 15 Mar 2024 18:21:46 +0000 Subject: [Koha-bugs] [Bug 30579] When placing item level hold, some options that are not used are not disabled In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30579 Kyle M Hall changed: What |Removed |Added ---------------------------------------------------------------------------- QA Contact|testopia at bugs.koha-communit |kyle at bywatersolutions.com |y.org | -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 15 19:22:29 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 15 Mar 2024 18:22:29 +0000 Subject: [Koha-bugs] [Bug 36334] Unnecessary JS code in member.tt In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36334 Nick Clemens changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #163269|0 |1 is obsolete| | --- Comment #6 from Nick Clemens --- Created attachment 163275 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163275&action=edit Bug 36334: (follow-up) Restore selection of previous values in sidebar Before and after the first patch the values for category and library were not populated To test: 1 - With nothing applied search in the top bar, clicking the 'settings' button 2 - Select a search field, search type, category, and library 3 - Perform search, note only search field and search type are populated 4 - Apply first path, repeat, same result 5 - Apply this patch, repeat 6 - Confirm all four fields now populate in sidebar Signed-off-by: Nick Clemens -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 15 19:22:54 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 15 Mar 2024 18:22:54 +0000 Subject: [Koha-bugs] [Bug 36334] Unnecessary JS code in member.tt In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36334 Nick Clemens changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Signed Off |Passed QA --- Comment #7 from Nick Clemens --- Jonathan, can you confirm my follow-up? -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 15 19:32:41 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 15 Mar 2024 18:32:41 +0000 Subject: [Koha-bugs] [Bug 12450] Easily close a branch In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=12450 Liz Rea changed: What |Removed |Added ---------------------------------------------------------------------------- Version|unspecified |master CC| |wizzyrea at gmail.com Summary|Closing libraries for the |Easily close a branch |summer | Severity|enhancement |new feature Priority|P5 - low |P3 -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Fri Mar 15 19:58:36 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 15 Mar 2024 18:58:36 +0000 Subject: [Koha-bugs] [Bug 10060] Allow adding a branch parameter to the web-based self check to indicate library its used at In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=10060 --- Comment #24 from Christopher Brannon --- Another issue with forcing setups with multiple branches to login to their specific library for sco is that the typical self check kiosk does not have a standard keyboard. This makes it more difficult to login, and adds unnecessary fussing with setup every single morning. -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 15 20:02:49 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 15 Mar 2024 19:02:49 +0000 Subject: [Koha-bugs] [Bug 36320] Clicking Edit items from catalogue/detail.pl leads to 'Add item' screen In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36320 David Nind changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |david at davidnind.com -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 15 20:08:05 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 15 Mar 2024 19:08:05 +0000 Subject: [Koha-bugs] [Bug 36320] Clicking Edit items from catalogue/detail.pl leads to 'Add item' screen In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36320 --- Comment #4 from Andrew Fuerste-Henry --- It's worth noting that one also ends up on the Add Item screen with a blank item form after each edit of a single item. Whatever we decide on here should also be applied to the post-edit landing page. -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 15 20:27:07 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 15 Mar 2024 19:27:07 +0000 Subject: [Koha-bugs] [Bug 36326] Biblio detail view - Deletion of items is broken In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36326 David Nind changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Needs Signoff |Signed Off -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 15 20:27:09 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 15 Mar 2024 19:27:09 +0000 Subject: [Koha-bugs] [Bug 36326] Biblio detail view - Deletion of items is broken In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36326 David Nind changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #163227|0 |1 is obsolete| | --- Comment #9 from David Nind --- Created attachment 163276 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163276&action=edit Bug 36326: Fix batch item mod/del access from biblio detail page Allow both $op eq "show" and "cud-show". We need to keep the POST when we upload a file, but we can simply allow GET with "show". Test plan: Go to the biblio detail page, select an item and test both tools via the links "Delete selected items" and "Modify selected items" Signed-off-by: David Nind -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 15 20:28:19 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 15 Mar 2024 19:28:19 +0000 Subject: [Koha-bugs] [Bug 36326] Biblio detail view - Deletion of items is broken In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36326 David Nind changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |david at davidnind.com --- Comment #10 from David Nind --- I've signed off Jonathan's patch. Feel free to add me to the bug once bug 33568 is pushed. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 15 20:37:32 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 15 Mar 2024 19:37:32 +0000 Subject: [Koha-bugs] [Bug 31988] manager.pl is only user for "Catalog by item type" report In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31988 David Nind changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Needs Signoff |Signed Off -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 15 20:37:35 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 15 Mar 2024 19:37:35 +0000 Subject: [Koha-bugs] [Bug 31988] manager.pl is only user for "Catalog by item type" report In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31988 David Nind changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #163182|0 |1 is obsolete| | --- Comment #6 from David Nind --- Created attachment 163277 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163277&action=edit Bug 31988: Remove reports/itemtypes.plugin This "plugin system" is only used for the itemtypes report. We can simply remove the reports/manager.pl script and this plugin in favor of a dedicated report. Test plan: Same behaviour expected before and after this patch Signed-off-by: David Nind -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 15 20:41:17 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 15 Mar 2024 19:41:17 +0000 Subject: [Koha-bugs] [Bug 31988] manager.pl is only user for "Catalog by item type" report In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31988 David Nind changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |david at davidnind.com --- Comment #7 from David Nind --- Testing notes (using KTD): 1. Go to Reports > Other > Catalog by item type 2. Generate the report and note the results for: - Centerville - All libraries (leave library selection blank) 3. Apply the patch 4. Repeat steps 1-2 5. The results should be the same -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 15 20:56:27 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 15 Mar 2024 19:56:27 +0000 Subject: [Koha-bugs] [Bug 31988] manager.pl is only user for "Catalog by item type" report In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31988 Andrew Fuerste-Henry changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #163277|0 |1 is obsolete| | --- Comment #8 from Andrew Fuerste-Henry --- Created attachment 163278 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163278&action=edit Bug 31988: Remove reports/itemtypes.plugin This "plugin system" is only used for the itemtypes report. We can simply remove the reports/manager.pl script and this plugin in favor of a dedicated report. Test plan: Same behaviour expected before and after this patch Signed-off-by: David Nind Signed-off-by: Andrew Fuerste Henry -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 15 21:19:06 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 15 Mar 2024 20:19:06 +0000 Subject: [Koha-bugs] [Bug 36320] Clicking Edit items from catalogue/detail.pl leads to 'Add item' screen In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36320 Kristi changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |kkrueger at cuyahogalibrary.or | |g --- Comment #5 from Kristi --- Re: I like the idea of changing it to "Manage items" and replacing the Add items form at the bottom with a button to add an item. I use this page for a few tasks, like duplicating an item, or editing items individually one after another instead of in a batch. I also like the idea of Manage items. I would hesitate to add a button to click into to add items from that form since it would add another click to the workflow. One click to get to the Add item form is ideal. Maybe "add items" could be its own option in the dropdown. -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Fri Mar 15 21:33:01 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 15 Mar 2024 20:33:01 +0000 Subject: [Koha-bugs] [Bug 36139] Bug 35518 follow-up: fix AutoSwitchPatron In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36139 David Nind changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Needs Signoff |Patch doesn't apply CC| |david at davidnind.com --- Comment #4 from David Nind --- The patch(es) didn't apply for me - I'm confused why there are four patches shown when applying, versus only one listed under the attachments in the bug. See [1]. In addition, before the patches are applied the current behaviour in master doesn't match with what is described in the bug. For me, the patron successfully switches, but the barcode error is displayed (tested using koha-testing-docker with the sample data): 1. Enable the AutoSwitchPatron system preference. 2. Go to check out an item to a patron: enter name, such as Mary, in the check out search box. 3. On the checkout page, enter the card number for another patron instead of an item barcode, for example: Lisa - 23529000197047. 4. The patron switches to Lisa. 5. Two messages are displayed: Patron was automatically switched by reading the patron card during checking out. Ensure you are working with the right patron. Barcode not found The barcode was not found: 23529000197047 Add record using fast cataloging [1] Result of trying to apply the patch(es): git bz apply 35518 Bug 35518 - Call to C4::Context->userenv happens before it's gets populated breaks code logic in circulation 161929 - Bug 35518: Check authentication and set userenv before fetching userenv variables 161930 - Bug 35518: Tidy the moved blocks 162216 - Bug 35518: follow up - clear the barcode list in AutoSwitchPatron block 162218 - Bug 35518: Follow-up for AutoSwitchPatron - clear $patron variable too Apply? [(y)es, (n)o, (i)nteractive] y Applying: Bug 35518: Check authentication and set userenv before fetching userenv variables Using index info to reconstruct a base tree... M circ/circulation.pl Falling back to patching base and 3-way merge... Auto-merging circ/circulation.pl CONFLICT (content): Merge conflict in circ/circulation.pl error: Failed to merge in the changes. Patch failed at 0001 Bug 35518: Check authentication and set userenv before fetching userenv variables -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 15 21:33:49 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 15 Mar 2024 20:33:49 +0000 Subject: [Koha-bugs] [Bug 36139] Bug 35518 follow-up: fix AutoSwitchPatron In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36139 David Nind changed: What |Removed |Added ---------------------------------------------------------------------------- Assignee|koha-bugs at lists.koha-commun |michael.hafen at washk12.org |ity.org | --- Comment #5 from David Nind --- I've also changed the assignee. -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Fri Mar 15 21:50:06 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 15 Mar 2024 20:50:06 +0000 Subject: [Koha-bugs] [Bug 36333] Remove all empty lines from template's output In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36333 David Nind changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Needs Signoff |Signed Off -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 15 21:50:09 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 15 Mar 2024 20:50:09 +0000 Subject: [Koha-bugs] [Bug 36333] Remove all empty lines from template's output In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36333 David Nind changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #163242|0 |1 is obsolete| | --- Comment #2 from David Nind --- Created attachment 163279 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163279&action=edit Bug 36333: Remove empty lines from template's output This patch removes empty lines (containing only whitespaces) from the output. It does not have the intented result, we don't gain much in term of size. However the source is way cleaner and easier to read. Signed-off-by: David Nind -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 15 22:04:41 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 15 Mar 2024 21:04:41 +0000 Subject: [Koha-bugs] [Bug 36333] Remove all empty lines from template's output In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36333 David Nind changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |david at davidnind.com Text to go in the| |This removes extra blank release notes| |lines from the HTML page | |source for OPAC and staff | |interface pages. The HTML | |page source should now be | |more compact, which should | |make it easier to read. | | | |(The extra blank lines are | |caused by the way HTML | |output is generated by the | |Template Toolkit - it | |includes whitespace | |anywhere there is a | |template tag.) --- Comment #3 from David Nind --- Testing notes (using KTD): 1. View the page source for some OPAC and staff interface pages (for example: home pages for staff interface and OPC, and the details page for a record). 2. Notice that there are a lot of empty lines. 3. Apply the patch. 4. Repeat step 1. 5. Now notice that the JTML page source is much more compact, with minimal extra blank lines. Some examples: - OPAC home page: before - 944 lines; after - 398 lines - OPAC detail page (262 - Programming perl): before - 2487 lines; after - 1285 lines - Staff interface home page: before - 1326 lines; after - 706 lines - Staff detail page (262 - Programming perl): before - 2754 lines; after - 1837 lines Example source for staff interface home page ============================================ Before ~~~~~~ Koha staff interface After ~~~~~ Koha staff interface -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 15 22:19:48 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 15 Mar 2024 21:19:48 +0000 Subject: [Koha-bugs] [Bug 36329] Transfer limits should respect `BranchTransferLimitsType` In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36329 David Nind changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Needs Signoff |Signed Off -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 15 22:19:51 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 15 Mar 2024 21:19:51 +0000 Subject: [Koha-bugs] [Bug 36329] Transfer limits should respect `BranchTransferLimitsType` In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36329 David Nind changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #163232|0 |1 is obsolete| | --- Comment #4 from David Nind --- Created attachment 163280 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163280&action=edit Bug 36329: Add missing return codes Signed-off-by: David Nind -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 15 22:19:53 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 15 Mar 2024 21:19:53 +0000 Subject: [Koha-bugs] [Bug 36329] Transfer limits should respect `BranchTransferLimitsType` In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36329 David Nind changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #163233|0 |1 is obsolete| | --- Comment #5 from David Nind --- Created attachment 163281 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163281&action=edit Bug 36329: Miscelaneous spec fixes Signed-off-by: David Nind -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 15 22:19:56 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 15 Mar 2024 21:19:56 +0000 Subject: [Koha-bugs] [Bug 36329] Transfer limits should respect `BranchTransferLimitsType` In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36329 David Nind changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #163234|0 |1 is obsolete| | --- Comment #6 from David Nind --- Created attachment 163282 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163282&action=edit Bug 36329: Make POST /transfer_limits/batch honor BranchTransferLimitsType This patch adds tests for the different cases of `BranchTransferLimitsType`. It also adds tests for the situation of the consumer sending both limit criterias on the request. The controller gets adjusted for this new behavior and the spec gets documentation added about this. Bonus: tests are added the right guidelines code, and BranchTransferLimitsType gets mocked to avoid failures due to existing data. To test: 1. Apply this patches 2. Run: $ ktd --shell k$ qa => SUCCESS: All green, and tests pass! 3. Sign off :-D Signed-off-by: David Nind -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 15 22:21:43 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 15 Mar 2024 21:21:43 +0000 Subject: [Koha-bugs] [Bug 36329] Transfer limits should respect `BranchTransferLimitsType` In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36329 David Nind changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |david at davidnind.com --- Comment #7 from David Nind --- Testing notes (using KTD): 1. Tests pass before and after the patches are applied: prove t/db_dependent/api/v1/transfer_limits.t -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 15 22:33:10 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 15 Mar 2024 21:33:10 +0000 Subject: [Koha-bugs] [Bug 35506] selenium/regressions.t is failing randomly In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35506 --- Comment #51 from Victor Grousset/tuxayo --- Nice :D I'll submit my additional changes in another ticket. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 15 23:07:13 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 15 Mar 2024 22:07:13 +0000 Subject: [Koha-bugs] [Bug 36139] Bug 35518 follow-up: fix AutoSwitchPatron In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36139 --- Comment #6 from Michael Hafen --- There are four patches because the `git bz apply` command references the parent bug, which is already in master as commits 90b6f68616 and b577b65670. Please try `git bz apply 36139` instead. The patch file here squashes the last two patches on the parent bug (those two should probably be removed from there or something, since I mistakenly added them after the patch had been pushed). This will at least take care of the 'Barcode not found' error, and I think clearing the $patron variable should be harmless at that point in the file. (Looking over the code again, I don't know why it wasn't switching patrons for me, the $patron variable clearly gets reset in the $findborrower block below.) I'll leave the status as is, just in case there is anything else that causes the patch to not apply. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 15 23:07:51 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 15 Mar 2024 22:07:51 +0000 Subject: [Koha-bugs] [Bug 35518] Call to C4::Context->userenv happens before it's gets populated breaks code logic in circulation In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35518 Michael Hafen changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #162216|0 |1 is obsolete| | -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 15 23:08:07 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 15 Mar 2024 22:08:07 +0000 Subject: [Koha-bugs] [Bug 35518] Call to C4::Context->userenv happens before it's gets populated breaks code logic in circulation In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35518 Michael Hafen changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #162218|0 |1 is obsolete| | -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 15 23:12:28 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 15 Mar 2024 22:12:28 +0000 Subject: [Koha-bugs] [Bug 35518] Call to C4::Context->userenv happens before it's gets populated breaks code logic in circulation In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35518 --- Comment #17 from Michael Hafen --- (In reply to Fridolin Somers from comment #13) > Hi Michael > Thanks for that. > > You should create a new bug report with those patches since the previous > ones have already been pushed. > And beware of commit messages for follow-ups : > https://wiki.koha-community.org/wiki/Commit_messages#Follow-ups I was to late in marking those two patches obsolete, they were included in the push to 23.05.x. I made bug 36139 to track my patches. I foresee some confusion here. in 23.05.x those two extra patches should be reverted, or bug 36139 needs to Not be backported. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 15 23:33:18 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 15 Mar 2024 22:33:18 +0000 Subject: [Koha-bugs] [Bug 36118] ILL request log does not display patron information In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36118 Victor Grousset/tuxayo changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #163178|0 |1 is obsolete| | --- Comment #14 from Victor Grousset/tuxayo --- Created attachment 163283 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163283&action=edit Bug 36118: [DONT PUSH] patch to test patron notice only Signed-off-by: Victor Grousset/tuxayo -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 15 23:33:21 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 15 Mar 2024 22:33:21 +0000 Subject: [Koha-bugs] [Bug 36118] ILL request log does not display patron information In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36118 Victor Grousset/tuxayo changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #163179|0 |1 is obsolete| | --- Comment #15 from Victor Grousset/tuxayo --- Created attachment 163284 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163284&action=edit Bug 36118: Send patron object to template Signed-off-by: Martin Renvoize Signed-off-by: Victor Grousset/tuxayo -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 15 23:33:24 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 15 Mar 2024 22:33:24 +0000 Subject: [Koha-bugs] [Bug 36118] ILL request log does not display patron information In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36118 Victor Grousset/tuxayo changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #163180|0 |1 is obsolete| | --- Comment #16 from Victor Grousset/tuxayo --- Created attachment 163285 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163285&action=edit Bug 36118: Update status and send notice core actions logging 1) Enable ILLlog sys pref 2) Enable ILLModule and install 'FreeForm', run: bash <(curl -s https://raw.githubusercontent.com/ammopt/koha-ill-dev/master/start-ill-dev.sh) 3) Create a new FreeForm request, visit: /cgi-bin/koha/ill/ill-requests.pl?method=create&backend=FreeForm 4) You need to checkout FreeForm's branch compatible with the CSRF work: cd /kohadevbox/koha/Koha/Illbackends/FreeForm git checkout b_36243 koha-plack --restart kohadev 5) Pick a type, insert '42' on cardnumber and pick a library, hit 'Create' 6) On the next screen, click 'Confirm request' and confirm. 7) Click 'ILL request log', notice the entry is there but has no information about who did the logged action. 8) Apply patches. Repeat steps 3) to 6). Notice the logged action now has information about the user who did the action. 9) Extra: Click 'Send notice to patron' and confirm that action is also logged with patron information. To my knowledge, these are the only 2 actions logged by core Logger. Backends logging their own actions that want patron information need to add it themselves following this pattern. Signed-off-by: Martin Renvoize Signed-off-by: Victor Grousset/tuxayo -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 15 23:33:26 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 15 Mar 2024 22:33:26 +0000 Subject: [Koha-bugs] [Bug 36118] ILL request log does not display patron information In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36118 Victor Grousset/tuxayo changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #163181|0 |1 is obsolete| | --- Comment #17 from Victor Grousset/tuxayo --- Created attachment 163286 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163286&action=edit Bug 36118: Tidy changed code block Simple tidy of the codeblock we added a line to so we get through the tidy requirements of the QA script. Signed-off-by: Victor Grousset/tuxayo -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 15 23:46:19 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 15 Mar 2024 22:46:19 +0000 Subject: [Koha-bugs] [Bug 36139] Bug 35518 follow-up: fix AutoSwitchPatron In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36139 David Nind changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Patch doesn't apply |Needs Signoff --- Comment #7 from David Nind --- (In reply to Michael Hafen from comment #6) > There are four patches because the `git bz apply` command references the > parent bug, which is already in master as commits 90b6f68616 and b577b65670. > Please try `git bz apply 36139` instead. > The patch file here squashes the last two patches on the parent bug (those > two should probably be removed from there or something, since I mistakenly > added them after the patch had been pushed). > This will at least take care of the 'Barcode not found' error, and I think > clearing the $patron variable should be harmless at that point in the file. > (Looking over the code again, I don't know why it wasn't switching patrons > for me, the $patron variable clearly gets reset in the $findborrower block > below.) > I'll leave the status as is, just in case there is anything else that > causes the patch to not apply. Hi Michael. My apologies! I was reading things incorrectly, and as you spotted I applied the wrong patch! The patch does apply, now that I have used the correct bug number! Things now work as expected: with AutoSwitchPatron enabled, the patron is swicthed and the only message that is now displayed is: Patron was automatically switched by reading the patron card during checking out. Ensure you are working with the right patron. Sign off on the way. David -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 15 23:47:05 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 15 Mar 2024 22:47:05 +0000 Subject: [Koha-bugs] [Bug 36139] Bug 35518 follow-up: fix AutoSwitchPatron In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36139 David Nind changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Needs Signoff |Signed Off -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 15 23:47:07 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 15 Mar 2024 22:47:07 +0000 Subject: [Koha-bugs] [Bug 36139] Bug 35518 follow-up: fix AutoSwitchPatron In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36139 --- Comment #8 from David Nind --- Created attachment 163287 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163287&action=edit Bug 36139: Bug 35518 Follow-up to fix AutoSwitchPatron - clear variables Bug 35518 moved some code blocks to after the call to get_user_and_template() so that userenv would be populated before it was needed. This caused a couple variables to be set before the AutoSwitchPatron block could prevent them from being set. Which broke AutoSwitchPatron functionality. This clears two variable so that AuthSwitchPatron works again. The AutoSwitchPatron clears the $borrowernumber variable to switch patrons. With the AuthSwitchPatron block moved, the $patron variable still gets set, and the patron doesn't get switched. The clears the $patron variable too. Also clear the barcode list. The AutoSwitchPatron block got moved, and now the @$barcodes variable gets filled and not cleared. Leading to a 'Barcode not found' error when the patron is auto switched. Test plan: 1. Ensure AutoSwitchPatron is turned on. 2. Select the card number of two patron accounts. 3. Find the first patron in circulation. 4. Enter the second patron's card number in the item barcode field to switch patrons. 5. Observe the error about item barcode not existing, and the patron did not switch. 6. Apply patch and restart services. 7. Enter the second patron's card number in the item barcode field again. 8. Observe that the patron was switched with no error about an invalid barcode. Signed-off-by: David Nind -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Fri Mar 15 23:47:58 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 15 Mar 2024 22:47:58 +0000 Subject: [Koha-bugs] [Bug 36139] Bug 35518 follow-up: fix AutoSwitchPatron In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36139 David Nind changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #162310|0 |1 is obsolete| | -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sat Mar 16 00:03:11 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 15 Mar 2024 23:03:11 +0000 Subject: [Koha-bugs] [Bug 36139] Bug 35518 follow-up: fix AutoSwitchPatron In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36139 David Nind changed: What |Removed |Added ---------------------------------------------------------------------------- Text to go in the| |This fixes an issue when release notes| |the AutoSwitchPatron system | |preference is enabled (the | |issue was caused by bug | |35518 - added to Koha | |24.05.00, 23.11.03, and | |23.05.09). | | | |If you went to | |check out an item to a | |patron, and then entered | |another patron's card | |number in the item bar | |code, it was correctly: | |- | |switching to that patron | |- | |showing a message to say | |that the patron was | |switched. | | | |However, it was | |also incorrectly showing a | |"Barcode not found" message | |- this is now fixed, and is | |no longer displayed. --- Comment #9 from David Nind --- Testing notes (using koha-testing-docker (KTD): 1. Enable the AutoSwitchPatron system preference. 2. Go to check out an item to a patron: enter name, such as Mary, in the check out search box. 3. On the check out page, enter the card number for another patron instead of an item barcode, for example: Lisa - 23529000197047. 4. The patron correctly switches to Lisa. 5. Two messages are displayed: Patron was automatically switched by reading the patron card during checking out. Ensure you are working with the right patron. Barcode not found The barcode was not found: 23529000197047 Add record using fast cataloging 6. Only the first message should be displayed. 7. Apply the patch and repeat. 8. The barcode not found message is no longer displayed. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sat Mar 16 00:18:06 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 15 Mar 2024 23:18:06 +0000 Subject: [Koha-bugs] [Bug 36135] Add tool to batch modify holds In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36135 Brenda changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |bowens at washoecounty.us -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sat Mar 16 00:27:28 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 15 Mar 2024 23:27:28 +0000 Subject: [Koha-bugs] [Bug 36118] ILL request log does not display patron information In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36118 Victor Grousset/tuxayo changed: What |Removed |Added ---------------------------------------------------------------------------- QA Contact| |victor at tuxayo.net --- Comment #18 from Victor Grousset/tuxayo --- > 7) Click 'ILL request log', notice the entry is there but has no information about who did the logged action. Testing notes: need to have this commit applied "Bug 36118: [DONT PUSH] patch to test patron notice only" -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sat Mar 16 00:27:51 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Fri, 15 Mar 2024 23:27:51 +0000 Subject: [Koha-bugs] [Bug 36118] ILL request log does not display patron information In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36118 Victor Grousset/tuxayo changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Signed Off |Passed QA --- Comment #19 from Victor Grousset/tuxayo --- Works, makes sense, QA script happy, code looks good, passing QA :) -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sat Mar 16 01:31:45 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 16 Mar 2024 00:31:45 +0000 Subject: [Koha-bugs] [Bug 35659] OAI Harvester In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35659 Victor Grousset/tuxayo changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #162010|0 |1 is obsolete| | -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sat Mar 16 02:02:17 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 16 Mar 2024 01:02:17 +0000 Subject: [Koha-bugs] [Bug 35659] OAI Harvester In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35659 Victor Grousset/tuxayo changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |victor at tuxayo.net --- Comment #37 from Victor Grousset/tuxayo --- (obsoleted duplicate old version of a patch) -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sat Mar 16 02:02:31 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 16 Mar 2024 01:02:31 +0000 Subject: [Koha-bugs] [Bug 35659] OAI Harvester In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35659 Victor Grousset/tuxayo changed: What |Removed |Added ---------------------------------------------------------------------------- See Also| |https://bugs.koha-community | |.org/bugzilla3/show_bug.cgi | |?id=25905 -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sat Mar 16 02:02:31 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 16 Mar 2024 01:02:31 +0000 Subject: [Koha-bugs] [Bug 25905] REST API: create endpoint for importing OAI-PMH records from external OAI-PMH clients In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=25905 Victor Grousset/tuxayo changed: What |Removed |Added ---------------------------------------------------------------------------- See Also| |https://bugs.koha-community | |.org/bugzilla3/show_bug.cgi | |?id=35659 -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sat Mar 16 02:02:37 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 16 Mar 2024 01:02:37 +0000 Subject: [Koha-bugs] [Bug 35659] OAI Harvester In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35659 Victor Grousset/tuxayo changed: What |Removed |Added ---------------------------------------------------------------------------- See Also| |https://bugs.koha-community | |.org/bugzilla3/show_bug.cgi | |?id=10662 -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sat Mar 16 02:02:37 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 16 Mar 2024 01:02:37 +0000 Subject: [Koha-bugs] [Bug 10662] Build OAI-PMH Harvesting Client In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=10662 Victor Grousset/tuxayo changed: What |Removed |Added ---------------------------------------------------------------------------- See Also| |https://bugs.koha-community | |.org/bugzilla3/show_bug.cgi | |?id=35659 -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sat Mar 16 13:27:27 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 16 Mar 2024 12:27:27 +0000 Subject: [Koha-bugs] [Bug 32391] [DOCS] Reorganise the manual contents In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=32391 Emmanuel Bétemps changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |e.betemps at gmail.com -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sat Mar 16 23:22:30 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 16 Mar 2024 22:22:30 +0000 Subject: [Koha-bugs] [Bug 36335] ILS-DI GetRecords bad encoding for UNIMARC In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36335 David Nind changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |david at davidnind.com --- Comment #2 from David Nind --- I had a go at testing, but I'm not sure how to generate the bad encoding. Any hints on how to create an encoding error? I tried using the test plan I used in bug 34467 comment 8, but I didn't get an encoding error (using KTD): 1. Edited .env and change KOHA_MARC_FLAVOUR=unimarc 2. Enabled the ILS-DI system preference. 3. Modified record 1234: - on leader position 9, enter a blank - on 200$a, add a è - Here is what is in the leader: 01552nam 2200829 4500 - Had to add all the required subfields - Edited the item for the record so that the item has the correct entries from item dropdown list options and the item type 4. Ran flush_memcached and restart_all and use a refreshed browser. 5. Used this URL: http://127.0.0.1:8080/cgi-bin/koha/ilsdi.pl?service=GetRecords&id=1234 6. Note that the 200$a does not have an è. 7. Applied the patch, run flush_memcached and restart_all 8. The ILS-DI response now includes an è in the 200$a -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sat Mar 16 23:34:22 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 16 Mar 2024 22:34:22 +0000 Subject: [Koha-bugs] [Bug 20424] New UNIMARC ZEBRA indexes according to last IFLA updates In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=20424 David Nind changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |david at davidnind.com --- Comment #29 from David Nind --- I'd be happy to test, but I don't know enough about Zebra indexes to test. If you could add a step-by-step test plan. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sat Mar 16 23:34:30 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 16 Mar 2024 22:34:30 +0000 Subject: [Koha-bugs] [Bug 35921] Improve perfs of acqui-home.pl when there are many budgets In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35921 Victor Grousset/tuxayo changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |victor at tuxayo.net --- Comment #9 from Victor Grousset/tuxayo --- (In reply to Jonathan Druart from comment #7) > You are mixing unblessed and blessed in budget_owner. (In reply to Julian Maurice from comment #8) > The %patrons hash only contains Koha::Patron object. I seems that's indeed the case, dumping %patrons: > $VAR2 = undef; > $VAR3 = '1'; > $VAR4 = bless( { > [...] > }, 'Koha::Patron' ); > $VAR5 = '51'; > $VAR6 = bless( { > [...] > }, 'Koha::Patron' ); -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sat Mar 16 23:34:55 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 16 Mar 2024 22:34:55 +0000 Subject: [Koha-bugs] [Bug 35921] Improve perfs of acqui-home.pl when there are many budgets In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35921 Victor Grousset/tuxayo changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #162372|0 |1 is obsolete| | --- Comment #10 from Victor Grousset/tuxayo --- Created attachment 163288 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163288&action=edit Bug 35921: Improve perfs of acqui-home.pl when there are many budgets When there are a lot of budgets with the same owner, most of the time of acqui-home.pl is spent loading the same patron over and over. This patch makes sure each borrower is loaded only once. Test plan: 0. Do not apply the patch yet 1. Create a thousand budgets with the following command (make sure the budget_owner_id is an existing borrowernumber): perl -MKoha::Database -e ' my $schema = Koha::Database->schema; my $period = $schema->resultset("Aqbudgetperiod")->create({ budget_period_startdate => "2000-01-01", budget_period_enddate => "2999-12-31" }); $schema->resultset("Aqbudget")->create({ budget_owner_id => 1, budget_period_id => $period->id }) for (1..1000) ' 2. Measure the time it takes to load acqui/acqui-home.pl (do it several times and keep the average time) 3. Apply the patch 4. Repeat step 2 Signed-off-by: Pedro Amorim Signed-off-by: Victor Grousset/tuxayo -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sun Mar 17 00:48:29 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sat, 16 Mar 2024 23:48:29 +0000 Subject: [Koha-bugs] [Bug 35921] Improve perfs of acqui-home.pl when there are many budgets In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35921 --- Comment #11 from Victor Grousset/tuxayo --- It works! :) Nice improvement, 11 sec vs 21.5 sec Adding a second signoff. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sun Mar 17 03:48:52 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sun, 17 Mar 2024 02:48:52 +0000 Subject: [Koha-bugs] [Bug 17704] Fix OAI breakage when using HTTP::OAI 4.03+ In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=17704 Victor Grousset/tuxayo changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |victor at tuxayo.net Status|In Discussion |Failed QA --- Comment #39 from Victor Grousset/tuxayo --- It seems so. Switching to it so it's clearer that is rescuable and not blocked due to uncertainty about a fix. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sun Mar 17 04:21:19 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sun, 17 Mar 2024 03:21:19 +0000 Subject: [Koha-bugs] [Bug 35659] OAI Harvester In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35659 Victor Grousset/tuxayo changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Signed Off |Failed QA --- Comment #38 from Victor Grousset/tuxayo --- Adding a server doesn't work due to not complying with CSRF (Bug 34478): > Programming error - op 'add_validated' must start with 'cud-' for POST http://localhost:8081/intranet/admin/oaiservers.pl (referer: http://localhost:8081/cgi-bin/koha/admin/oaiservers.pl?op=add) >From Koha/Middleware/CSRF.pm -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sun Mar 17 17:31:21 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sun, 17 Mar 2024 16:31:21 +0000 Subject: [Koha-bugs] [Bug 25999] Renewal due date not being honoured for items with holds In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=25999 --- Comment #4 from Katrin Fischer --- (In reply to Jonathan Druart from comment #3) > I have the feeling that AllowRenewalOnHoldOverride is never taken into I tested on current master and the GUI still appears to work as expected, but the due data calculation is wrong: * Check out 39999000004571 to 42 * Renewal check box is visible * Place a hold on the record for Henry * Reload list of checkouts, check box is now replaced by "on hold" * Set AllowRenewalOnHoldOverride to enable * Reload list of checkouts page * Renewal checkbox is still locked/"on hold" * Check "Override renewal restrictions:" checkbox below table * Renewal checkbox appears * Check the checkbox - the hold due date input appears * Set a hold due date and renew - the date is not taken into account. -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Sun Mar 17 17:36:01 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sun, 17 Mar 2024 16:36:01 +0000 Subject: [Koha-bugs] [Bug 36163] Usage statistics - Not possible to select a country In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36163 Katrin Fischer changed: What |Removed |Added ---------------------------------------------------------------------------- Version|23.11 |master Severity|minor |normal --- Comment #1 from Katrin Fischer --- Confirmed. There is also an error message: Note: The value of your system preference 'UsageStatsCountry' is not valid (Algeria). Please select a valid one. The pull down appears to be the same as for UsageStatsCountry system preference. Not sure what the right fix here would be. -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sun Mar 17 17:50:44 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sun, 17 Mar 2024 16:50:44 +0000 Subject: [Koha-bugs] [Bug 35973] Redirect Guarantee Email has incorrect values In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35973 Katrin Fischer changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |Needs Signoff -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sun Mar 17 17:50:47 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sun, 17 Mar 2024 16:50:47 +0000 Subject: [Koha-bugs] [Bug 35973] Redirect Guarantee Email has incorrect values In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35973 --- Comment #1 from Katrin Fischer --- Created attachment 163289 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163289&action=edit Bug 35973: Correct wrong values for RedirectGuaranteeEmail system preference The system preferences was added with 0/1 in sysprefs.sql is checked as boolean. But the .pref file was added with yes/no which both evaluate as strings to true. This fixes the .pref file and includes a database update that sets 0 and 1 correctly for the value currently chosen in the pref. To test: * Make sure to update RedirectGuaranteeEmail to Enable/Don't enable before applying the patch * Verify in the database, that the values was set to yes or no You can use a report like: SELECT * from systempreferences WHERE variable = "RedirectGuaranteeEmail"; * Apply patch and run database update * Verify the value in the database was corrected: Yes = 1, No = 0 * Change the setting, verify the new value is stored correctly -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Sun Mar 17 17:51:04 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sun, 17 Mar 2024 16:51:04 +0000 Subject: [Koha-bugs] [Bug 35973] Redirect Guarantee Email has incorrect values In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35973 Katrin Fischer changed: What |Removed |Added ---------------------------------------------------------------------------- Assignee|koha-bugs at lists.koha-commun |katrin.fischer at bsz-bw.de |ity.org | Version|23.11 |master -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Sun Mar 17 17:56:30 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sun, 17 Mar 2024 16:56:30 +0000 Subject: [Koha-bugs] [Bug 36336] New: Exporting records from detail page is broken Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36336 Bug ID: 36336 Summary: Exporting records from detail page is broken Change sponsored?: --- Product: Koha Version: master Hardware: All OS: All Status: NEW Severity: major Priority: P5 - low Component: Cataloging Assignee: koha-bugs at lists.koha-community.org Reporter: katrin.fischer at bsz-bw.de QA Contact: testopia at bugs.koha-community.org CC: m.de.rooy at rijksmuseum.nl When exporting a record from the detail page in the staff interface, almost all formats give an Error 500 - Internal server error. But with tail -f /var/log/koha/kohadev/*.log there doesn't seem to be anything in the logs? -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Sun Mar 17 17:56:50 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sun, 17 Mar 2024 16:56:50 +0000 Subject: [Koha-bugs] [Bug 35975] Download cart with BIBTEX contains hash value In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35975 Katrin Fischer changed: What |Removed |Added ---------------------------------------------------------------------------- See Also| |https://bugs.koha-community | |.org/bugzilla3/show_bug.cgi | |?id=36336 --- Comment #1 from Katrin Fischer --- Can't really test, because it seems almost all export options now result in an error 500: Bug 36336 - Exporting records from detail page is broken -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sun Mar 17 17:56:50 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sun, 17 Mar 2024 16:56:50 +0000 Subject: [Koha-bugs] [Bug 36336] Exporting records from detail page is broken In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36336 Katrin Fischer changed: What |Removed |Added ---------------------------------------------------------------------------- See Also| |https://bugs.koha-community | |.org/bugzilla3/show_bug.cgi | |?id=35975 -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sun Mar 17 17:59:41 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sun, 17 Mar 2024 16:59:41 +0000 Subject: [Koha-bugs] [Bug 36337] New: Hiding lists with OpacPublic breaks styling for language list Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36337 Bug ID: 36337 Summary: Hiding lists with OpacPublic breaks styling for language list Change sponsored?: --- Product: Koha Version: master Hardware: All OS: All Status: NEW Severity: minor Priority: P5 - low Component: OPAC Assignee: oleonard at myacpl.org Reporter: katrin.fischer at bsz-bw.de QA Contact: testopia at bugs.koha-community.org Depends on: 33244 Added from the comment on bug 33244: Hello, [this patch] seems to have a side effect of the "Language" dropdown now being awkwardly placed on center-right (regardless of whether user is logged in our out). This is caused by the below CSS rules whose blame traces back to this patch, and removing them fixes the issue. #members { + flex-grow: 1; + justify-content: flex-end; Is this intentional change? I can only assume it's not, since I don't see any mention of this in the discussion. Screenshots of the problem: https://imgur.com/a/hDZvn7B It looks like this patch conditionally hides cart+lists. The CSS above then makes only language shown on the left, and the login on the right. But when things aren't hidden, it changes the original position. Should I create a new bug about this? Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33244 [Bug 33244] Do not show lists in OPAC if OpacPublic is disabled -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sun Mar 17 17:59:41 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sun, 17 Mar 2024 16:59:41 +0000 Subject: [Koha-bugs] [Bug 33244] Do not show lists in OPAC if OpacPublic is disabled In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33244 Katrin Fischer changed: What |Removed |Added ---------------------------------------------------------------------------- Blocks| |36337 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36337 [Bug 36337] Hiding lists with OpacPublic breaks styling for language list -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sun Mar 17 18:00:05 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sun, 17 Mar 2024 17:00:05 +0000 Subject: [Koha-bugs] [Bug 33244] Do not show lists in OPAC if OpacPublic is disabled In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33244 --- Comment #18 from Katrin Fischer --- (In reply to David Cook from comment #17) > (In reply to M from comment #16) > > Should I create a new bug about this? > > Yep. Create a new bug and have it depend on this one. Filed as: Bug 36337 - Hiding lists with OpacPublic breaks styling for language list -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sun Mar 17 18:05:53 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sun, 17 Mar 2024 17:05:53 +0000 Subject: [Koha-bugs] [Bug 36324] Authority editor missing move icon next to subfields In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36324 Katrin Fischer changed: What |Removed |Added ---------------------------------------------------------------------------- Version|23.11 |master CC| |oleonard at myacpl.org -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Sun Mar 17 18:06:02 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sun, 17 Mar 2024 17:06:02 +0000 Subject: [Koha-bugs] [Bug 36324] Authority editor missing move icon next to subfields In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36324 Katrin Fischer changed: What |Removed |Added ---------------------------------------------------------------------------- Severity|enhancement |minor -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sun Mar 17 22:15:39 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sun, 17 Mar 2024 21:15:39 +0000 Subject: [Koha-bugs] [Bug 36338] New: Capitalization: Card number or Userid may already exist. Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36338 Bug ID: 36338 Summary: Capitalization: Card number or Userid may already exist. Change sponsored?: --- Product: Koha Version: master Hardware: All OS: All Status: NEW Keywords: Academy Severity: trivial Priority: P5 - low Component: Templates Assignee: oleonard at myacpl.org Reporter: katrin.fischer at bsz-bw.de QA Contact: testopia at bugs.koha-community.org Userid should be userid, but probably would be even better as username, matching the GUI. koha-tmpl/intranet-tmpl/prog/en/includes/onboarding_messages.inc:14 The patron has not been created! Card number or Userid may already exist. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sun Mar 17 22:23:03 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sun, 17 Mar 2024 21:23:03 +0000 Subject: [Koha-bugs] [Bug 31567] Onboarding stuck at "Cardnumber or Userid may already exist" In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31567 --- Comment #1 from Katrin Fischer --- I just had someone report this to me the other day as well - do you have an idea how the logs ended up with wrong permissions? -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sun Mar 17 22:28:40 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sun, 17 Mar 2024 21:28:40 +0000 Subject: [Koha-bugs] [Bug 19548] Search Result Second page not available In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=19548 --- Comment #7 from Katrin Fischer --- Registration is no longer necessary for using the DNB SRU server, so this could be better tested now. -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Sun Mar 17 22:29:32 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sun, 17 Mar 2024 21:29:32 +0000 Subject: [Koha-bugs] [Bug 36306] Make username creation configurable In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36306 Katrin Fischer changed: What |Removed |Added ---------------------------------------------------------------------------- Summary|Make Koha UserName |Make username creation |configurable how it is |configurable |created | --- Comment #1 from Katrin Fischer --- I feel like a similar bug was filed before, but I couldn't find it. -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sun Mar 17 22:31:20 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sun, 17 Mar 2024 21:31:20 +0000 Subject: [Koha-bugs] [Bug 36294] Replace inaccurate use of "book" in system preferences In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36294 Katrin Fischer changed: What |Removed |Added ---------------------------------------------------------------------------- Assignee|koha-bugs at lists.koha-commun |katrin.fischer at bsz-bw.de |ity.org | -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Sun Mar 17 22:45:08 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sun, 17 Mar 2024 21:45:08 +0000 Subject: [Koha-bugs] [Bug 36294] Replace inaccurate use of "book" in system preferences In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36294 Katrin Fischer changed: What |Removed |Added ---------------------------------------------------------------------------- Patch complexity|--- |Trivial patch Status|NEW |Needs Signoff -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sun Mar 17 22:45:16 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sun, 17 Mar 2024 21:45:16 +0000 Subject: [Koha-bugs] [Bug 36294] Replace inaccurate use of "book" in system preferences In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36294 --- Comment #1 from Katrin Fischer --- Created attachment 163290 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163290&action=edit Bug 36294: Replace 'book' in system preference descriptions Some system preference descriptions have been updated in order to replace "books" with items, checkouts or bibliographic records. To test: * Check system preference descriptions for following system preferences with and without the patch applied: * virtualshelves * AutoSwitchPatron * SyndeticsSeries * OPACFineNoRenewals * OpacRenewalAllowed * If they read better than before, sign off :) -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sun Mar 17 22:46:05 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sun, 17 Mar 2024 21:46:05 +0000 Subject: [Koha-bugs] [Bug 36087] Editing dates of a booked items causes failure In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36087 Katrin Fischer changed: What |Removed |Added ---------------------------------------------------------------------------- Version|23.11 |master -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sun Mar 17 22:49:16 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sun, 17 Mar 2024 21:49:16 +0000 Subject: [Koha-bugs] [Bug 36296] There are no items that can be placed on hold. In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36296 Katrin Fischer changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution|--- |INVALID --- Comment #2 from Katrin Fischer --- Hi Nasr, Bugzilla should only be used for filing bugs (software errors) and enhancement requests. Your problem reads like a confiuration issue/support request. First things to check: * Are the itemtypes of the items on the records marked as reference? * Do the circulation rules allow that the user the hold is placed for can place a hold and check out those items? If you need more help, please ask on the mailing list, or IRC chat, or contact one of the support providers: https://koha-community.org/support/ -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Sun Mar 17 22:54:14 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sun, 17 Mar 2024 21:54:14 +0000 Subject: [Koha-bugs] [Bug 9015] BiblioAddsAuthorities should probably be set to "allow" by default In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=9015 Katrin Fischer changed: What |Removed |Added ---------------------------------------------------------------------------- Resolution|--- |MOVED Status|In Discussion |RESOLVED --- Comment #3 from Katrin Fischer --- I found: Bug 30025 - Split BiblioAddsAuthorities into 2 preferences This patch splits the system preference BiblioAddsAuthorities into two new system preferences that more clearly define what the settings do: 1- RequireChoosingExistingAuthority: this preference indicates whether a cataloger must choose from existing authorities, or if they can enter free text into controlled fields 2- AutoLinkBiblios: this preference determines whether Koha will attempt to link a new record to existing authorities upon saving. In conjunction with the existing preference, AutoCreateAuthorities, unmatched headings will either be linked to a new authority, or remain uncontrolled And it looks like RequireChoosingExistingAuthority is already set to "don't require" by default. I am closing - please re-open if there is still something that needs to be done here! -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sun Mar 17 22:54:20 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sun, 17 Mar 2024 21:54:20 +0000 Subject: [Koha-bugs] [Bug 9015] BiblioAddsAuthorities should probably be set to "allow" by default In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=9015 Katrin Fischer changed: What |Removed |Added ---------------------------------------------------------------------------- See Also| |https://bugs.koha-community | |.org/bugzilla3/show_bug.cgi | |?id=30025 -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sun Mar 17 22:54:20 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sun, 17 Mar 2024 21:54:20 +0000 Subject: [Koha-bugs] [Bug 30025] Split BiblioAddsAuthorities into 2 preferences In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30025 Katrin Fischer changed: What |Removed |Added ---------------------------------------------------------------------------- See Also| |https://bugs.koha-community | |.org/bugzilla3/show_bug.cgi | |?id=9015 -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sun Mar 17 23:01:13 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sun, 17 Mar 2024 22:01:13 +0000 Subject: [Koha-bugs] [Bug 35210] 2FA: more flexibility In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35210 --- Comment #1 from Katrin Fischer --- Hi, when you are not sure if Koha already supports a certain functionality or has a certain feature, a good way to find out is by asking on the mailing list or in the IRC chat. Bugzilla is not really great for asking questions as only a few people check on all bugs filed. There are some other bugs filed already for improving 2FA that might cover some of what you are asking for: * Bug 31118 - Allow to send the TOTP token by email when enabling 2FA * Bug 33254 - 2FA - Trust Current Device It's also good to make the bug descriptions as specific as possible, so it's possible to see with a glance what a bug might be about. -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Sun Mar 17 23:02:33 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sun, 17 Mar 2024 22:02:33 +0000 Subject: [Koha-bugs] [Bug 32680] Add hooks to allow cover images to be provided by plugins In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=32680 --- Comment #47 from Katrin Fischer --- (In reply to Johan Sahlberg from comment #46) > Great work!... but I've noticed that this doesn't apply on shelves (neither > in OPAC or Staff), which I assume it should. > Files that needs to be altered I guess is: opac-shelves.tt and shelves.tt Hi, as this change has already been released, please file a new bug. You can use the "depends on" in your new bug to link to this one and it will also create a notice informing people watching this bug. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Sun Mar 17 23:12:48 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sun, 17 Mar 2024 22:12:48 +0000 Subject: [Koha-bugs] [Bug 36306] Make username creation configurable In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36306 --- Comment #2 from David Cook --- (In reply to Katrin Fischer from comment #1) > I feel like a similar bug was filed before, but I couldn't find it. Maybe you were thinking of bug 32426? -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Sun Mar 17 23:15:17 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sun, 17 Mar 2024 22:15:17 +0000 Subject: [Koha-bugs] [Bug 36306] Make username creation configurable In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36306 --- Comment #3 from Katrin Fischer --- (In reply to David Cook from comment #2) > (In reply to Katrin Fischer from comment #1) > > I feel like a similar bug was filed before, but I couldn't find it. > > Maybe you were thinking of bug 32426? Exactly. Thank you! -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 18 00:12:41 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sun, 17 Mar 2024 23:12:41 +0000 Subject: [Koha-bugs] [Bug 36336] Exporting records from detail page is broken In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36336 David Cook changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |dcook at prosentient.com.au -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 18 00:15:16 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sun, 17 Mar 2024 23:15:16 +0000 Subject: [Koha-bugs] [Bug 30579] When placing item level hold, some options that are not used are not disabled In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30579 David Cook changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |dcook at prosentient.com.au -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 18 00:20:47 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sun, 17 Mar 2024 23:20:47 +0000 Subject: [Koha-bugs] [Bug 36333] Remove all empty lines from template's output In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36333 David Cook changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |dcook at prosentient.com.au --- Comment #4 from David Cook --- I don't know about this. Surely this would accidentally remove empty lines in unexpected ways? -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 18 00:21:14 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sun, 17 Mar 2024 23:21:14 +0000 Subject: [Koha-bugs] [Bug 20657] Globally enable PRE_CHOMP and POST_CHOMP in Template Toolkit configuration In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=20657 David Cook changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |dcook at prosentient.com.au -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 18 00:35:57 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sun, 17 Mar 2024 23:35:57 +0000 Subject: [Koha-bugs] [Bug 36328] C4::Scrubber should allow more html tags In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36328 David Cook changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |dcook at prosentient.com.au --- Comment #3 from David Cook --- I think it probably makes sense to have a few different profiles. For the "comment" scrubber, we probably want to keep it fairly minimal I think. Whereas "borrowernotes" and "opacnote" could have more elaborate structures. Bug 31934 has a profile with a fairly comprehensive list (although I wouldn't use it for "borrowernotes" or "opacnote"). I think an argument could be made for also including headings, table elements, fieldset/legend, ul/ol/li. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 18 09:22:33 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 18 Mar 2024 08:22:33 +0000 Subject: [Koha-bugs] [Bug 36337] Hiding lists with OpacPublic breaks styling for language list In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36337 M changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |schodkowy.omegi-0r at icloud.c | |om --- Comment #1 from M --- Thanks for creating the bug. To clarify though: the issue shows up when the lists are NOT hidden (which is the default). They added the feature of hiding lists and fixed the styling when they're hidden, but in turn broke the styling when they're normally shown. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 18 09:23:56 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 18 Mar 2024 08:23:56 +0000 Subject: [Koha-bugs] [Bug 10060] Allow adding a branch parameter to the web-based self check to indicate library its used at In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=10060 Martin Renvoize changed: What |Removed |Added ---------------------------------------------------------------------------- Assignee|koha-bugs at lists.koha-commun |nick at bywatersolutions.com |ity.org | QA Contact| |martin.renvoize at ptfs-europe | |.com -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Mon Mar 18 09:25:25 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 18 Mar 2024 08:25:25 +0000 Subject: [Koha-bugs] [Bug 36339] New: Using patron search filters may clear "search type" settings in "More options" Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36339 Bug ID: 36339 Summary: Using patron search filters may clear "search type" settings in "More options" Change sponsored?: --- Product: Koha Version: master Hardware: All OS: All Status: NEW Severity: minor Priority: P5 - low Component: Patrons Assignee: koha-bugs at lists.koha-community.org Reporter: katrin.fischer at bsz-bw.de QA Contact: testopia at bugs.koha-community.org CC: gmcharlt at gmail.com, kyle.m.hall at gmail.com This is a bit of an odd one I found while testing bug 36334: * Search for h from the top search bar * Open the 'more options' area the end of the input field and set it to 'contains' and leave it open * Now repeat search from the filters on the left of the page * The search type in the 'more options' empties out -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 18 09:35:32 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 18 Mar 2024 08:35:32 +0000 Subject: [Koha-bugs] [Bug 26597] Transfer information from guarantor when adding a guarantor to an existing patron In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=26597 --- Comment #45 from Katrin Fischer --- I am not sure why, but I am seeing sha1 errors much more often recently. If someone has an idea how to help avoid them, I am all ears. Right now it's only the last patch here that has the issue: Patch failed at 0001 Bug 26597: (QA follow-up) Tidy code hint: Use 'git am --show-current-patch=diff' to see the failed patch When you have resolved this problem run "git bz apply --continue". If you would prefer to skip this patch, instead run "git bz apply --skip". To restore the original branch and stop patching run "git bz apply --abort". Patch left in /tmp/Bug-26597-QA-follow-up-Tidy-code-ol81ve_8.patch I tidied the patch inline. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 18 09:42:14 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 18 Mar 2024 08:42:14 +0000 Subject: [Koha-bugs] [Bug 35906] Add bookable option on itemtypes In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35906 Martin Renvoize changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #162465|0 |1 is obsolete| | --- Comment #23 from Martin Renvoize --- Created attachment 163291 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163291&action=edit Bug 35906: Add bookable option on itemtype Actually new "booking" feature can be set on an item but no directly on an itemtype. This patch adds this possibility. Test plan: 1) Test this new feature on an item as it were currently working. 2) Apply this patch 3) Run updatedatabase.pl 4) Reload Schema by running update_dbix_class_files.pl 5) Change new syspref 'item-level_booking' to 'itemtype' 6) Edit an itemtype, there is a new checkbox to add 'bookable' option 7) Test it with item with this itemtype, if there is 1 item at least you will see 'Booking' tab. 8) You can change syspref to 'item' to see the current behavior Note: When item-level_booking is set on 'itemtype' you can change dropdown option to 'No' on item bookable option. Sponsored by: Association de Gestion des Œuvres Sociales d'Inria (AGOS) -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 18 09:42:16 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 18 Mar 2024 08:42:16 +0000 Subject: [Koha-bugs] [Bug 35906] Add bookable option on itemtypes In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35906 Martin Renvoize changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #162466|0 |1 is obsolete| | --- Comment #24 from Martin Renvoize --- Created attachment 163292 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163292&action=edit Bug 35906: Add unit test -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 18 09:42:19 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 18 Mar 2024 08:42:19 +0000 Subject: [Koha-bugs] [Bug 35906] Add bookable option on itemtypes In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35906 Martin Renvoize changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #162469|0 |1 is obsolete| | --- Comment #25 from Martin Renvoize --- Created attachment 163293 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163293&action=edit Bug 35906: Remove preference and add override handling This patch updates the bookable nature of items to allow setting at the itemtype level and then overriding that setting at item level should you so wish to do so. We also now properly handle the item_level-itypes preference such that we look at item or biblioitem level appropriately. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 18 09:42:22 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 18 Mar 2024 08:42:22 +0000 Subject: [Koha-bugs] [Bug 35906] Add bookable option on itemtypes In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35906 Martin Renvoize changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #162470|0 |1 is obsolete| | --- Comment #26 from Martin Renvoize --- Created attachment 163294 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163294&action=edit Bug 35906: Schema dump -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 18 09:42:25 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 18 Mar 2024 08:42:25 +0000 Subject: [Koha-bugs] [Bug 35906] Add bookable option on itemtypes In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35906 Martin Renvoize changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #162472|0 |1 is obsolete| | --- Comment #27 from Martin Renvoize --- Created attachment 163295 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163295&action=edit Bug 35906: (QA follow-up) Fix item-type schema -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 18 09:43:51 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 18 Mar 2024 08:43:51 +0000 Subject: [Koha-bugs] [Bug 33254] 2FA - Trust Current Device In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33254 Chris Rowlands changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |chris.rowlands6 at nhs.net -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 18 09:48:04 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 18 Mar 2024 08:48:04 +0000 Subject: [Koha-bugs] [Bug 36340] New: Gender free type box Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36340 Bug ID: 36340 Summary: Gender free type box Change sponsored?: --- Product: Koha Version: unspecified Hardware: All OS: All Status: NEW Severity: enhancement Priority: P5 - low Component: Patrons Assignee: koha-bugs at lists.koha-community.org Reporter: HelenGornall at Sthelens.gov.uk QA Contact: testopia at bugs.koha-community.org CC: gmcharlt at gmail.com, kyle.m.hall at gmail.com To be able to add a free type box to appear alongside the 'prefer to self describe' so that patrons and/or staff can write in their preferred description. -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Mon Mar 18 09:51:20 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 18 Mar 2024 08:51:20 +0000 Subject: [Koha-bugs] [Bug 35906] Add bookable option on itemtypes In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35906 --- Comment #28 from Martin Renvoize --- Just a quick rebase as it stopped applying when most fo the dependencies were pushed. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 18 09:51:49 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 18 Mar 2024 08:51:49 +0000 Subject: [Koha-bugs] [Bug 36215] Bookings calendar only shows bookings within RESTdefaultPageSize In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36215 Fridolin Somers changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Pushed to master |Pushed to stable Version(s)|24.05.00 |24.05.00,23.11.04 released in| | --- Comment #8 from Fridolin Somers --- Pushed to 23.11.x for 23.11.04 -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 18 09:52:25 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 18 Mar 2024 08:52:25 +0000 Subject: [Koha-bugs] [Bug 36215] Bookings calendar only shows bookings within RESTdefaultPageSize In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36215 --- Comment #9 from Fridolin Somers --- I see there is a follwup in master : Bug 36215: (QA follow-up) Fix &? confusion Backported to 23.11.x -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 18 09:54:54 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 18 Mar 2024 08:54:54 +0000 Subject: [Koha-bugs] [Bug 32671] basic_workflow.t is failing on slow servers In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=32671 Fridolin Somers changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Pushed to master |Pushed to stable Version(s)|24.05.00 |24.05.00,23.11.04 released in| | CC| |fridolin.somers at biblibre.co | |m --- Comment #11 from Fridolin Somers --- Pushed to 23.11.x for 23.11.04 -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 18 09:55:34 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 18 Mar 2024 08:55:34 +0000 Subject: [Koha-bugs] [Bug 36215] Bookings calendar only shows bookings within RESTdefaultPageSize In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36215 --- Comment #10 from Martin Renvoize --- I could have sworn Nick already fixed that inline during QA.. clearly we missed a second case between us! -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 18 09:56:08 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 18 Mar 2024 08:56:08 +0000 Subject: [Koha-bugs] [Bug 35331] Add an ILL table actions plugin hook In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35331 --- Comment #33 from Katrin Fischer --- Had to fix a small conflict in the first patch and the unit test due to CSRF changes. This means that if this was to be backported, we'd probably need some small changes. Fixed commit message: Bug 35331: (QA follow-up): This one is confusing. It's a one line change - I tidied it, the QA issue remained: Small QA script failures: FAIL ill/ill-requests.pl WARN tidiness The file is less tidy than before (bad/messy lines before: 181, now: 182) -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 18 09:56:42 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 18 Mar 2024 08:56:42 +0000 Subject: [Koha-bugs] [Bug 33898] background_jobs_worker.pl may leave defunct children processes for extended periods of time In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33898 Fridolin Somers changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Pushed to master |Pushed to stable Version(s)|24.05.00 |24.05.00,23.11.04 released in| | CC| |fridolin.somers at biblibre.co | |m --- Comment #32 from Fridolin Somers --- Pushed to 23.11.x for 23.11.04 -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 18 09:58:48 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 18 Mar 2024 08:58:48 +0000 Subject: [Koha-bugs] [Bug 36233] Cannot search invoices if too many vendors In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36233 Fridolin Somers changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Pushed to master |Pushed to stable Version(s)|24.05.00 |24.05.00,23.11.04 released in| | CC| |fridolin.somers at biblibre.co | |m --- Comment #19 from Fridolin Somers --- Pushed to 23.11.x for 23.11.04 -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 18 10:00:09 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 18 Mar 2024 09:00:09 +0000 Subject: [Koha-bugs] [Bug 35782] Remove Koha::Template::Plugin::Biblio::HoldsCount In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35782 Fridolin Somers changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |fridolin.somers at biblibre.co | |m Status|Pushed to master |Needs documenting --- Comment #14 from Fridolin Somers --- Enhancement not pushed to 23.11.x -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 18 10:00:54 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 18 Mar 2024 09:00:54 +0000 Subject: [Koha-bugs] [Bug 27595] Place holds for patrons on accepted purchase suggestions In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=27595 Katrin Fischer changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Passed QA |Patch doesn't apply --- Comment #31 from Katrin Fischer --- Patch no longer applies and I'd prefer a rebase by the author. With the new list on the dashboard this should come right back up in the queue. Apply? [(y)es, (n)o, (i)nteractive] y Applying: Bug 27595: Add new system preference PlaceHoldsOnOrdersFromSuggestions Using index info to reconstruct a base tree... M installer/data/mysql/mandatory/sysprefs.sql M koha-tmpl/intranet-tmpl/prog/en/modules/admin/preferences/acquisitions.pref Falling back to patching base and 3-way merge... Auto-merging koha-tmpl/intranet-tmpl/prog/en/modules/admin/preferences/acquisitions.pref Auto-merging installer/data/mysql/mandatory/sysprefs.sql Applying: Bug 27595: Add place_hold method to Koha::Suggestion Applying: Bug 27595: Place holds when ordering from a suggestion Using index info to reconstruct a base tree... M acqui/addorder.pl Falling back to patching base and 3-way merge... Auto-merging acqui/addorder.pl CONFLICT (content): Merge conflict in acqui/addorder.pl error: Failed to merge in the changes. Patch failed at 0001 Bug 27595: Place holds when ordering from a suggestion hint: Use 'git am --show-current-patch=diff' to see the failed patch When you have resolved this problem run "git bz apply --continue". If you would prefer to skip this patch, instead run "git bz apply --skip". To restore the original branch and stop patching run "git bz apply --abort". Patch left in /tmp/Bug-27595-Place-holds-when-ordering-from-a-suggest-4__rodz_.patch -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 18 10:01:09 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 18 Mar 2024 09:01:09 +0000 Subject: [Koha-bugs] [Bug 35787] Remove Koha::Template::Plugin::Biblio::CanBook In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35787 Fridolin Somers changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Pushed to master |Needs documenting CC| |fridolin.somers at biblibre.co | |m --- Comment #9 from Fridolin Somers --- Enhancement not pushed to 23.11.x -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 18 10:01:29 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 18 Mar 2024 09:01:29 +0000 Subject: [Koha-bugs] [Bug 35788] Remove Koha::Template::Plugin::Biblio::BookingsCount In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35788 Fridolin Somers changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Pushed to master |Needs documenting CC| |fridolin.somers at biblibre.co | |m --- Comment #13 from Fridolin Somers --- Enhancement not pushed to 23.11.x -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 18 10:02:46 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 18 Mar 2024 09:02:46 +0000 Subject: [Koha-bugs] [Bug 35248] Bookings needs unit tests In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35248 Fridolin Somers changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |fridolin.somers at biblibre.co | |m --- Comment #72 from Fridolin Somers --- Sure about dependancy with Bug 35788 ? Can this be backported to 23.11.x ? -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 18 10:04:04 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 18 Mar 2024 09:04:04 +0000 Subject: [Koha-bugs] [Bug 36308] SIP2 login broken by CSRF changes In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36308 Fridolin Somers changed: What |Removed |Added ---------------------------------------------------------------------------- Resolution|--- |FIXED CC| |fridolin.somers at biblibre.co | |m Status|Pushed to master |RESOLVED --- Comment #8 from Fridolin Somers --- Depends on Bug 36102 not in 23.11.x -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 18 10:05:07 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 18 Mar 2024 09:05:07 +0000 Subject: [Koha-bugs] [Bug 33431] Make code use C4::Context->yaml_preference In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33431 --- Comment #21 from Katrin Fischer --- Nice code clean-up! -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 18 10:05:41 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 18 Mar 2024 09:05:41 +0000 Subject: [Koha-bugs] [Bug 35473] Core bookings and room reservations plugin tables clash In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35473 Fridolin Somers changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Pushed to master |Pushed to stable CC| |fridolin.somers at biblibre.co | |m Version(s)|24.05.00 |24.05.00,23.11.04 released in| | --- Comment #29 from Fridolin Somers --- Pushed to 23.11.x for 23.11.04 -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 18 10:06:20 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 18 Mar 2024 09:06:20 +0000 Subject: [Koha-bugs] [Bug 36190] op param for stateful requests must start with 'cud-' In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36190 Fridolin Somers changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |fridolin.somers at biblibre.co | |m Status|Pushed to master |RESOLVED Resolution|--- |FIXED --- Comment #18 from Fridolin Somers --- Depends on Bug 34478 not in 23.11.x -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 18 10:06:21 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 18 Mar 2024 09:06:21 +0000 Subject: [Koha-bugs] [Bug 36192] [OMNIBUS] CSRF Protection for Koha In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36192 Bug 36192 depends on bug 36190, which changed state. Bug 36190 Summary: op param for stateful requests must start with 'cud-' https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36190 What |Removed |Added ---------------------------------------------------------------------------- Status|Pushed to master |RESOLVED Resolution|--- |FIXED -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 18 10:07:09 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 18 Mar 2024 09:07:09 +0000 Subject: [Koha-bugs] [Bug 36305] Inventory tools need adjustments for CSRF In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36305 Fridolin Somers changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |fridolin.somers at biblibre.co | |m --- Comment #11 from Fridolin Somers --- Depends on Bug 34478 right ? -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 18 10:08:27 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 18 Mar 2024 09:08:27 +0000 Subject: [Koha-bugs] [Bug 36274] OPAC suggestions form doesn't display In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36274 Fridolin Somers changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |fridolin.somers at biblibre.co | |m --- Comment #9 from Fridolin Somers --- So depends on Bug 34478 right ? -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 18 10:09:31 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 18 Mar 2024 09:09:31 +0000 Subject: [Koha-bugs] [Bug 36274] OPAC suggestions form doesn't display In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36274 Katrin Fischer changed: What |Removed |Added ---------------------------------------------------------------------------- Depends on| |34478 --- Comment #10 from Katrin Fischer --- (In reply to Fridolin Somers from comment #9) > So depends on Bug 34478 right ? Correct Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=34478 [Bug 34478] Full CSRF protection -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 18 10:09:31 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 18 Mar 2024 09:09:31 +0000 Subject: [Koha-bugs] [Bug 34478] Full CSRF protection In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=34478 Katrin Fischer changed: What |Removed |Added ---------------------------------------------------------------------------- Blocks| |36274 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36274 [Bug 36274] OPAC suggestions form doesn't display -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 18 10:10:07 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 18 Mar 2024 09:10:07 +0000 Subject: [Koha-bugs] [Bug 35796] Patron password expiration date lost when patron edited by superlibrarian In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35796 Fridolin Somers changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Pushed to master |Pushed to stable Version(s)|24.05.00 |24.05.00,23.11.04 released in| | CC| |fridolin.somers at biblibre.co | |m --- Comment #8 from Fridolin Somers --- Pushed to 23.11.x for 23.11.04 -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 18 10:12:46 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 18 Mar 2024 09:12:46 +0000 Subject: [Koha-bugs] [Bug 36332] JS error on moremember In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36332 Fridolin Somers changed: What |Removed |Added ---------------------------------------------------------------------------- Depends on| |15289 CC| |fridolin.somers at biblibre.co | |m --- Comment #4 from Fridolin Somers --- Dates back to Bug 15289 :) Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=15289 [Bug 15289] "borrowers" permission doesn't allow to see current loans -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 18 10:12:46 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 18 Mar 2024 09:12:46 +0000 Subject: [Koha-bugs] [Bug 15289] "borrowers" permission doesn't allow to see current loans In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=15289 Martin Renvoize changed: What |Removed |Added ---------------------------------------------------------------------------- Target Milestone|Oldversions |--- Fridolin Somers changed: What |Removed |Added ---------------------------------------------------------------------------- Blocks| |36332 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36332 [Bug 36332] JS error on moremember -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 18 10:13:22 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 18 Mar 2024 09:13:22 +0000 Subject: [Koha-bugs] [Bug 36332] JS error on moremember In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36332 Fridolin Somers changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Pushed to master |Pushed to stable Version(s)|24.05.00 |24.05.00,23.11.04 released in| | --- Comment #5 from Fridolin Somers --- Pushed to 23.11.x for 23.11.04 -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 18 10:14:30 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 18 Mar 2024 09:14:30 +0000 Subject: [Koha-bugs] [Bug 36101] Deleting an item removes the itemnumber from old_reserves when it should not In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36101 --- Comment #13 from Marcel de Rooy --- (In reply to Lari Strand from comment #9) > "Keeping an itemnumber in this table that does no longer exist is bad > practice." > > We still have deleted-tables so I don't consider the data as non-existing. Dont you think that we should adhere to proven standards as to SQL, normalization, etc ? :) > > If we touch these old_-tables like this and destroy this archived data that > can be linked still with deleted-tables, shouldn't we do the same to > action_logs? I consider action_logs as an "archive" table just like > old_issues or old_reserves (not sure if we do this already, though. Remove > itemnumbers/biblionumbers from action_logs that are linked to deleted > items/biblios?). Good point. There is room for further improvement indeed. But no reason to switch good to less. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 18 10:15:30 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 18 Mar 2024 09:15:30 +0000 Subject: [Koha-bugs] [Bug 29539] UNIMARC: authority number in $9 displays for thesaurus controlled fields instead of content of $a In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29539 --- Comment #25 from Marcel de Rooy --- (In reply to Katrin Fischer from comment #24) > Hi Marcel, I tried to apply the patches in the attached sequence and the > other way around, I always end up with: > > Apply? [(y)es, (n)o, (i)nteractive] i > Applying: Bug 29539: (follow-up) remove tag_onesubject template > error: sha1 information is lacking or useless > (koha-tmpl/opac-tmpl/bootstrap/en/xslt/UNIMARCslimUtils.xsl). > error: could not build fake ancestor > Patch failed at 0001 Bug 29539: (follow-up) remove tag_onesubject template > hint: Use 'git am --show-current-patch=diff' to see the failed patch > When you have resolved this problem run "git bz apply --continue". > If you would prefer to skip this patch, instead run "git bz apply --skip". > To restore the original branch and stop patching run "git bz apply --abort". > Patch left in > /tmp/Bug-29539-follow-up-remove-tagonesubject-template-daluwkeh.patch > kohadev-koha at kohadevbox:koha(master|AM 1/1)$ git log > > Can you please check/rebase on latest master? I would be happy to leave that to the author. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 18 10:16:09 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 18 Mar 2024 09:16:09 +0000 Subject: [Koha-bugs] [Bug 35997] Cancelling a hold should remove the hold from the queue In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35997 Fridolin Somers changed: What |Removed |Added ---------------------------------------------------------------------------- Version(s)|24.05.00 |24.05.00,23.11.04 released in| | Status|Pushed to master |Pushed to stable CC| |fridolin.somers at biblibre.co | |m --- Comment #13 from Fridolin Somers --- Pushed to 23.11.x for 23.11.04 -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 18 10:17:21 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 18 Mar 2024 09:17:21 +0000 Subject: [Koha-bugs] [Bug 36298] In patrons search road type authorized value code displayed in patron address In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36298 Fridolin Somers changed: What |Removed |Added ---------------------------------------------------------------------------- Version(s)|24.05.00 |24.05.00,23.11.04 released in| | Status|Pushed to master |Pushed to stable --- Comment #5 from Fridolin Somers --- Pushed to 23.11.x for 23.11.04 -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 18 10:18:27 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 18 Mar 2024 09:18:27 +0000 Subject: [Koha-bugs] [Bug 36292] 'See all charges' hyperlink to view guarantee fees is not linked correctly In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36292 Fridolin Somers changed: What |Removed |Added ---------------------------------------------------------------------------- Version(s)|24.05.00 |24.05.00,23.11.04 released in| | Status|Pushed to master |Pushed to stable CC| |fridolin.somers at biblibre.co | |m --- Comment #7 from Fridolin Somers --- Pushed to 23.11.x for 23.11.04 -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 18 10:18:50 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 18 Mar 2024 09:18:50 +0000 Subject: [Koha-bugs] [Bug 29539] UNIMARC: authority number in $9 displays for thesaurus controlled fields instead of content of $a In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29539 --- Comment #26 from Katrin Fischer --- That's alright, just easier for someone with the branch still around. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 18 10:19:42 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 18 Mar 2024 09:19:42 +0000 Subject: [Koha-bugs] [Bug 36292] 'See all charges' hyperlink to view guarantee fees is not linked correctly In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36292 Fridolin Somers changed: What |Removed |Added ---------------------------------------------------------------------------- Depends on| |33528 --- Comment #8 from Fridolin Somers --- Depends on use of new tabs Bug 33528 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33528 [Bug 33528] Use template wrapper for tabs: Patron details and circulation -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 18 10:19:42 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 18 Mar 2024 09:19:42 +0000 Subject: [Koha-bugs] [Bug 33528] Use template wrapper for tabs: Patron details and circulation In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33528 Fridolin Somers changed: What |Removed |Added ---------------------------------------------------------------------------- Blocks| |36292 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36292 [Bug 36292] 'See all charges' hyperlink to view guarantee fees is not linked correctly -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 18 10:21:33 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 18 Mar 2024 09:21:33 +0000 Subject: [Koha-bugs] [Bug 36224] It looks like spsuggest functionality was removed years ago, but the templates still refer to it In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36224 Fridolin Somers changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Pushed to master |Pushed to stable CC| |fridolin.somers at biblibre.co | |m Version(s)|24.05.00 |24.05.00,23.11.04 released in| | --- Comment #5 from Fridolin Somers --- Pushed to 23.11.x for 23.11.04 -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 18 10:23:46 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 18 Mar 2024 09:23:46 +0000 Subject: [Koha-bugs] [Bug 35934] Items in transit show as both in-transit and Available on holdings list In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35934 Fridolin Somers changed: What |Removed |Added ---------------------------------------------------------------------------- Version(s)|24.05.00 |24.05.00,23.11.04 released in| | CC| |fridolin.somers at biblibre.co | |m Status|Pushed to master |Pushed to stable --- Comment #5 from Fridolin Somers --- Pushed to 23.11.x for 23.11.04 -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 18 10:24:48 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 18 Mar 2024 09:24:48 +0000 Subject: [Koha-bugs] [Bug 36277] t/db_dependent/api/v1/transfer_limits.t is failing In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36277 Fridolin Somers changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |fridolin.somers at biblibre.co | |m Status|Pushed to master |Pushed to stable Version(s)|24.05.00 |24.05.00,23.11.04 released in| | --- Comment #23 from Fridolin Somers --- Pushed to 23.11.x for 23.11.04 -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 18 10:25:40 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 18 Mar 2024 09:25:40 +0000 Subject: [Koha-bugs] [Bug 35944] Bookings is not taken into account in CanBookBeRenewed In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35944 Fridolin Somers changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |fridolin.somers at biblibre.co | |m --- Comment #26 from Fridolin Somers --- Waiting for Bug 35248 backport -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 18 10:29:47 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 18 Mar 2024 09:29:47 +0000 Subject: [Koha-bugs] [Bug 29522] Bib record not correctly updated when merging identical authorities with LinkerModule set to First Match In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29522 Fridolin Somers changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Pushed to master |Pushed to stable CC| |fridolin.somers at biblibre.co | |m Version(s)|24.05.00 |24.05.00,23.11.04 released in| | --- Comment #19 from Fridolin Somers --- Pushed to 23.11.x for 23.11.04 -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 18 10:39:20 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 18 Mar 2024 09:39:20 +0000 Subject: [Koha-bugs] [Bug 33036] REST API: Merge biblio records In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33036 --- Comment #50 from Katrin Fischer --- Fixed some small conflicts in Biblio.t caused by the adding of other unit tests meanwhile. Easy to verify for unit tests that you got things right at least :) I notice this adds a lot of dependencies on C4 modules to Koha/Biblio.pm. I wonder if not some of those could have been replaced easily, like "CountSubscriptionFromBiblioNumber". Maybe something for later follow-ups? -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 18 10:50:22 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 18 Mar 2024 09:50:22 +0000 Subject: [Koha-bugs] [Bug 36317] Koha::Biblio->host_items fails with search_ordered() In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36317 --- Comment #5 from Fridolin Somers --- Ah mistake, it is t/db_dependent/Koha/Biblio.t I'm on adding a UT -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 18 10:54:13 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 18 Mar 2024 09:54:13 +0000 Subject: [Koha-bugs] [Bug 29440] Refactor/clean up bulkmarcimport.pl In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29440 Katrin Fischer changed: What |Removed |Added ---------------------------------------------------------------------------- Keywords| |additional_work_needed --- Comment #100 from Katrin Fischer --- This still applies, but please note that I am very suspicious of any patch sets labelled "enhancements" "improvements" or other general terms, as I usually suspect they would be much easier to manage as a series of bugs with smaller changes instead. 1) Please unit tests for disable_autolink in AddBiblio 2) Please add a summary of the changes to the "Text to go in the release notes" field here on the bug I realize this has been sitting a while and I a not going to block it any longer, but please follow-up on these requests! -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 18 10:56:18 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 18 Mar 2024 09:56:18 +0000 Subject: [Koha-bugs] [Bug 33254] 2FA - Trust Current Device In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33254 helm.consortium at nhs.net changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |helm.consortium at nhs.net -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 18 11:04:56 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 18 Mar 2024 10:04:56 +0000 Subject: [Koha-bugs] [Bug 26597] Transfer information from guarantor when adding a guarantor to an existing patron In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=26597 Katrin Fischer changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Passed QA |Pushed to master Version(s)| |24.05.00 released in| | -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 18 11:04:58 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 18 Mar 2024 10:04:58 +0000 Subject: [Koha-bugs] [Bug 26597] Transfer information from guarantor when adding a guarantor to an existing patron In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=26597 --- Comment #46 from Katrin Fischer --- Pushed for 24.05! Well done everyone, thank you! -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 18 11:05:00 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 18 Mar 2024 10:05:00 +0000 Subject: [Koha-bugs] [Bug 29440] Refactor/clean up bulkmarcimport.pl In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29440 Katrin Fischer changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Passed QA |Pushed to master Version(s)| |24.05.00 released in| | -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 18 11:05:03 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 18 Mar 2024 10:05:03 +0000 Subject: [Koha-bugs] [Bug 29440] Refactor/clean up bulkmarcimport.pl In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29440 --- Comment #101 from Katrin Fischer --- Pushed for 24.05! Well done everyone, thank you! -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 18 11:05:05 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 18 Mar 2024 10:05:05 +0000 Subject: [Koha-bugs] [Bug 33036] REST API: Merge biblio records In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33036 Katrin Fischer changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Passed QA |Pushed to master Version(s)| |24.05.00 released in| | -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 18 11:05:06 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 18 Mar 2024 10:05:06 +0000 Subject: [Koha-bugs] [Bug 33036] REST API: Merge biblio records In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33036 --- Comment #51 from Katrin Fischer --- Pushed for 24.05! Well done everyone, thank you! -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 18 11:05:08 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 18 Mar 2024 10:05:08 +0000 Subject: [Koha-bugs] [Bug 33171] Add coded_location_qualifier, barcode, and enumchron to MarcItemFieldsToOrder In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33171 Katrin Fischer changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Passed QA |Pushed to master Version(s)| |24.05.00 released in| | -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 18 11:05:10 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 18 Mar 2024 10:05:10 +0000 Subject: [Koha-bugs] [Bug 33171] Add coded_location_qualifier, barcode, and enumchron to MarcItemFieldsToOrder In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33171 --- Comment #16 from Katrin Fischer --- Pushed for 24.05! Well done everyone, thank you! -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 18 11:05:11 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 18 Mar 2024 10:05:11 +0000 Subject: [Koha-bugs] [Bug 33431] Make code use C4::Context->yaml_preference In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33431 Katrin Fischer changed: What |Removed |Added ---------------------------------------------------------------------------- Version(s)| |24.05.00 released in| | Status|Passed QA |Pushed to master -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 18 11:05:13 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 18 Mar 2024 10:05:13 +0000 Subject: [Koha-bugs] [Bug 33431] Make code use C4::Context->yaml_preference In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33431 --- Comment #22 from Katrin Fischer --- Pushed for 24.05! Well done everyone, thank you! -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 18 11:05:14 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 18 Mar 2024 10:05:14 +0000 Subject: [Koha-bugs] [Bug 35331] Add an ILL table actions plugin hook In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35331 Katrin Fischer changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Passed QA |Pushed to master Version(s)| |24.05.00 released in| | -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 18 11:05:16 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 18 Mar 2024 10:05:16 +0000 Subject: [Koha-bugs] [Bug 35331] Add an ILL table actions plugin hook In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35331 --- Comment #34 from Katrin Fischer --- Pushed for 24.05! Well done everyone, thank you! -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 18 11:05:18 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 18 Mar 2024 10:05:18 +0000 Subject: [Koha-bugs] [Bug 35643] Upgrade HC Sticky library from v2.2.3 to v2.2.7 In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35643 Katrin Fischer changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Passed QA |Pushed to master Version(s)| |24.05.00 released in| | -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 18 11:05:19 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 18 Mar 2024 10:05:19 +0000 Subject: [Koha-bugs] [Bug 35643] Upgrade HC Sticky library from v2.2.3 to v2.2.7 In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35643 --- Comment #7 from Katrin Fischer --- Pushed for 24.05! Well done everyone, thank you! -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 18 11:17:23 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 18 Mar 2024 10:17:23 +0000 Subject: [Koha-bugs] [Bug 16122] Item record needs to keep local use count In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=16122 Martin Renvoize changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #163243|0 |1 is obsolete| | --- Comment #96 from Martin Renvoize --- Created attachment 163296 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163296&action=edit Bug 16122: Add localuse column to items and deleteditems Signed-off-by: Christopher Brannon Signed-off-by: Emily Lamancusa Signed-off-by: Katrin Fischer Signed-off-by: Andrew Fuerste-Henry Signed-off-by: Andrew Fuerste Henry Signed-off-by: Martin Renvoize -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 18 11:17:27 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 18 Mar 2024 10:17:27 +0000 Subject: [Koha-bugs] [Bug 16122] Item record needs to keep local use count In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=16122 Martin Renvoize changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #163244|0 |1 is obsolete| | --- Comment #97 from Martin Renvoize --- Created attachment 163297 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163297&action=edit Bug 16122: API and Schema updates Signed-off-by: Christopher Brannon Signed-off-by: Emily Lamancusa Signed-off-by: Katrin Fischer Signed-off-by: Andrew Fuerste-Henry Signed-off-by: Andrew Fuerste Henry Signed-off-by: Martin Renvoize -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 18 11:17:31 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 18 Mar 2024 10:17:31 +0000 Subject: [Koha-bugs] [Bug 16122] Item record needs to keep local use count In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=16122 Martin Renvoize changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #163245|0 |1 is obsolete| | --- Comment #98 from Martin Renvoize --- Created attachment 163298 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163298&action=edit Bug 16122: Increment items.localuse Signed-off-by: Andrew Fuerste Henry Signed-off-by: Martin Renvoize -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 18 11:17:35 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 18 Mar 2024 10:17:35 +0000 Subject: [Koha-bugs] [Bug 16122] Item record needs to keep local use count In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=16122 Martin Renvoize changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #163246|0 |1 is obsolete| | --- Comment #99 from Martin Renvoize --- Created attachment 163299 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163299&action=edit Bug 16122: Add display and Table settings Signed-off-by: Andrew Fuerste-Henry Signed-off-by: Andrew Fuerste Henry Signed-off-by: Martin Renvoize -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 18 11:17:39 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 18 Mar 2024 10:17:39 +0000 Subject: [Koha-bugs] [Bug 16122] Item record needs to keep local use count In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=16122 Martin Renvoize changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #163247|0 |1 is obsolete| | --- Comment #100 from Martin Renvoize --- Created attachment 163300 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163300&action=edit Bug 16122: Add maintenance script to update items.localuse from stats Signed-off-by: Emily Lamancusa Signed-off-by: Katrin Fischer Signed-off-by: Andrew Fuerste-Henry Signed-off-by: Andrew Fuerste Henry Signed-off-by: Martin Renvoize -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 18 11:17:43 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 18 Mar 2024 10:17:43 +0000 Subject: [Koha-bugs] [Bug 16122] Item record needs to keep local use count In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=16122 Martin Renvoize changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #163248|0 |1 is obsolete| | --- Comment #101 from Martin Renvoize --- Created attachment 163301 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163301&action=edit Bug 16122: Add unit test To test: 1. Apply patch, updatedatabase & schema, restart all Services 2. Go to Administration > Table setting. Find the holdings table ( Catalog > holdings_table ) and turn the local use column on. 3. Go to an item record and notice the column 'Local uses' 4. Turn the system preference RecordLocalUseOnReturn Off. 5. Check in an item that is not checkout out. No local use should be recorded for the item. 6. Turn RecordLocalUseOnReturn on and check in an item that is not checked out. Local use on that item should increment by 1. 7. Create a statistical patron and check an item out to them. Local use should increment by 1. 8. Go to /api/v1/items?external_id={barcode} and make sure the numbers for localuse look correct. To test maintainence script: 1. Without the patch, have RecordLocalUseOnReturn on. 2. Check in some items to record localuse in the stats table. Keep note of those stats. 3. Apply the patches, updatedatabase. 4. Run the maintenance script, perl update_localuse_from_statistics.pl 5. Now check that items.localuse is congruent with what is in the stats table Signed-off-by: Andrew Fuerste Henry Signed-off-by: Martin Renvoize -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 18 11:17:47 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 18 Mar 2024 10:17:47 +0000 Subject: [Koha-bugs] [Bug 16122] Item record needs to keep local use count In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=16122 --- Comment #102 from Martin Renvoize --- Created attachment 163302 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163302&action=edit Bug 16122: Tidy changed code blocks Signed-off-by: Martin Renvoize -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 18 11:17:51 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 18 Mar 2024 10:17:51 +0000 Subject: [Koha-bugs] [Bug 16122] Item record needs to keep local use count In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=16122 --- Comment #103 from Martin Renvoize --- Created attachment 163303 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163303&action=edit Bug 16122: Add note to database update to point out new script Signed-off-by: Martin Renvoize -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 18 11:18:44 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 18 Mar 2024 10:18:44 +0000 Subject: [Koha-bugs] [Bug 16122] Item record needs to keep local use count In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=16122 Martin Renvoize changed: What |Removed |Added ---------------------------------------------------------------------------- QA Contact|testopia at bugs.koha-communit |martin.renvoize at ptfs-europe |y.org |.com Status|Signed Off |Passed QA --- Comment #104 from Martin Renvoize --- All works as designed, QA scripts are happy, tests are passing and new coverage is added. Passing QA, well perserverred Lucas! -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 18 11:26:27 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 18 Mar 2024 10:26:27 +0000 Subject: [Koha-bugs] [Bug 35248] Bookings needs unit tests In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35248 --- Comment #73 from Martin Renvoize --- This should apply happily for 23.11.x Fridolin. The dependency was there to ensure we pushed in the right order for master and to discourage others working on bookings code prior to the tests being present. We aren't testing the code removed in the dependency bugs, but I think that's OK for 23.11.x at this stage. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 18 11:42:44 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 18 Mar 2024 10:42:44 +0000 Subject: [Koha-bugs] [Bug 36297] Avoid using var named "t" in templates In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36297 --- Comment #9 from Kyle M Hall --- (In reply to Fridolin Somers from comment #7) > (In reply to Julian Maurice from comment #4) > > Another solution could be to remove i18n.inc, forcing us to use [% > > I18N.t("...") %] which is unlikely to conflict with other variables. > > I would prefer this option. > This will also make is more easy to find translated strings. > > But I agree with cost-efficiency ;) If everyone agrees this is the solution, we should be able to make a script to generate the changes. Is anyone opposed to the removal of i18n.inc? -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 18 12:01:13 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 18 Mar 2024 11:01:13 +0000 Subject: [Koha-bugs] [Bug 34621] Patron import option to 'Renew existing patrons' 'from the current membership expiry date' not implemented In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=34621 Kyle M Hall changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #161027|0 |1 is obsolete| | --- Comment #12 from Kyle M Hall --- Created attachment 163304 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163304&action=edit Bug 34621: implement Patron import option to 'Renew existing patrons' 'from the current membership expiry date' Test Plan: 1) Test importing a patron with the "from the current membership expiry date" option, note it does not work 2) Apply this patch 3) Restart all the things! 4) Re-test, note the expiration was renewed from the patron's current expiration date! Signed-off-by: David Nind Rebased-by: Victor Grousset/tuxayo -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 18 12:01:20 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 18 Mar 2024 11:01:20 +0000 Subject: [Koha-bugs] [Bug 34621] Patron import option to 'Renew existing patrons' 'from the current membership expiry date' not implemented In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=34621 --- Comment #13 from Kyle M Hall --- Created attachment 163305 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163305&action=edit Bug 34621: Tidy Import.t -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 18 12:04:54 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 18 Mar 2024 11:04:54 +0000 Subject: [Koha-bugs] [Bug 34621] Patron import option to 'Renew existing patrons' 'from the current membership expiry date' not implemented In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=34621 --- Comment #14 from Kyle M Hall --- Created attachment 163306 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163306&action=edit Bug 34621: Tidy import_patrons.pl -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 18 12:07:30 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 18 Mar 2024 11:07:30 +0000 Subject: [Koha-bugs] [Bug 31988] manager.pl is only user for "Catalog by item type" report In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31988 Martin Renvoize changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #163278|0 |1 is obsolete| | --- Comment #9 from Martin Renvoize --- Created attachment 163307 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163307&action=edit Bug 31988: Remove reports/itemtypes.plugin This "plugin system" is only used for the itemtypes report. We can simply remove the reports/manager.pl script and this plugin in favor of a dedicated report. Test plan: Same behaviour expected before and after this patch Signed-off-by: David Nind Signed-off-by: Andrew Fuerste Henry Signed-off-by: Martin Renvoize -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 18 12:08:25 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 18 Mar 2024 11:08:25 +0000 Subject: [Koha-bugs] [Bug 31988] manager.pl is only user for "Catalog by item type" report In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31988 Martin Renvoize changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |martin.renvoize at ptfs-europe | |.com Status|Signed Off |Passed QA --- Comment #10 from Martin Renvoize --- All working as expected still and cleans up nicely. Passing QA -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 18 12:19:26 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 18 Mar 2024 11:19:26 +0000 Subject: [Koha-bugs] [Bug 35977] Display current date in Hold starts on date on opac-reserve In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35977 --- Comment #8 from Martin Renvoize --- Hmm, I don't think the regression comes from here.. I just tested on master and you can select a past date there too without this patch... :(. I'll look into it however as that certainly is a regression somewhere. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 18 12:34:51 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 18 Mar 2024 11:34:51 +0000 Subject: [Koha-bugs] [Bug 36341] New: "Hold starts on date" should be limited to future dates Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36341 Bug ID: 36341 Summary: "Hold starts on date" should be limited to future dates Change sponsored?: --- Product: Koha Version: master Hardware: All OS: All Status: NEW Severity: enhancement Priority: P5 - low Component: OPAC Assignee: oleonard at myacpl.org Reporter: martin.renvoize at ptfs-europe.com QA Contact: testopia at bugs.koha-community.org For some reason we don't appear to limit the date selection yet available in the OPAC 'Hold starts on date'.. it should only allow future dates. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 18 12:34:57 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 18 Mar 2024 11:34:57 +0000 Subject: [Koha-bugs] [Bug 36341] "Hold starts on date" should be limited to future dates In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36341 Martin Renvoize changed: What |Removed |Added ---------------------------------------------------------------------------- Severity|enhancement |normal -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 18 12:35:00 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 18 Mar 2024 11:35:00 +0000 Subject: [Koha-bugs] [Bug 36341] "Hold starts on date" should be limited to future dates In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36341 Martin Renvoize changed: What |Removed |Added ---------------------------------------------------------------------------- Assignee|oleonard at myacpl.org |martin.renvoize at ptfs-europe | |.com -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 18 12:38:00 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 18 Mar 2024 11:38:00 +0000 Subject: [Koha-bugs] [Bug 10060] Allow adding a branch parameter to the web-based self check to indicate library its used at In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=10060 --- Comment #25 from Nick Clemens --- Created attachment 163308 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163308&action=edit Bug 10060: POC This patch adds a stanza to the SetEnv middleware which checks for a branchcode in the SCO url and captures it. We then use that branchcode in checkauth to set the userenv to the specified branch (if it is a real branch) The regex could probably be improved, and the change needs test coverage, but this might be a valid approach to seeting the branch from the URL. Feedback appreciated -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 18 12:40:00 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 18 Mar 2024 11:40:00 +0000 Subject: [Koha-bugs] [Bug 36341] "Hold starts on date" should be limited to future dates In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36341 --- Comment #1 from Martin Renvoize --- Created attachment 163309 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163309&action=edit Bug 36341: Add futureinclusive to future holds This patch adds the flatpickr-futureinclusive data to the input field for "Hold starts on date" in the OPAC. We also add 'flatpickr-future' data to the input field for expiration date as it also doesn't make sense to allow this to be a past data either. Test plan 1) Attempt to place a hold on an item from the OPAC 2) Expand the 'Show more options' dropdown 3) Note that without the patch 'Hold not needed after' allows setting to a date in the past. 4) Enable `AllowHoldDateInFuture` and `OPACAllowHoldDateInFuture` system preferences 5) The 'Hold starts on date' option should now appear if you refresh your hold placing page in the OPAC. 6) Note that the above input also allows setting a past date 7) Apply patch 8) Neith input should allow past dates now. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 18 12:40:11 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 18 Mar 2024 11:40:11 +0000 Subject: [Koha-bugs] [Bug 36341] "Hold starts on date" should be limited to future dates In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36341 Martin Renvoize changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |Needs Signoff -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 18 12:40:41 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 18 Mar 2024 11:40:41 +0000 Subject: [Koha-bugs] [Bug 35977] Display current date in Hold starts on date on opac-reserve In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35977 --- Comment #9 from Martin Renvoize --- Bug 36341 - "Hold starts on date" should be limited to future dates The above fixes the pre-existing lack of futuredate definitions. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 18 13:10:55 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 18 Mar 2024 12:10:55 +0000 Subject: [Koha-bugs] [Bug 28762] Item status shows incorrectly on course-details.pl In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28762 Martin Renvoize changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #161584|0 |1 is obsolete| | --- Comment #52 from Martin Renvoize --- Created attachment 163310 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163310&action=edit Bug 28762: add staff item-status.inc and better handle statues on course-details.tt This patch adds an item-status.inc to the staff side much like what is already in place on the OPAC. To test: 1. create a course in course reserves, add an item to it. 2. confirm your item shows Available for its status on course-details.pl 3. edit your item to be withdrawn, lost, damaged, notforloan, and restricted use 4. reload course-details.pl, confirm it still shows available 5. apply patch 6. repeat step 3 with each of the statuses and make sure it correctly shows on course-details.pl Signed-off-by: Hayley Pelham Signed-off-by: Martin Renvoize -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 18 13:10:58 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 18 Mar 2024 12:10:58 +0000 Subject: [Koha-bugs] [Bug 28762] Item status shows incorrectly on course-details.pl In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28762 Martin Renvoize changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #161585|0 |1 is obsolete| | --- Comment #53 from Martin Renvoize --- Created attachment 163311 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163311&action=edit Bug 28762: handle notforloan better Signed-off-by: Hayley Pelham Signed-off-by: Martin Renvoize -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 18 13:11:02 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 18 Mar 2024 12:11:02 +0000 Subject: [Koha-bugs] [Bug 28762] Item status shows incorrectly on course-details.pl In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28762 Martin Renvoize changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #161586|0 |1 is obsolete| | --- Comment #54 from Martin Renvoize --- Created attachment 163312 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163312&action=edit Bug 28762: (follow-up) fix template logic with Available Signed-off-by: Hayley Pelham Signed-off-by: Martin Renvoize -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 18 13:11:05 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 18 Mar 2024 12:11:05 +0000 Subject: [Koha-bugs] [Bug 28762] Item status shows incorrectly on course-details.pl In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28762 Martin Renvoize changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #161587|0 |1 is obsolete| | --- Comment #55 from Martin Renvoize --- Created attachment 163313 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163313&action=edit Bug 28762: Use Koha::Course in course-details controller This patch updates Koha::Course to include the 'instructors' relation accessor and then update the course-details controller to use the Koha::Course object and pass it to the template instead of building a hash using GetCourse. Signed-off-by: Martin Renvoize -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 18 13:11:08 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 18 Mar 2024 12:11:08 +0000 Subject: [Koha-bugs] [Bug 28762] Item status shows incorrectly on course-details.pl In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28762 Martin Renvoize changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #161588|0 |1 is obsolete| | --- Comment #56 from Martin Renvoize --- Created attachment 163314 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163314&action=edit Bug 28762: Update item-status include This patch updates the item-status include so that it expects just an item object making if simpler and more widely re-usable. Signed-off-by: Martin Renvoize -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 18 13:11:11 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 18 Mar 2024 12:11:11 +0000 Subject: [Koha-bugs] [Bug 28762] Item status shows incorrectly on course-details.pl In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28762 Martin Renvoize changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #161589|0 |1 is obsolete| | --- Comment #57 from Martin Renvoize --- Created attachment 163315 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163315&action=edit Bug 28762: Move notforloan fallback into object Signed-off-by: Martin Renvoize -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 18 13:11:14 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 18 Mar 2024 12:11:14 +0000 Subject: [Koha-bugs] [Bug 28762] Item status shows incorrectly on course-details.pl In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28762 Martin Renvoize changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #161590|0 |1 is obsolete| | --- Comment #58 from Martin Renvoize --- Created attachment 163316 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163316&action=edit Bug 28762: Add test for new 'instructors' accessor -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 18 13:11:18 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 18 Mar 2024 12:11:18 +0000 Subject: [Koha-bugs] [Bug 28762] Item status shows incorrectly on course-details.pl In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28762 Martin Renvoize changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #161591|0 |1 is obsolete| | --- Comment #59 from Martin Renvoize --- Created attachment 163317 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163317&action=edit Bug 28762: Unit tests for not_for_loan accessor -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 18 13:12:08 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 18 Mar 2024 12:12:08 +0000 Subject: [Koha-bugs] [Bug 28762] Item status shows incorrectly on course-details.pl In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28762 Martin Renvoize changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Patch doesn't apply |Signed Off -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 18 13:14:57 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 18 Mar 2024 12:14:57 +0000 Subject: [Koha-bugs] [Bug 28762] Item status shows incorrectly on course-details.pl In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28762 --- Comment #60 from Martin Renvoize --- Another rebase done. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 18 13:20:04 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 18 Mar 2024 12:20:04 +0000 Subject: [Koha-bugs] [Bug 34643] Split CircConfirmItemParts for self-checkout and self-checkin In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=34643 Kyle M Hall changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Failed QA |Signed Off -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 18 13:20:06 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 18 Mar 2024 12:20:06 +0000 Subject: [Koha-bugs] [Bug 34643] Split CircConfirmItemParts for self-checkout and self-checkin In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=34643 --- Comment #9 from Kyle M Hall --- Created attachment 163318 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163318&action=edit Bug 34643: (QA follow-up) Add new sysprefs to sysprefs.sql -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 18 13:31:30 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 18 Mar 2024 12:31:30 +0000 Subject: [Koha-bugs] [Bug 27679] The notices and slips management area should be moved to 'Administration' In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=27679 --- Comment #4 from Martin Renvoize --- Still interested.. generally I'm interested in any efforts to simplify and clarify UI/UX and this counts as that to me. We do indeed need nice fine-grained permissions as part of that though. -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Mon Mar 18 13:40:46 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 18 Mar 2024 12:40:46 +0000 Subject: [Koha-bugs] [Bug 8676] Show vendor name in source of acquisition In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=8676 Martin Renvoize changed: What |Removed |Added ---------------------------------------------------------------------------- Status|In Discussion |Patch doesn't apply -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 18 13:41:43 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 18 Mar 2024 12:41:43 +0000 Subject: [Koha-bugs] [Bug 8676] Show vendor name in source of acquisition In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=8676 --- Comment #18 from Martin Renvoize --- I think this is still really important, but the patches no longer apply as is. As for fallbacks mentioned by Katrin, looking at the code it looks like it does just fallback to the value whenever a vendor record isn't found.. is that not enough? -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 18 13:44:35 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 18 Mar 2024 12:44:35 +0000 Subject: [Koha-bugs] [Bug 34543] Content block accessibility helpers In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=34543 claire.hernandez at biblibre.com changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |claire.hernandez at biblibre.c | |om -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 18 13:48:29 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 18 Mar 2024 12:48:29 +0000 Subject: [Koha-bugs] [Bug 34943] Add a pre-save plugin hook for biblios In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=34943 --- Comment #24 from Martin Renvoize --- Look good to me.. I'm still comparing to the _after_biblio_action_hooks sub though and the signature looks a little different with a top level hash vs a hash under a 'payload' key.. thoughts on that? -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 18 13:59:05 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 18 Mar 2024 12:59:05 +0000 Subject: [Koha-bugs] [Bug 34943] Add a pre-save plugin hook for biblios In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=34943 --- Comment #25 from Tomás Cohen Arazi --- (In reply to Martin Renvoize from comment #24) > Look good to me.. I'm still comparing to the _after_biblio_action_hooks sub > though and the signature looks a little different with a top level hash vs a > hash under a 'payload' key.. thoughts on that? Yeah, I looked at C4::Reserves and C4::Circulation hooks and found those were all following this pattern. I'm not attached to any pattern, but the one I picked seems to be used more. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 18 14:00:54 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 18 Mar 2024 13:00:54 +0000 Subject: [Koha-bugs] [Bug 33703] Entering dates should be more flexible accepting different entry formats In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33703 Martin Renvoize changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #163078|0 |1 is obsolete| | --- Comment #61 from Martin Renvoize --- Created attachment 163319 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163319&action=edit Bug 33703: Add Masikto core/kit for date masking To test: 1. Apply patch 2. Restart all, clear browser cache 3. In the staff interface start testing some flatpickr instances with direct inputs. 4. Try entering your dates without delimiters, '/' or '-', or '.'. 5. Make sure the dates are well formed. 6. Test with each of dateformat's Koha supports. ( system preference 'dateformat'). 7. Add/edit an item with the dateaccessioned.pl plugin loaded, making the dates are well formed. 8. Make an item bookable by going to the item tab of a record and setting at least 1 item to "Bookable:". 9. Now "Place booking", which should trigger a modal. 10. In the "Period" date picker, which is a range, the dates should NOT be formatted. 11. Log in to the OPAC and try some date pickers ( self reg/borrower mod/ect ) Some places to test: -Patron record date of birth -Patron record registration date -Patron record expiry date -Checkouts, manually set a due date -Patron category, enrollment period Signed-off-by: Martin Renvoize -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 18 14:00:58 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 18 Mar 2024 13:00:58 +0000 Subject: [Koha-bugs] [Bug 33703] Entering dates should be more flexible accepting different entry formats In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33703 Martin Renvoize changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #163079|0 |1 is obsolete| | --- Comment #62 from Martin Renvoize --- Created attachment 163320 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163320&action=edit Bug 33703: Add time support Signed-off-by: Martin Renvoize -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 18 14:01:01 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 18 Mar 2024 13:01:01 +0000 Subject: [Koha-bugs] [Bug 33703] Entering dates should be more flexible accepting different entry formats In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33703 Martin Renvoize changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #163080|0 |1 is obsolete| | --- Comment #63 from Martin Renvoize --- Created attachment 163321 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163321&action=edit Bug 33703: Don't use Maskito when picking a range Signed-off-by: Martin Renvoize -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 18 14:01:04 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 18 Mar 2024 13:01:04 +0000 Subject: [Koha-bugs] [Bug 33703] Entering dates should be more flexible accepting different entry formats In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33703 Martin Renvoize changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #163081|0 |1 is obsolete| | --- Comment #64 from Martin Renvoize --- Created attachment 163322 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163322&action=edit Bug 33703: Add Maskito to dateaccessioned.pl Signed-off-by: Martin Renvoize -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 18 14:01:08 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 18 Mar 2024 13:01:08 +0000 Subject: [Koha-bugs] [Bug 33703] Entering dates should be more flexible accepting different entry formats In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33703 Martin Renvoize changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #163082|0 |1 is obsolete| | --- Comment #65 from Martin Renvoize --- Created attachment 163323 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163323&action=edit Bug 33703: Add Maskito support for OPAC Signed-off-by: Martin Renvoize -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 18 14:01:11 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 18 Mar 2024 13:01:11 +0000 Subject: [Koha-bugs] [Bug 33703] Entering dates should be more flexible accepting different entry formats In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33703 Martin Renvoize changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #163083|0 |1 is obsolete| | --- Comment #66 from Martin Renvoize --- Created attachment 163324 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163324&action=edit Bug 33703: Add Maskito to about.tt Signed-off-by: Martin Renvoize -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 18 14:01:44 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 18 Mar 2024 13:01:44 +0000 Subject: [Koha-bugs] [Bug 33703] Entering dates should be more flexible accepting different entry formats In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33703 Martin Renvoize changed: What |Removed |Added ---------------------------------------------------------------------------- QA Contact|martin.renvoize at ptfs-europe |testopia at bugs.koha-communit |.com |y.org -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 18 14:02:59 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 18 Mar 2024 13:02:59 +0000 Subject: [Koha-bugs] [Bug 33703] Entering dates should be more flexible accepting different entry formats In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33703 --- Comment #67 from Martin Renvoize --- This all looks great to me and works in my testing... it would be food to get a final QA as the implementation library changed during all the work but I think that can be fairly quick.. I'd also happily take a signoff from Owen to be a QA tick as someone familiar with the UI/Ux challenges this helps resolve. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 18 14:03:08 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 18 Mar 2024 13:03:08 +0000 Subject: [Koha-bugs] [Bug 33703] Entering dates should be more flexible accepting different entry formats In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33703 Martin Renvoize changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |oleonard at myacpl.org -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 18 14:05:04 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 18 Mar 2024 13:05:04 +0000 Subject: [Koha-bugs] [Bug 36342] New: Allow entering date ranges directly in bookings Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36342 Bug ID: 36342 Summary: Allow entering date ranges directly in bookings Change sponsored?: --- Product: Koha Version: master Hardware: All OS: All Status: NEW Severity: enhancement Priority: P5 - low Component: Staff interface Assignee: koha-bugs at lists.koha-community.org Reporter: martin.renvoize at ptfs-europe.com QA Contact: testopia at bugs.koha-community.org CC: gmcharlt at gmail.com Depends on: 29002, 33703 We add input masking to flatpickr in bug 33703 but we explicitly disable it for the range case which is used in bookings. There are options to support this in the Maskito library too, so we could consider adding it back for bookings inputs too. Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29002 [Bug 29002] Add ability to book items ahead of time https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33703 [Bug 33703] Entering dates should be more flexible accepting different entry formats -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 18 14:05:04 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 18 Mar 2024 13:05:04 +0000 Subject: [Koha-bugs] [Bug 29002] Add ability to book items ahead of time In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29002 Martin Renvoize changed: What |Removed |Added ---------------------------------------------------------------------------- Blocks| |36342 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36342 [Bug 36342] Allow entering date ranges directly in bookings -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 18 14:05:04 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 18 Mar 2024 13:05:04 +0000 Subject: [Koha-bugs] [Bug 33703] Entering dates should be more flexible accepting different entry formats In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33703 Martin Renvoize changed: What |Removed |Added ---------------------------------------------------------------------------- Blocks| |36342 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36342 [Bug 36342] Allow entering date ranges directly in bookings -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 18 14:05:48 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 18 Mar 2024 13:05:48 +0000 Subject: [Koha-bugs] [Bug 33703] Entering dates should be more flexible accepting different entry formats In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33703 Martin Renvoize changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |sally.healey at cheshireshared | |services.gov.uk -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 18 14:08:47 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 18 Mar 2024 13:08:47 +0000 Subject: [Koha-bugs] [Bug 35426] Improve layout of bookings modal form In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35426 --- Comment #11 from Martin Renvoize --- I think we can backport this regardless of my negative comments.. I'd just love to see us get more consistent overall somehow in the future. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 18 14:23:22 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 18 Mar 2024 13:23:22 +0000 Subject: [Koha-bugs] [Bug 34943] Add a pre-save plugin hook for biblios In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=34943 --- Comment #26 from Martin Renvoize --- Good catch, thanks for highlighting that Tomas. Oh the fun of trying to stay consistent when we're already rather inconsistent aye. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 18 14:26:12 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 18 Mar 2024 13:26:12 +0000 Subject: [Koha-bugs] [Bug 34943] Add a pre-save plugin hook for biblios In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=34943 Martin Renvoize changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #161695|0 |1 is obsolete| | --- Comment #27 from Martin Renvoize --- Created attachment 163325 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163325&action=edit Bug 34943: Unit tests Signed-off-by: David Nind Signed-off-by: Martin Renvoize -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 18 14:26:14 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 18 Mar 2024 13:26:14 +0000 Subject: [Koha-bugs] [Bug 34943] Add a pre-save plugin hook for biblios In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=34943 Martin Renvoize changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #161696|0 |1 is obsolete| | --- Comment #28 from Martin Renvoize --- Created attachment 163326 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163326&action=edit Bug 34943: Implement `before_biblio_metadata_store` plugin hook This patch implements a hook allowing record modification right before they are written on the DB. The idea is that a plugin could be used to add machine-generated fields/subfields. To test: 1. Apply the unit tests patch 2. Run: $ ktd --shell k$ prove t/db_dependent/Koha/Plugins/Biblio_and_Items_plugin_hooks.t => FAIL: Tests fail! The hook is not implemented so the desired results don't appear (added fields/subfields). 3. Apply this patch 4. Repeat 2 => SUCCESS: It works! 5. Run: k$ qa -c 2 => SUCCESS: All green! 6. Sign off :-D Sponsored-by: Theke Solutions Signed-off-by: David Nind Signed-off-by: Martin Renvoize -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 18 14:26:17 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 18 Mar 2024 13:26:17 +0000 Subject: [Koha-bugs] [Bug 34943] Add a pre-save plugin hook for biblios In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=34943 Martin Renvoize changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #163048|0 |1 is obsolete| | --- Comment #29 from Martin Renvoize --- Created attachment 163327 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163327&action=edit Bug 34943: (QA follow-up) Use `before_biblio_action` and an `action` param This patch harmonizes the hook name and parameters with the rest of the codebase. To test: 1. Apply this patch 2. Run: $ ktd --shell k$ qa => SUCCESS: All looks green, and tests still pass (i.e. they were correctly adjusted to the new schema). 3. Sign off :-D Signed-off-by: Tomas Cohen Arazi Signed-off-by: Martin Renvoize -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 18 14:26:28 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 18 Mar 2024 13:26:28 +0000 Subject: [Koha-bugs] [Bug 34943] Add a pre-save plugin hook for biblios In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=34943 Martin Renvoize changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Signed Off |Passed QA QA Contact|testopia at bugs.koha-communit |martin.renvoize at ptfs-europe |y.org |.com -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 18 14:29:59 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 18 Mar 2024 13:29:59 +0000 Subject: [Koha-bugs] [Bug 36343] New: The 'after_biblio_action' hooks have an inconsistent signature compared to before_biblio_action, and actions in reserves and items Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36343 Bug ID: 36343 Summary: The 'after_biblio_action' hooks have an inconsistent signature compared to before_biblio_action, and actions in reserves and items Change sponsored?: --- Product: Koha Version: master Hardware: All OS: All Status: NEW Severity: enhancement Priority: P5 - low Component: Plugin architecture Assignee: koha-bugs at lists.koha-community.org Reporter: martin.renvoize at ptfs-europe.com QA Contact: testopia at bugs.koha-community.org Our hooks should attempt to have a consistent routine signature whenever that can.. unfortunately, we've not been very good at spotting when patterns change. Whilst QAing bug 34943 we discovered an inconsistency in the hook signatures again. 'payload' vs no-payload. I propose we add support for 'payload' to the _after_biblio_action hook and set a deprecation period for the older signature style. -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Mon Mar 18 14:30:15 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 18 Mar 2024 13:30:15 +0000 Subject: [Koha-bugs] [Bug 36343] The 'after_biblio_action' hooks have an inconsistent signature compared to before_biblio_action, and actions in reserves and items In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36343 Martin Renvoize changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |kyle at bywatersolutions.com, | |tomascohen at gmail.com -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 18 14:30:22 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 18 Mar 2024 13:30:22 +0000 Subject: [Koha-bugs] [Bug 36343] The 'after_biblio_action' hooks have an inconsistent signature compared to before_biblio_action, and actions in reserves and items In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36343 Martin Renvoize changed: What |Removed |Added ---------------------------------------------------------------------------- Keywords| |Hackfest -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Mon Mar 18 14:30:30 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 18 Mar 2024 13:30:30 +0000 Subject: [Koha-bugs] [Bug 36343] The 'after_biblio_action' hooks have an inconsistent signature compared to before_biblio_action, and actions in reserves and items In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36343 Martin Renvoize changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |pedro.amorim at ptfs-europe.co | |m -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 18 14:30:38 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 18 Mar 2024 13:30:38 +0000 Subject: [Koha-bugs] [Bug 36343] The 'after_biblio_action' hooks have an inconsistent signature compared to before_biblio_action, and actions in reserves and items In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36343 Martin Renvoize changed: What |Removed |Added ---------------------------------------------------------------------------- Severity|enhancement |minor -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 18 14:31:35 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 18 Mar 2024 13:31:35 +0000 Subject: [Koha-bugs] [Bug 36343] The 'after_biblio_action' hooks have an inconsistent signature compared to before_biblio_action, and actions in reserves and items In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36343 Martin Renvoize changed: What |Removed |Added ---------------------------------------------------------------------------- See Also| |https://bugs.koha-community | |.org/bugzilla3/show_bug.cgi | |?id=34943 -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Mon Mar 18 14:31:35 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 18 Mar 2024 13:31:35 +0000 Subject: [Koha-bugs] [Bug 34943] Add a pre-save plugin hook for biblios In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=34943 Martin Renvoize changed: What |Removed |Added ---------------------------------------------------------------------------- See Also| |https://bugs.koha-community | |.org/bugzilla3/show_bug.cgi | |?id=36343 -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 18 14:36:25 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 18 Mar 2024 13:36:25 +0000 Subject: [Koha-bugs] [Bug 36101] Deleting an item removes the itemnumber from old_reserves when it should not In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36101 Andrew Fuerste-Henry changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Failed QA |In Discussion --- Comment #14 from Andrew Fuerste-Henry --- (In reply to Marcel de Rooy from comment #7) > (In reply to Lari Strand from comment #0) > > Unless there's a good reason for this data loss, the itemnumber should be > > preserved in old_reserves after deleting an item. > > Please explain why there is a good reason to do so. Keeping an itemnumber in > this table that does no longer exist is bad practice. The itemnumber in the reserves table may refer to an item in the items table or may refer to an item in the deleteditems table. The [table]/deleted[table] structure for items and bibs supports the fundamental idea that a library may need to know about titles/items that were once in their collection but are not any longer. Even after an item has been removed from the collection, it's still useful to know which holds and checkouts involved that item. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 18 14:37:04 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 18 Mar 2024 13:37:04 +0000 Subject: [Koha-bugs] [Bug 36101] Deleting an item removes the itemnumber from old_reserves when it should not In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36101 Andrew Fuerste-Henry changed: What |Removed |Added ---------------------------------------------------------------------------- See Also| |https://bugs.koha-community | |.org/bugzilla3/show_bug.cgi | |?id=32729 -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 18 14:37:04 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 18 Mar 2024 13:37:04 +0000 Subject: [Koha-bugs] [Bug 32729] Deleting an item removes the itemnumber from old_issues when it probably should not In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=32729 Andrew Fuerste-Henry changed: What |Removed |Added ---------------------------------------------------------------------------- See Also| |https://bugs.koha-community | |.org/bugzilla3/show_bug.cgi | |?id=36101 -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 18 14:37:59 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 18 Mar 2024 13:37:59 +0000 Subject: [Koha-bugs] [Bug 36343] The 'after_biblio_action' hooks have an inconsistent signature compared to before_biblio_action, and actions in reserves and items In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36343 --- Comment #1 from Martin Renvoize --- Created attachment 163328 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163328&action=edit Bug 36343: Add support for 'payload' to _after_biblio_action This patch adds support for the payload key into the _after_bilio_action plugin hook wrapper routine. This brings it more inline with how these 'action hooks' appear in Holds and circulation. -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Mon Mar 18 14:38:16 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 18 Mar 2024 13:38:16 +0000 Subject: [Koha-bugs] [Bug 36343] The 'after_biblio_action' hooks have an inconsistent signature compared to before_biblio_action, and actions in reserves and items In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36343 Martin Renvoize changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |Needs Signoff -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 18 14:40:15 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 18 Mar 2024 13:40:15 +0000 Subject: [Koha-bugs] [Bug 29392] Add plugin hooks before merging biblios or authorities In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29392 Martin Renvoize changed: What |Removed |Added ---------------------------------------------------------------------------- Depends on| |34943 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=34943 [Bug 34943] Add a pre-save plugin hook for biblios -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 18 14:40:15 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 18 Mar 2024 13:40:15 +0000 Subject: [Koha-bugs] [Bug 34943] Add a pre-save plugin hook for biblios In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=34943 Martin Renvoize changed: What |Removed |Added ---------------------------------------------------------------------------- Blocks| |29392 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29392 [Bug 29392] Add plugin hooks before merging biblios or authorities -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 18 14:40:41 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 18 Mar 2024 13:40:41 +0000 Subject: [Koha-bugs] [Bug 36344] New: Add schema changes summary to release notes Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36344 Bug ID: 36344 Summary: Add schema changes summary to release notes Change sponsored?: --- Product: Koha Version: unspecified Hardware: All OS: All Status: NEW Severity: enhancement Priority: P5 - low Component: Documentation Assignee: koha-bugs at lists.koha-community.org Reporter: r.delahunty at arts.ac.uk QA Contact: testopia at bugs.koha-community.org The community release notes have summaries at the end for new and deleted system preferences and new authorised values and letter codes but none for schema changes. A list of new/deleted tables and one for new/renamed/deleted columns in tables would be useful. For example, issues.renewals became issues.renewals_count in 21.11 but this change was buried in bug 30275 (and reports broke as we missed mention of the change). And the schema change in bug 26057 altered the meaning of ‘missing in transit’ as we had defined it in our MIT reports (so they broke too). Schema changes are now included in our ‘upgrade pain-points’ and we will look very closely at them. A summary of the changes would be very useful. -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Mon Mar 18 14:47:40 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 18 Mar 2024 13:47:40 +0000 Subject: [Koha-bugs] [Bug 29392] Add plugin hooks before merging biblios or authorities In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29392 Martin Renvoize changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #127217|0 |1 is obsolete| | --- Comment #7 from Martin Renvoize --- Created attachment 163329 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163329&action=edit Bug 29392: Add plugin hooks before merging biblios or authorities Hooks are called 'before_biblio_action' and 'before_authority_action' and they both take an 'action' parameter whose value is 'merge'. Other parameters include the record id (biblionumber or authid), the object itself (Koha::Biblio or Koha::Authority), the MARC::Record about to be saved (so plugins can modify it), and the list of record ids that will be deleted after the merge. Test plan: 1. Create a plugin with these two methods. For instance: sub before_biblio_action { my ($self, $args) = @_; my $action = $args->{action}; return unless $action eq 'merge'; my $record = $args->{record}; my $merged_biblio_ids = $args->{merged_biblio_ids}; if ($record && $merged_biblio_ids) { my @fields = map { MARC::Field->new('035', ' ', ' ', 'z' => $_) } @$merged_biblio_ids; $record->insert_fields_ordered(@fields); } } sub before_authority_action { my ($self, $args) = @_; my $action = $args->{action}; return unless $action eq 'merge'; my $record = $args->{record}; my $merged_authority_ids = $args->{merged_authority_ids}; if ($record && $merged_authority_ids) { my @fields = map { MARC::Field->new('035', ' ', ' ', 'z' => $_) } @$merged_authority_ids; $record->insert_fields_ordered(@fields); } } This will copy the identifier of deleted records inside 035$z of the final record. (035$z is for "Canceled/invalid system control number") 2. Add the plugin path to your $KOHA_CONF 3. Run misc/devel/install_plugins.pl. It should say: Installed version 4. Apply patch and restart starman 5. Create two or more biblios with the same title. Make sure they are indexed in your search engine. 6. Search for them. In the results check their corresponding boxes and click on "Edit -> Merge records" 7. Merge them and verify that your plugin code was called. If you used the example above, verify that it added a 035$z for each deleted record. 8. Do the same for authorities Signed-off-by: Martin Renvoize -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 18 14:47:43 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 18 Mar 2024 13:47:43 +0000 Subject: [Koha-bugs] [Bug 29392] Add plugin hooks before merging biblios or authorities In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29392 --- Comment #8 from Martin Renvoize --- Created attachment 163330 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163330&action=edit Bug 29392: Improve hook consistency. It would appear we've adopted 'payload' for passing additional data into action hooks. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 18 14:49:57 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 18 Mar 2024 13:49:57 +0000 Subject: [Koha-bugs] [Bug 29392] Add plugin hooks before merging biblios or authorities In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29392 Martin Renvoize changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Failed QA |Passed QA --- Comment #9 from Martin Renvoize --- Rebased and added a consistency follow-up... we aught to have unit tests, but as we're at the controller level that's not quite as trivial as our other hook unit tests. I'm opting to PQA for now but hope in the future the logic of these merge op's will make it's way into the Model level. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 18 14:56:48 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 18 Mar 2024 13:56:48 +0000 Subject: [Koha-bugs] [Bug 27595] Place holds for patrons on accepted purchase suggestions In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=27595 Nick Clemens changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Patch doesn't apply |Passed QA -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 18 14:56:52 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 18 Mar 2024 13:56:52 +0000 Subject: [Koha-bugs] [Bug 27595] Place holds for patrons on accepted purchase suggestions In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=27595 Nick Clemens changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #159786|0 |1 is obsolete| | --- Comment #32 from Nick Clemens --- Created attachment 163331 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163331&action=edit Bug 27595: Add new system preference PlaceHoldsOnOrdersFromSuggestions Signed-off-by: Kelly Signed-off-by: Martin Renvoize -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 18 14:56:55 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 18 Mar 2024 13:56:55 +0000 Subject: [Koha-bugs] [Bug 27595] Place holds for patrons on accepted purchase suggestions In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=27595 Nick Clemens changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #159787|0 |1 is obsolete| | --- Comment #33 from Nick Clemens --- Created attachment 163332 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163332&action=edit Bug 27595: Add place_hold method to Koha::Suggestion This patch adds anew method to allow placing a hold from a purchase suggestion To test: prove -v t/db_dependent/Suggestions.t Signed-off-by: Kelly Signed-off-by: Martin Renvoize -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 18 14:56:59 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 18 Mar 2024 13:56:59 +0000 Subject: [Koha-bugs] [Bug 27595] Place holds for patrons on accepted purchase suggestions In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=27595 Nick Clemens changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #159788|0 |1 is obsolete| | --- Comment #34 from Nick Clemens --- Created attachment 163333 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163333&action=edit Bug 27595: Place holds when ordering from a suggestion This patch updates the ordering code to place a hold when adding to a basket from a suggestion if the new preference PlaceHoldsOnOrdersFromSuggestions is enabled. To test: 1 - Apply all patches 2 - updatedatabase 3 - See new system preference PlaceHoldsOnOrdersFromSuggestions 4 - Create a new purchase suggestion, mark it accepted 5 - Go to acquisitions, find a vendor, find a basket, 'Add to basket' -> 'From a suggestion' 6 - Complete order, confirm no hold was placed 7 - Enable the new system preference 8 - Repeast 4-6 9 - Confirm a hold was placed Signed-off-by: Kelly Signed-off-by: Martin Renvoize -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 18 14:58:51 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 18 Mar 2024 13:58:51 +0000 Subject: [Koha-bugs] [Bug 36277] t/db_dependent/api/v1/transfer_limits.t is failing In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36277 --- Comment #24 from Katrin Fischer --- We still have this one failing seemingly randomly (first it was D11, now on U20) https://jenkins.koha-community.org/job/Koha_Master_U20/lastCompletedBuild/testReport/(root)/t_db_dependent_api_v1_transfer_limits_t/batch_add___and_batch_delete___tests__1683_/ :( -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 18 15:09:49 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 18 Mar 2024 14:09:49 +0000 Subject: [Koha-bugs] [Bug 36101] Deleting an item removes the itemnumber from old_reserves when it should not In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36101 Nick Clemens changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |nick at bywatersolutions.com See Also| |https://bugs.koha-community | |.org/bugzilla3/show_bug.cgi | |?id=33262 -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 18 15:09:49 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 18 Mar 2024 14:09:49 +0000 Subject: [Koha-bugs] [Bug 33262] When an ordered record is deleted, we lose all information on what was ordered In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33262 Nick Clemens changed: What |Removed |Added ---------------------------------------------------------------------------- See Also| |https://bugs.koha-community | |.org/bugzilla3/show_bug.cgi | |?id=36101 -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 18 15:21:24 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 18 Mar 2024 14:21:24 +0000 Subject: [Koha-bugs] [Bug 36317] Koha::Biblio->host_items fails with search_ordered() In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36317 Fridolin Somers changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Failed QA |Needs Signoff -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 18 15:21:27 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 18 Mar 2024 14:21:27 +0000 Subject: [Koha-bugs] [Bug 36317] Koha::Biblio->host_items fails with search_ordered() In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36317 Fridolin Somers changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #163155|0 |1 is obsolete| | --- Comment #6 from Fridolin Somers --- Created attachment 163334 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163334&action=edit Bug 36317: Add unit test If fails it shows : DBIx::Class::Storage::DBI::_dbh_execute(): DBI Exception: DBD::mysql::st execute failed: Column 'itemnumber' in where clause is ambiguous at /kohadevbox/koha/Koha/Objects.pm line 399 -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 18 15:21:40 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 18 Mar 2024 14:21:40 +0000 Subject: [Koha-bugs] [Bug 36317] Koha::Biblio->host_items fails with search_ordered() In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36317 --- Comment #7 from Fridolin Somers --- Created attachment 163335 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163335&action=edit Bug 36317: Koha::Biblio->host_items must use me.itemnumber Koha::Biblio->host_items fails with search_ordered() because of ambiguous column 'itemnumber' in where clause. It must use me.itemnumber like in Koha::Biblio->items Test plan : prove t/db_dependent/Biblio.t Signed-off-by: David Nind -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 18 15:22:20 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 18 Mar 2024 14:22:20 +0000 Subject: [Koha-bugs] [Bug 35921] Improve perfs of acqui-home.pl when there are many budgets In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35921 Martin Renvoize changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #163288|0 |1 is obsolete| | --- Comment #12 from Martin Renvoize --- Created attachment 163336 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163336&action=edit Bug 35921: Improve perfs of acqui-home.pl when there are many budgets When there are a lot of budgets with the same owner, most of the time of acqui-home.pl is spent loading the same patron over and over. This patch makes sure each borrower is loaded only once. Test plan: 0. Do not apply the patch yet 1. Create a thousand budgets with the following command (make sure the budget_owner_id is an existing borrowernumber): perl -MKoha::Database -e ' my $schema = Koha::Database->schema; my $period = $schema->resultset("Aqbudgetperiod")->create({ budget_period_startdate => "2000-01-01", budget_period_enddate => "2999-12-31" }); $schema->resultset("Aqbudget")->create({ budget_owner_id => 1, budget_period_id => $period->id }) for (1..1000) ' 2. Measure the time it takes to load acqui/acqui-home.pl (do it several times and keep the average time) 3. Apply the patch 4. Repeat step 2 Signed-off-by: Pedro Amorim Signed-off-by: Victor Grousset/tuxayo Signed-off-by: Martin Renvoize -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 18 15:23:50 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 18 Mar 2024 14:23:50 +0000 Subject: [Koha-bugs] [Bug 35921] Improve perfs of acqui-home.pl when there are many budgets In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35921 Martin Renvoize changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #163336|0 |1 is obsolete| | --- Comment #13 from Martin Renvoize --- Created attachment 163337 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163337&action=edit Bug 35921: Improve perfs of acqui-home.pl when there are many budgets When there are a lot of budgets with the same owner, most of the time of acqui-home.pl is spent loading the same patron over and over. This patch makes sure each borrower is loaded only once. Test plan: 0. Do not apply the patch yet 1. Create a thousand budgets with the following command (make sure the budget_owner_id is an existing borrowernumber): perl -MKoha::Database -e ' my $schema = Koha::Database->schema; my $period = $schema->resultset("Aqbudgetperiod")->create({ budget_period_startdate => "2000-01-01", budget_period_enddate => "2999-12-31" }); $schema->resultset("Aqbudget")->create({ budget_owner_id => 1, budget_period_id => $period->id }) for (1..1000) ' 2. Measure the time it takes to load acqui/acqui-home.pl (do it several times and keep the average time) 3. Apply the patch 4. Repeat step 2 Signed-off-by: Pedro Amorim Signed-off-by: Victor Grousset/tuxayo Signed-off-by: Martin Renvoize -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 18 15:23:58 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 18 Mar 2024 14:23:58 +0000 Subject: [Koha-bugs] [Bug 35921] Improve perfs of acqui-home.pl when there are many budgets In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35921 Martin Renvoize changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Signed Off |Passed QA CC| |martin.renvoize at ptfs-europe | |.com -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 18 15:24:02 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 18 Mar 2024 14:24:02 +0000 Subject: [Koha-bugs] [Bug 35921] Improve perfs of acqui-home.pl when there are many budgets In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35921 Martin Renvoize changed: What |Removed |Added ---------------------------------------------------------------------------- QA Contact|testopia at bugs.koha-communit |martin.renvoize at ptfs-europe |y.org |.com -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 18 15:24:10 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 18 Mar 2024 14:24:10 +0000 Subject: [Koha-bugs] [Bug 35921] Improve perfs of acqui-home.pl when there are many budgets In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35921 Martin Renvoize changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |nick at bywatersolutions.com -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 18 15:24:16 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 18 Mar 2024 14:24:16 +0000 Subject: [Koha-bugs] [Bug 35921] Improve perfs of acqui-home.pl when there are many budgets In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35921 Martin Renvoize changed: What |Removed |Added ---------------------------------------------------------------------------- Severity|enhancement |normal -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 18 15:25:13 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 18 Mar 2024 14:25:13 +0000 Subject: [Koha-bugs] [Bug 36341] "Hold starts on date" should be limited to future dates In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36341 Marcel de Rooy changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |m.de.rooy at rijksmuseum.nl -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 18 15:27:14 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 18 Mar 2024 14:27:14 +0000 Subject: [Koha-bugs] [Bug 36317] Koha::Biblio->host_items fails with search_ordered() In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36317 --- Comment #8 from Fridolin Somers --- (In reply to Fridolin Somers from comment #6) > Created attachment 163334 [details] [review] > Bug 36317: Add unit test > > If fails it shows : > DBIx::Class::Storage::DBI::_dbh_execute(): DBI Exception: DBD::mysql::st > execute failed: Column 'itemnumber' in where clause is ambiguous at > /kohadevbox/koha/Koha/Objects.pm line 399 Combining Koha::Biblio->host_items with Koha::Items->search_ordered in test suite was too hard. I've done a simpler join on an item transfer which fails on current master. Note that I test with MariaDB 10.6. Looks like it is more severe on join than lower versions. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 18 15:28:34 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 18 Mar 2024 14:28:34 +0000 Subject: [Koha-bugs] [Bug 36317] Koha::Biblio->host_items fails with search_ordered() In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36317 Fridolin Somers changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #163335|0 |1 is obsolete| | --- Comment #9 from Fridolin Somers --- Created attachment 163338 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163338&action=edit Bug 36317: Koha::Biblio->host_items must use me.itemnumber Koha::Biblio->host_items fails with search_ordered() because of ambiguous column 'itemnumber' in where clause. It must use me.itemnumber like in Koha::Biblio->items Test plan : prove t/db_dependent/Koha/Biblio.t Signed-off-by: David Nind -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 18 15:29:56 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 18 Mar 2024 14:29:56 +0000 Subject: [Koha-bugs] [Bug 33036] REST API: Merge biblio records In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33036 Martin Renvoize changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |martin.renvoize at ptfs-europe | |.com QA Contact| |jonathan.druart at gmail.com -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 18 15:33:50 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 18 Mar 2024 14:33:50 +0000 Subject: [Koha-bugs] [Bug 36317] Koha::Biblio->host_items fails with search_ordered() In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36317 --- Comment #10 from Fridolin Somers --- Working on this I learned that DBIx combines several searches into one : Koha::Items->search( { itemnumber => 123 } )->search( {}, { join => 'branchtransfers' } ); Will give only one SQL query : SELECT * FROM items JOIN branchtransfers USING itemnumber WHERE itemnumber='123' So we should always use explicit "me" : Koha::Items->search( { "me.itemnumber" => 123 } )->search( {}, { join => 'branchtransfers' } ); -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 18 15:34:00 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 18 Mar 2024 14:34:00 +0000 Subject: [Koha-bugs] [Bug 29392] Add plugin hooks before merging biblios or authorities In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29392 Martin Renvoize changed: What |Removed |Added ---------------------------------------------------------------------------- Depends on| |33036 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33036 [Bug 33036] REST API: Merge biblio records -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 18 15:34:00 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 18 Mar 2024 14:34:00 +0000 Subject: [Koha-bugs] [Bug 33036] REST API: Merge biblio records In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33036 Martin Renvoize changed: What |Removed |Added ---------------------------------------------------------------------------- Blocks| |29392 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29392 [Bug 29392] Add plugin hooks before merging biblios or authorities -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 18 15:34:27 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 18 Mar 2024 14:34:27 +0000 Subject: [Koha-bugs] [Bug 29392] Add plugin hooks before merging biblios or authorities In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29392 Martin Renvoize changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Passed QA |Signed Off --- Comment #10 from Martin Renvoize --- With bug 33036 having just been pushed, I think we need to move the before_biblio hooks here. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 18 15:35:19 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 18 Mar 2024 14:35:19 +0000 Subject: [Koha-bugs] [Bug 12771] Enhancement to manage more than 3 levels of overdue notice In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=12771 Lisette Scheer changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |lisette.scheer at bywatersolut | |ions.com -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 18 15:46:21 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 18 Mar 2024 14:46:21 +0000 Subject: [Koha-bugs] [Bug 36345] New: Deleting related things causes data loss for old_reserves Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36345 Bug ID: 36345 Summary: Deleting related things causes data loss for old_reserves Change sponsored?: --- Product: Koha Version: master Hardware: All OS: All Status: NEW Severity: normal Priority: P5 - low Component: Architecture, internals, and plumbing Assignee: koha-bugs at lists.koha-community.org Reporter: kyle at bywatersolutions.com QA Contact: testopia at bugs.koha-community.org The old_reserves table is meant to be a historical preservation of data. Currently it has foreign keys a number of tables where that also have a delete/old table for preservation. For example, we may have an "old reserve" with an associated item. When we delete that item, the item is moved to the deleteditems, and old_reserves.itemnumber is set to NULL thus losing the associated item even though we still have the item data! This is true for borrowers, bibs and items. To enable saving this data, we should add a non FK column for each related table that has a delete/old version of that table. Then, when the associated item is deleted, copy the FK value to the new column before is is nullified. In fact, if we populated those columns when moving the hold from reserves to old_reserves, we wouldn't even have to add code to each of the delete methods! -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Mon Mar 18 15:46:25 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 18 Mar 2024 14:46:25 +0000 Subject: [Koha-bugs] [Bug 29392] Add plugin hooks before merging biblios or authorities In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29392 --- Comment #11 from Martin Renvoize --- (In reply to Martin Renvoize from comment #10) > With bug 33036 having just been pushed, I think we need to move the > before_biblio hooks here. Hmm.. kinda annoying.. we're allowing for both metadata and biblio changes here in the hook.. that will be more difficult if we move within the merge_with routing of Koha::Biblio as we don't handle metadata in that merge routine at all. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 18 15:46:33 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 18 Mar 2024 14:46:33 +0000 Subject: [Koha-bugs] [Bug 36345] Deleting related things causes data loss for old_reserves In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36345 Kyle M Hall changed: What |Removed |Added ---------------------------------------------------------------------------- Depends on| |30648 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30648 [Bug 30648] Title is lost in holds history when biblio is deleted -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Mon Mar 18 15:46:33 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 18 Mar 2024 14:46:33 +0000 Subject: [Koha-bugs] [Bug 30648] Title is lost in holds history when biblio is deleted In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30648 Kyle M Hall changed: What |Removed |Added ---------------------------------------------------------------------------- Blocks| |36345 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36345 [Bug 36345] Deleting related things causes data loss for old_reserves -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 18 15:46:48 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 18 Mar 2024 14:46:48 +0000 Subject: [Koha-bugs] [Bug 36345] Deleting related things causes data loss for old_reserves In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36345 Kyle M Hall changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |kyle at bywatersolutions.com See Also| |https://bugs.koha-community | |.org/bugzilla3/show_bug.cgi | |?id=36101 -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Mon Mar 18 15:46:48 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 18 Mar 2024 14:46:48 +0000 Subject: [Koha-bugs] [Bug 36101] Deleting an item removes the itemnumber from old_reserves when it should not In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36101 Kyle M Hall changed: What |Removed |Added ---------------------------------------------------------------------------- See Also| |https://bugs.koha-community | |.org/bugzilla3/show_bug.cgi | |?id=36345 -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 18 15:57:47 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 18 Mar 2024 14:57:47 +0000 Subject: [Koha-bugs] [Bug 36346] New: CheckReserves sometimes lead to bad behavior Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36346 Bug ID: 36346 Summary: CheckReserves sometimes lead to bad behavior Change sponsored?: --- Product: Koha Version: master Hardware: All OS: All Status: NEW Severity: enhancement Priority: P5 - low Component: Circulation Assignee: koha-bugs at lists.koha-community.org Reporter: thibaud.guillot at biblibre.com QA Contact: testopia at bugs.koha-community.org CC: gmcharlt at gmail.com, kyle.m.hall at gmail.com Hi @ll, Some options in the circulation rules may lead to incorrect returns from CheckReserves. When you enabled AllowHoldPolicyOverride, you can forcing a hold, even when it is not authorized in the "Default holds policy by item type" rule table. Let me explain: when a hold is forced on an item whose itemtype has a holdallowed rule set to "not_allowed", if you return the item, the hold will not be detected. Similarly, when you perform a checkout, the pop-up indicating that a hold has been placed is not displayed. It's possible that in other places in the code this would cause other inconveniences, but I haven't counted them all. -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Mon Mar 18 15:57:53 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 18 Mar 2024 14:57:53 +0000 Subject: [Koha-bugs] [Bug 36346] CheckReserves sometimes lead to bad behavior In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36346 Thibaud Guillot changed: What |Removed |Added ---------------------------------------------------------------------------- Assignee|koha-bugs at lists.koha-commun |thibaud.guillot at biblibre.co |ity.org |m -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 18 16:07:31 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 18 Mar 2024 15:07:31 +0000 Subject: [Koha-bugs] [Bug 36346] CheckReserves sometimes lead to bad behavior In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36346 Thibaud Guillot changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |Needs Signoff -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 18 16:07:34 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 18 Mar 2024 15:07:34 +0000 Subject: [Koha-bugs] [Bug 36346] CheckReserves sometimes lead to bad behavior In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36346 --- Comment #1 from Thibaud Guillot --- Created attachment 163339 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163339&action=edit Bug 36346 : Prevent moving to the next object on 'not_allowed' rule Test plan: 1) Enable AllowHoldPolicyOverride 2) Set a new circulation rule on "Default holds policy by item type": For example, an item type called "Comics" with Hold policy set on "No holds allowed" 3) Go to an item related to this item type and force a hold :) 4) Try to perform a check-in on this item, no pop up 5) Try to perform a check out for another patron, no pop up again 6) Apply this patch 7) Repeat step 4 and 4, normally now there is a pop up with hold information Sponsored by : BibLibre -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 18 16:09:11 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 18 Mar 2024 15:09:11 +0000 Subject: [Koha-bugs] [Bug 36347] New: Return claims table is loaded twice Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36347 Bug ID: 36347 Summary: Return claims table is loaded twice Change sponsored?: --- Product: Koha Version: master Hardware: All OS: All Status: ASSIGNED Severity: normal Priority: P5 - low Component: Circulation Assignee: julian.maurice at biblibre.com Reporter: julian.maurice at biblibre.com QA Contact: testopia at bugs.koha-community.org CC: gmcharlt at gmail.com, kyle.m.hall at gmail.com The issue is caused by these lines in circulation.js: $("#finesholdsissues a[data-toggle='tab']").on("shown.bs.tab", function(e){ $(this).click(); }); When the user clicks on a hidden tab, 'shown.bs.tab' is triggered and then another click event is triggered. And because the table is loaded on tab click, it is loaded twice. Visually it can cause the rows to be duplicated (it is random, probably due to timing, network latency, ...) -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 18 16:09:59 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 18 Mar 2024 15:09:59 +0000 Subject: [Koha-bugs] [Bug 36347] Return claims table is loaded twice In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36347 --- Comment #1 from Julian Maurice --- Created attachment 163340 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163340&action=edit Bug 36347: Avoid return claims table being loaded twice The issue is caused by these lines in circulation.js: $("#finesholdsissues a[data-toggle='tab']").on("shown.bs.tab", function(e){ $(this).click(); }); When the user clicks on a hidden tab, 'shown.bs.tab' is triggered and then another click event is triggered. And because the table was loaded on tab click, it was loaded twice. Visually it could have caused the rows to be duplicated (it was random, probably due to timing, network latency, ...) I don't know why we need to trigger a click in this case, but removing this will probably break something else, so the fix here is to load the table on 'shown.bs.tab' event instead of 'click' This patch also contains a small fix in refreshReturnClaimsTable which was reloading the table right after the table initialization. Test plan: 1. Check out an item, and in the checkouts table, click "Claim returned" 2. Open the network tab of your browser's developer tools 3. Click on the "Claims" tab, verify that only one call is made to svc/return_claims 4. Verify that the claims table is displayed correctly -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 18 16:10:11 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 18 Mar 2024 15:10:11 +0000 Subject: [Koha-bugs] [Bug 36347] Return claims table is loaded twice In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36347 Julian Maurice changed: What |Removed |Added ---------------------------------------------------------------------------- Status|ASSIGNED |Needs Signoff -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 18 16:18:20 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 18 Mar 2024 15:18:20 +0000 Subject: [Koha-bugs] [Bug 35921] Improve perfs of acqui-home.pl when there are many budgets In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35921 --- Comment #14 from Jonathan Druart --- (In reply to Julian Maurice from comment #8) > (In reply to Jonathan Druart from comment #7) > > You are mixing unblessed and blessed in budget_owner. > > The logged in patron will be a hashref and others will be Koha::Patron > > objects. > No ? The %patrons hash only contains Koha::Patron object. $loggedinpatron is > a hashref but it's not in the %patrons hash and is not used for > budget_owner, only as a CanUserUseBudget parameter. Yes, sorry, it seems that I misread something! -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 18 16:28:48 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 18 Mar 2024 15:28:48 +0000 Subject: [Koha-bugs] [Bug 29033] Add C4::Context->multivalue_preference In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29033 --- Comment #27 from Jonathan Druart --- And we are not using it anywhere? Next step? -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 18 16:33:19 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 18 Mar 2024 15:33:19 +0000 Subject: [Koha-bugs] [Bug 36334] Unnecessary JS code in member.tt In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36334 --- Comment #8 from Jonathan Druart --- (In reply to Nick Clemens from comment #7) > Jonathan, can you confirm my follow-up? Yes, good catch! Thanks a lot! -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 18 16:39:54 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 18 Mar 2024 15:39:54 +0000 Subject: [Koha-bugs] [Bug 35129] REST API: _per_page=0 crashes on Illegal division by zero In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35129 Tomás Cohen Arazi changed: What |Removed |Added ---------------------------------------------------------------------------- Assignee|koha-bugs at lists.koha-commun |tomascohen at gmail.com |ity.org | -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Mon Mar 18 16:40:02 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 18 Mar 2024 15:40:02 +0000 Subject: [Koha-bugs] [Bug 35129] REST API: _per_page=0 crashes on Illegal division by zero In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35129 --- Comment #3 from Tomás Cohen Arazi --- Nice catch. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 18 16:41:08 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 18 Mar 2024 15:41:08 +0000 Subject: [Koha-bugs] [Bug 36277] t/db_dependent/api/v1/transfer_limits.t is failing In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36277 --- Comment #25 from Jonathan Druart --- The error now starts with "Premature connection close" instead of "Inactivity timeout" koha_1 | # Premature connection close koha_1 | koha_1 | # Failed test 'POST //jJk8CE_fqJgQlLwZpiokcDRYn3YvprTEr5hQLvRFIQjcQDdyCMiW__Dx5yc:thePassword123@/api/v1/transfer_limits/batch' koha_1 | # at t/db_dependent/api/v1/transfer_limits.t line 210. koha_1 | koha_1 | # Failed test 'SWAGGER3.2.1' koha_1 | # at t/db_dependent/api/v1/transfer_limits.t line 210. koha_1 | # got: undef koha_1 | # expected: '201' koha_1 | # Looks like you failed 2 tests of 26. koha_1 | koha_1 | # Failed test 'batch_add() and batch_delete() tests' koha_1 | # at t/db_dependent/api/v1/transfer_limits.t line 269. koha_1 | # Looks like you failed 1 test of 4. koha_1 | [11:07:21] t/db_dependent/api/v1/transfer_limits.t . A successful run on Jenkins (Koha_Master#2813 Docker_15) is slow koha_1 | [10:56:23] t/db_dependent/api/v1/transfer_limits.t ..................................... ok 41681 ms ( 0.01 usr 0.00 sys + 30.81 cusr 1.84 csys = 32.66 CPU) It takes ~10sec on my laptop and I compared with other tests, they are faster on Docker_15. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 18 16:49:22 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 18 Mar 2024 15:49:22 +0000 Subject: [Koha-bugs] [Bug 36274] OPAC suggestions form doesn't display In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36274 Fridolin Somers changed: What |Removed |Added ---------------------------------------------------------------------------- Resolution|--- |FIXED Status|Pushed to master |RESOLVED --- Comment #11 from Fridolin Somers --- Bug 34478 not in 23.11.x -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 18 16:49:23 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 18 Mar 2024 15:49:23 +0000 Subject: [Koha-bugs] [Bug 36044] Show ISBN number of purchase suggestions on the OPAC In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36044 Bug 36044 depends on bug 36274, which changed state. Bug 36274 Summary: OPAC suggestions form doesn't display https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36274 What |Removed |Added ---------------------------------------------------------------------------- Status|Pushed to master |RESOLVED Resolution|--- |FIXED -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 18 16:53:53 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 18 Mar 2024 15:53:53 +0000 Subject: [Koha-bugs] [Bug 35129] REST API: _per_page=0 crashes on Illegal division by zero In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35129 Tomás Cohen Arazi changed: What |Removed |Added ---------------------------------------------------------------------------- Patch complexity|--- |Trivial patch Status|NEW |Needs Signoff -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 18 16:53:55 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 18 Mar 2024 15:53:55 +0000 Subject: [Koha-bugs] [Bug 35129] REST API: _per_page=0 crashes on Illegal division by zero In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35129 --- Comment #4 from Tomás Cohen Arazi --- Created attachment 163342 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163342&action=edit Bug 35129: Regression tests Signed-off-by: Tomas Cohen Arazi -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 18 16:53:58 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 18 Mar 2024 15:53:58 +0000 Subject: [Koha-bugs] [Bug 35129] REST API: _per_page=0 crashes on Illegal division by zero In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35129 --- Comment #5 from Tomás Cohen Arazi --- Created attachment 163343 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163343&action=edit Bug 35129: Return 400 if _per_page=0 passed This patch adds a safe guard for when consumers pass _per_page=0 to endpoints. This condition is checked for on a centralized place and avoid reaching the controller in such scenarios that would provoke a division by zero exception. To test: 1. Apply the regression tests patch 2. Run: $ ktd --shell k$ prove t/db_dependent/api/v1/pagination.t => FAIL: We expect a 400, but get a 500 instead 3. Apply this patch 4. Repeat 2 => SUCCESS: Tests pass! No more explosions for this! 5. Sign off :-D Signed-off-by: Tomas Cohen Arazi -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 18 17:13:34 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 18 Mar 2024 16:13:34 +0000 Subject: [Koha-bugs] [Bug 34611] Add a script for pseudonymizing existing data In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=34611 Nick Clemens changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Patch doesn't apply |Passed QA -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 18 17:13:36 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 18 Mar 2024 16:13:36 +0000 Subject: [Koha-bugs] [Bug 34611] Add a script for pseudonymizing existing data In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=34611 Nick Clemens changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #159909|0 |1 is obsolete| | Attachment #159910|0 |1 is obsolete| | Attachment #159911|0 |1 is obsolete| | Attachment #159912|0 |1 is obsolete| | --- Comment #29 from Nick Clemens --- Created attachment 163344 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163344&action=edit Bug 34611: Unit tests Signed-off-by: Tomas Cohen Arazi Signed-off-by: AFHDubCoLib Signed-off-by: Tomas Cohen Arazi -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 18 17:13:39 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 18 Mar 2024 16:13:39 +0000 Subject: [Koha-bugs] [Bug 34611] Add a script for pseudonymizing existing data In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=34611 --- Comment #30 from Nick Clemens --- Created attachment 163345 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163345&action=edit Bug 34611: Add pseudonymize routine to Koha::Statistics This patch adds a new routine to pseudonymize a statistic and adjusts C4::Stats to use this new routine. Additionally Koha::PseudonymizedTransaction->new_from_statistic is updated to check for the existence of objects before using them (in the case of older stats where things may have been deleted) Tests are added and can be run using: 1. Run: $ ktd --shell k$ prove t/db_dependent/Koha/PseudonymizedTransaction.t \ t/db_dependent/Koha/Pseudonymization.t => SUCCESS: New tests pass, old tests keep passing Signed-off-by: AFHDubCoLib Signed-off-by: Tomas Cohen Arazi -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 18 17:13:41 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 18 Mar 2024 16:13:41 +0000 Subject: [Koha-bugs] [Bug 34611] Add a script for pseudonymizing existing data In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=34611 --- Comment #31 from Nick Clemens --- Created attachment 163346 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163346&action=edit Bug 34611: Add a script to pseudonymize statistics from before a given date This script takes a date parameter in SQL format and pseudonymizes all statistics found before this date. Only values that can be found will be added, i.e. no deleted patron or item info will be present. Additionally - the values stored will be the current values from patrons and items, so some info will be approximate, much as it is when joining from the statistics table for reporting. To test: 1 - Perform some issues/returns/renewals/on-site checkouts 2 - Make sure Pseudonymization is disabled 3 - perl misc/maintenance/pseudonymize_statistics.pl 4 - Script ends and reports that preference is not active 5 - Enable the pref, and choose some borrower and item fields NOTE: See bug 28911 if you need a bcrypt key for your koha-conf.xml 6 - perl misc/maintenance/pseudonymize_statistics.pl 7 - sudo koha-mysql kohadev 8 - SELECT * FROM pseudonymized_transactions 9 - Confirm data is correctly stored 10 - DELETE FROM pseudonymized_transactions; 11 - UPDATE statistics SET datetime = '2023-01-01 00:00:00'; 12 - perl misc/maintenance/pseudonymize_statistics.pl -b "2022-12-31 23:59:59"; 13 - SELECT * FROM pseudonymized_transactions; 14 - Confirm no entries were made 15 - Select different options in Pseudonmyization prefs, including borrower attributes This wil require defining an attribute that can be kept for pseudonymization 16 - Confirm options are correctly pseudonymized Signed-off-by: AFHDubCoLib Signed-off-by: Tomas Cohen Arazi -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 18 17:13:43 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 18 Mar 2024 16:13:43 +0000 Subject: [Koha-bugs] [Bug 34611] Add a script for pseudonymizing existing data In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=34611 --- Comment #32 from Nick Clemens --- Created attachment 163347 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163347&action=edit Bug 34611: Confirm run if pseudonymized transactions found and add verbose feedback Signed-off-by: AFHDubCoLib Signed-off-by: Tomas Cohen Arazi -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 18 17:27:48 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 18 Mar 2024 16:27:48 +0000 Subject: [Koha-bugs] [Bug 36349] New: Login for SCO/SCI broken by CSRF Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36349 Bug ID: 36349 Summary: Login for SCO/SCI broken by CSRF Change sponsored?: --- Product: Koha Version: master Hardware: All OS: All Status: NEW Severity: normal Priority: P5 - low Component: Self checkout Assignee: koha-bugs at lists.koha-community.org Reporter: nick at bywatersolutions.com QA Contact: testopia at bugs.koha-community.org bug 36102 / bug 34478 added the csrf token to opac-auth for patron login, however, it isn't used for SCO/SCI logins -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Mon Mar 18 17:28:08 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 18 Mar 2024 16:28:08 +0000 Subject: [Koha-bugs] [Bug 35919] Add record sources CRUD In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35919 Tomás Cohen Arazi changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #161577|0 |1 is obsolete| | Attachment #161578|0 |1 is obsolete| | Attachment #161579|0 |1 is obsolete| | Attachment #161580|0 |1 is obsolete| | Attachment #161581|0 |1 is obsolete| | Attachment #161582|0 |1 is obsolete| | Attachment #161583|0 |1 is obsolete| | Attachment #162489|0 |1 is obsolete| | Attachment #162594|0 |1 is obsolete| | Attachment #162595|0 |1 is obsolete| | Attachment #162599|0 |1 is obsolete| | --- Comment #30 from Tomás Cohen Arazi --- Created attachment 163348 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163348&action=edit Bug 35919: DB changes This patch adds: * A new table: `record_sources`. * A new user permission: `manage_record_sources`. * A FK on record_sources.recour_source_id on the biblio_metadata tables Record sources will contain a name and (for now) a flag telling if records from the specific source can be manually edited. Signed-off-by: Tomas Cohen Arazi Signed-off-by: Matt Blenkinsop -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 18 17:28:08 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 18 Mar 2024 16:28:08 +0000 Subject: [Koha-bugs] [Bug 36350] New: Add subclass of Koha::Objects that provides caching for find Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36350 Bug ID: 36350 Summary: Add subclass of Koha::Objects that provides caching for find Change sponsored?: --- Product: Koha Version: master Hardware: All OS: All Status: NEW Severity: enhancement Priority: P5 - low Component: Architecture, internals, and plumbing Assignee: koha-bugs at lists.koha-community.org Reporter: glasklas at gmail.com QA Contact: testopia at bugs.koha-community.org At our library we have traced some performance issues to repeated find calls for a number of object types. To address this patch introduces a subclass for Koha::Object that if extended instead of the former provides a cached version of find. This patch enables caching for ItemTypes and Libraries which I believe are called repeatedly for the same objects much than the others. Other possible candidates are Patrons and Items but will have to do some more digging to find out if it makes much a difference. It's easy to enable/disable by just switching out the base class for the Koha::Object and Koha::Objects derived classes. -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Mon Mar 18 17:28:11 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 18 Mar 2024 16:28:11 +0000 Subject: [Koha-bugs] [Bug 35919] Add record sources CRUD In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35919 --- Comment #31 from Tomás Cohen Arazi --- Created attachment 163349 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163349&action=edit Bug 35919: Add Koha::RecordSource(s) classes Signed-off-by: Tomas Cohen Arazi Signed-off-by: Matt Blenkinsop -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 18 17:28:15 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 18 Mar 2024 16:28:15 +0000 Subject: [Koha-bugs] [Bug 35919] Add record sources CRUD In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35919 --- Comment #32 from Tomás Cohen Arazi --- Created attachment 163350 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163350&action=edit Bug 35919: Add /record_sources endpoints This patch introduces endpoints for managing record sources. This is done on top of Koha::RecordSource(s) following the current coding style. To test: 1. Apply this patch 2. Run: $ ktd --shell k$ prove t/db_dependent/api/v1/record_sources.t => SUCCESS: Tests pass! 3. Sign off :-D Signed-off-by: Tomas Cohen Arazi Signed-off-by: Matt Blenkinsop -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 18 17:28:18 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 18 Mar 2024 16:28:18 +0000 Subject: [Koha-bugs] [Bug 35919] Add record sources CRUD In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35919 --- Comment #33 from Tomás Cohen Arazi --- Created attachment 163351 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163351&action=edit Bug 35919: Add record sources admin page This patch introduces a Vue.js based record sources managing page. To test it: 1. Apply this patch 2. Build the Vue.js stuff: $ ktd --shell k$ yarn js:build k$ restart_all 3. On the staff interface, go to Administration > Record sources 4. Play with the interface and the offered actions => SUCCESS: Things go well 5. Sign off :-D Signed-off-by: Tomas Cohen Arazi Signed-off-by: Matt Blenkinsop -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 18 17:28:21 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 18 Mar 2024 16:28:21 +0000 Subject: [Koha-bugs] [Bug 35919] Add record sources CRUD In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35919 --- Comment #34 from Tomás Cohen Arazi --- Created attachment 163352 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163352&action=edit Bug 35919: DBIC schema [DO NOT PUSH] Signed-off-by: Tomas Cohen Arazi Signed-off-by: Matt Blenkinsop -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 18 17:28:25 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 18 Mar 2024 16:28:25 +0000 Subject: [Koha-bugs] [Bug 35919] Add record sources CRUD In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35919 --- Comment #35 from Tomás Cohen Arazi --- Created attachment 163353 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163353&action=edit Bug 35919: Add Koha::Biblio::Metadata->can_be_edited prove t/db_dependent/Koha/Biblio/Metadata.t Signed-off-by: Tomas Cohen Arazi Signed-off-by: Matt Blenkinsop -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 18 17:28:28 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 18 Mar 2024 16:28:28 +0000 Subject: [Koha-bugs] [Bug 35919] Add record sources CRUD In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35919 --- Comment #36 from Tomás Cohen Arazi --- Created attachment 163354 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163354&action=edit Bug 35919: Add cypress tests This patch adds Cypress tests for the `record sources` CRUD as required by QA. I tried to cover all the UI interactions and behaviours. To test: 1. Have all the patches applied 2. Run: $ ktd --shell k$ cypress run --spec t/cypress/integration/Admin/RecordSources_spec.ts => SUCCESS: Tests pass! 3. Sign off :-D Signed-off-by: Tomas Cohen Arazi Signed-off-by: Matt Blenkinsop -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 18 17:28:31 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 18 Mar 2024 16:28:31 +0000 Subject: [Koha-bugs] [Bug 35919] Add record sources CRUD In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35919 --- Comment #37 from Tomás Cohen Arazi --- Created attachment 163355 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163355&action=edit Bug 35919: Add superlibrarian permission to Permissions.t Permissions.t was failing when running a jenkins build to another branch with this bug applied. Permissions.t was missing the permission for record sources and is now added in this patch Test plan: 1) prove t/Koha/Auth/Permissions.t -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 18 17:30:49 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 18 Mar 2024 16:30:49 +0000 Subject: [Koha-bugs] [Bug 36349] Login for SCO/SCI broken by CSRF In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36349 Nick Clemens changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |Needs Signoff -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Mon Mar 18 17:30:51 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 18 Mar 2024 16:30:51 +0000 Subject: [Koha-bugs] [Bug 36349] Login for SCO/SCI broken by CSRF In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36349 --- Comment #1 from Nick Clemens --- Created attachment 163356 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163356&action=edit Bug 36349: Make sure CSRF token is included for all login scenarios To test: 1 - In KTD visit: http://localhost:8080/cgi-bin/koha/sci/sci-main.pl 2 - Everything should be set for auto self check user etc, just login as a patron If not (or not using KTD) setup a self check user, enable SCO and SCI, set self check patron system preferences, then login with patron 3 - 403 Error 4 - Repeat with sco: http://localhost:8080/cgi-bin/koha/sco/sco-main.pl 5 - Apply patch, restart all 6 - Try again, both should be successful -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Mon Mar 18 17:31:00 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 18 Mar 2024 16:31:00 +0000 Subject: [Koha-bugs] [Bug 36349] Login for SCO/SCI broken by CSRF In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36349 Nick Clemens changed: What |Removed |Added ---------------------------------------------------------------------------- Depends on| |34478, 36102 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=34478 [Bug 34478] Full CSRF protection https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36102 [Bug 36102] Protect login forms from CSRF attacks -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 18 17:31:00 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 18 Mar 2024 16:31:00 +0000 Subject: [Koha-bugs] [Bug 34478] Full CSRF protection In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=34478 Nick Clemens changed: What |Removed |Added ---------------------------------------------------------------------------- Blocks| |36349 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36349 [Bug 36349] Login for SCO/SCI broken by CSRF -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 18 17:31:00 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 18 Mar 2024 16:31:00 +0000 Subject: [Koha-bugs] [Bug 36102] Protect login forms from CSRF attacks In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36102 Nick Clemens changed: What |Removed |Added ---------------------------------------------------------------------------- Blocks| |36349 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36349 [Bug 36349] Login for SCO/SCI broken by CSRF -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 18 17:32:06 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 18 Mar 2024 16:32:06 +0000 Subject: [Koha-bugs] [Bug 36350] Add subclass of Koha::Objects that provides caching for find In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36350 --- Comment #1 from David Gustafsson --- Created attachment 163357 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163357&action=edit Bug 36350: Add caching for Objects::find Add subclass of Koha::Objects that provides caching for find. To test: 1) Ensure tests in t/db_dependend/Koha/Libraries.t passes Sponsored-by: Gothenburg University Library -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 18 17:32:48 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 18 Mar 2024 16:32:48 +0000 Subject: [Koha-bugs] [Bug 36350] Add subclass of Koha::Objects that provides caching for find In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36350 David Gustafsson changed: What |Removed |Added ---------------------------------------------------------------------------- Assignee|koha-bugs at lists.koha-commun |glasklas at gmail.com |ity.org | -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. From bugzilla-daemon at bugs.koha-community.org Mon Mar 18 17:35:41 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 18 Mar 2024 16:35:41 +0000 Subject: [Koha-bugs] [Bug 23102] 404 errors on page causes SCI user to be logged out In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=23102 Nick Clemens changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Failed QA |Needs Signoff Depends on|33881 | -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 18 17:35:44 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 18 Mar 2024 16:35:44 +0000 Subject: [Koha-bugs] [Bug 23102] 404 errors on page causes SCI user to be logged out In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=23102 Nick Clemens changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #154691|0 |1 is obsolete| | Attachment #154692|0 |1 is obsolete| | --- Comment #34 from Nick Clemens --- Created attachment 163358 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163358&action=edit Bug 23102: Selenium test -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Mar 18 17:35:47 2024 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 18 Mar 2024 16:35:47 +0000 Subject: [Koha-bugs] [Bug 23102] 404 errors on page causes SCI user to be logged out In-Reply-To: References: Message-ID: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=23102 --- Comment #35 from Nick Clemens --- Created attachment 163359 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=163359&action=edit Bug 23102: 404 errors on page causes SCI user to be logged out To test: 1 - Have something on the SCO page that won't load Add to SCOUserJS: