Summary: | Suspending holds consecutively populates previously used date falsely | ||
---|---|---|---|
Product: | Koha | Reporter: | Laura Escamilla <Laura.escamilla> |
Component: | Circulation | Assignee: | Katariina Pohto <katariina.pohto> |
Status: | Needs documenting --- | QA Contact: | Testopia <testopia> |
Severity: | normal | ||
Priority: | P5 - low | CC: | fridolin.somers, gmcharlt, katariina.pohto, kyle.m.hall, pedro.amorim, phil, wainuiwitikapark |
Version: | Main | ||
Hardware: | All | ||
OS: | All | ||
Change sponsored?: | --- | Patch complexity: | --- |
Documentation contact: | Documentation submission: | ||
Text to go in the release notes: | Version(s) released in: |
24.05.00,23.11.06
|
|
Circulation function: | |||
Bug Depends on: | 36774 | ||
Bug Blocks: | |||
Attachments: |
Bug 34263: Suspending holds consecutively populates previously used date falsely
Bug 34263: Suspending holds consecutively populates previously used date falsely Bug 34263: QA follow-up: Use flatpickr .clear instead Bug 34263: Suspending holds consecutively populates previously used date falsely Bug 34263: (QA follow-up): Use flatpickr .clear instead |
Description
Laura Escamilla
2023-07-12 18:13:56 UTC
Created attachment 166069 [details] [review] Bug 34263: Suspending holds consecutively populates previously used date falsely The date picker and the hidden input field that saves the suspend date are two different fields. Using the Suspend button or the "Clear date to suspend indefinitely" link will only clear the hidden input field, and not the date picker. This will result in inconsistencies with what's seen on the date picker and what's actually set as the date value. This patch will change the functions for Suspend button the Clear date link to clear both the hidden input field and the date picker, so the dates are working consistently. The fields already had a unified class suspend-until but it was not used. Test plan: 1) Place 3 holds on a patron. 2) Suspend a hold and set a date for it. 3) Suspend a second hold and notice the previously used date is shown on the date picker. Note that the hold will be suspended indefinitely. 4) Open the suspending window for the third hold and pick a date. Click "Clear date to suspend indefinitely" and note the date picker doesn't get cleared. The hold will be suspended indefinitely. 5) Apply patch. 6) Suspend a hold and set a date for it. 7) Suspend a second hold and notice the date picker does not have a preset date. 8) Pick a date and clear it with the "Clear date to suspend indefinitely link". See that the date picker also gets cleared. Created attachment 166140 [details] [review] Bug 34263: Suspending holds consecutively populates previously used date falsely Suspending a hold doesn't clear the date from the date picker. When another hold is suspended the previously used date will show on the date picker but the value is not set on the hold. Suspending the hold will suspend it indefinitely. Also the link "Clear date to suspend indefinitely" will not clear the date picker. This patch will make both the Suspend button and the Clear date link clear the dates from both the date picker and the variable passed on, making the suspending consistent with what is seen on the date picker. Test plan: 1) Place 3 holds on a patron. 2) Suspend a hold and set a date for it. 3) Suspend a second hold and notice the previously used date is shown on the date picker. Note that the hold will be suspended indefinitely. 4) Open the suspending window for the third hold and pick a date. Click "Clear date to suspend indefinitely" and note the date picker doesn't get cleared. The hold will be suspended indefinitely. 5) Apply patch. 6) Suspend a hold and set a date for it. 7) Suspend a second hold and notice the date picker does not have a preset date. 8) Pick a date and clear it with the "Clear date to suspend indefinitely link". See that the date picker also gets cleared. Signed-off-by: Pedro Amorim <pedro.amorim@ptfs-europe.com> Created attachment 166141 [details] [review] Bug 34263: QA follow-up: Use flatpickr .clear instead Signed-off-by: Pedro Amorim <pedro.amorim@ptfs-europe.com> Hi all, looking here. Testing notes: suspending the hold needs to be done from http://localhost:8081/cgi-bin/koha/members/moremember.pl?borrowernumber=19 (I was suspending holds from the biblio holds history and was having a hard time reproducing) I looked at this and thought "Why aren't we using flatpickr's clear() method instead?" and had a try myself. Found a bug with it and filed 36774. It turns out we resort to other .val("") for flatpickr instances elsewhere in the code and personally I don't think we should. Made this bug depend on the other one. Take a look at test yourself please. Created attachment 166397 [details] [review] Bug 34263: Suspending holds consecutively populates previously used date falsely Suspending a hold doesn't clear the date from the date picker. When another hold is suspended the previously used date will show on the date picker but the value is not set on the hold. Suspending the hold will suspend it indefinitely. Also the link "Clear date to suspend indefinitely" will not clear the date picker. This patch will make both the Suspend button and the Clear date link clear the dates from both the date picker and the variable passed on, making the suspending consistent with what is seen on the date picker. Test plan: 1) Place 3 holds on a patron. 2) Suspend a hold and set a date for it. 3) Suspend a second hold and notice the previously used date is shown on the date picker. Note that the hold will be suspended indefinitely. 4) Open the suspending window for the third hold and pick a date. Click "Clear date to suspend indefinitely" and note the date picker doesn't get cleared. The hold will be suspended indefinitely. 5) Apply patch. 6) Suspend a hold and set a date for it. 7) Suspend a second hold and notice the date picker does not have a preset date. 8) Pick a date and clear it with the "Clear date to suspend indefinitely link". See that the date picker also gets cleared. Signed-off-by: Pedro Amorim <pedro.amorim@ptfs-europe.com> Signed-off-by: Nick Clemens <nick@bywatersolutions.com> Created attachment 166398 [details] [review] Bug 34263: (QA follow-up): Use flatpickr .clear instead Signed-off-by: Pedro Amorim <pedro.amorim@ptfs-europe.com> Signed-off-by: Nick Clemens <nick@bywatersolutions.com> Pushed for 24.05! Well done everyone, thank you! (In reply to Katrin Fischer from comment #7) > Pushed for 24.05! > > Well done everyone, thank you! These patches require bug 36774 to be pushed first, ideally. Apologies here, I ended up blocking this bug with the flatpickr thing that I initially thought was a quick fix but ended up being a bit of a rabbit hole. (In reply to Pedro Amorim from comment #8) > (In reply to Katrin Fischer from comment #7) > > Pushed for 24.05! > > > > Well done everyone, thank you! > > These patches require bug 36774 to be pushed first, ideally. > Apologies here, I ended up blocking this bug with the flatpickr thing that I > initially thought was a quick fix but ended up being a bit of a rabbit hole. Sorry, you commented when it was already pushed... maybe we can organize a quick QA? It's odd. The dependency should have been detected - I am looking into it. (In reply to Katrin Fischer from comment #10) > It's odd. The dependency should have been detected - I am looking into it. We figured that out: git bz didn't detect/warn about the dependency, because the dependent bug was temporarily moved back to ASSIGNED. I've decided to revert the patch, that gives us a clean state again to deal with the dependencies correctly. Blocked by dependency waiting for QA. Pushed for 24.05! Well done everyone, thank you! Depends on Bug 36774 not in 23.11.x (In reply to Fridolin Somers from comment #15) > Depends on Bug 36774 not in 23.11.x From bug 36774: Fridolin Somers 2024-05-24 15:18:39 UTC Pushed to 23.11.x for 23.11.06 Which is it? =D Oups good catch, thanks ;) Pushed to 23.11.x for 23.11.06 The QA follow up patch adds back in the pre-selected value on the datepicker for my 23.05.x Not backporting to 23.05.x |