[Bug 40982] New: Basket: Orders table — "Modify" and "Cancel order" columns missing or displayed incorrectly
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=40982 Bug ID: 40982 Summary: Basket: Orders table — "Modify" and "Cancel order" columns missing or displayed incorrectly Change sponsored?: --- Product: Koha Version: Main Hardware: All OS: All Status: NEW Severity: enhancement Priority: P5 - low Component: Acquisitions Assignee: koha-bugs@lists.koha-community.org Reporter: slavashishkin@gmail.com QA Contact: testopia@bugs.koha-community.org Depends on: 33484 Testing notes (using KTD) Note: before starting, set CancelOrdersInClosedBaskets = Allow. /cgi-bin/koha/admin/preferences.pl?op=search&searchfield=CancelOrdersInClosedBaskets Add an order to a basket: 1. Acquisitions → Search vendors → Search 2. Click the vendor name 3. In the Baskets column, click the link 4. Select a basket (or create a new one) 5. Add at least one order 6. In the open basket, verify that the Modify and Cancel order columns are absent. 7. Close the basket (you’ll return to the vendor’s basket list). Open the same closed basket and verify that the Cancel order column is absent, even though it should be present (because CancelOrdersInClosedBaskets = Allow). Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33484 [Bug 33484] Ability to remember user's selected table configuration and search filters for tables -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=40982 Slava Shishkin <slavashishkin@gmail.com> 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.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=40982 --- Comment #1 from Slava Shishkin <slavashishkin@gmail.com> --- Created attachment 187651 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=187651&action=edit Bug 40982: Basket: Fix cached visibility for Modify/Cancel order columns Testing notes (using KTD) Note: before starting, set CancelOrdersInClosedBaskets = Allow. /cgi-bin/koha/admin/preferences.pl?op=search&searchfield=CancelOrdersInClosedBaskets Add an order to a basket: 1. Acquisitions → Search vendors → Search 2. Click the vendor name 3. In the Baskets column, click the link 4. Select a basket (or create a new one) 5. Add at least one order 6. In the open basket, verify that the Modify and Cancel order columns are absent. 7. Close the basket (you’ll return to the vendor’s basket list). Open the same closed basket and verify that the Cancel order column is absent, even though it should be present (because CancelOrdersInClosedBaskets = Allow). 8. Apply the patch and repeat steps 1–7. 9. At step 6 (open basket), the Modify and Cancel order columns are displayed. 10. At step 7 (closed basket), the Cancel order column is visible according to the CancelOrdersInClosedBaskets setting. -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=40982 Jonathan Druart <jonathan.druart@gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- See Also| |https://bugs.koha-community | |.org/bugzilla3/show_bug.cgi | |?id=40753 CC| |jonathan.druart@gmail.com QA Contact|testopia@bugs.koha-communit |jonathan.druart@gmail.com |y.org | Severity|enhancement |normal --- Comment #2 from Jonathan Druart <jonathan.druart@gmail.com> --- Hum I thought we fixed this problem with bug 40753. I will have a look at your patch later. -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=40982 Jonathan Druart <jonathan.druart@gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Assignee|koha-bugs@lists.koha-commun |slavashishkin@gmail.com |ity.org | -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=40982 --- Comment #3 from Slava Shishkin <slavashishkin@gmail.com> --- (In reply to Jonathan Druart from comment #2)
Hum I thought we fixed this problem with bug 40753.
I will have a look at your patch later.
Bug 40753 didn’t cover this case. It didn’t touch acqui/basket.tt nor the last two TT-conditional columns of the Orders table. DataTables caches .visible in localStorage (DataTables_acqui_basket_orders) and reuses it across baskets; when switching open ↔ closed, the cached flags override current TT conditions, so Modify/Cancel order end up missing or shown incorrectly. This patch synchronizes only columns [21] and [22] in the cached state on load to match TT logic (active && !closedate and !closedate || CancelOrdersInClosedBaskets). Repro in KTD still fails with 40753 applied; after this patch, it’s consistent. -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=40982 --- Comment #4 from Jonathan Druart <jonathan.druart@gmail.com> --- (In reply to Slava Shishkin from comment #3)
(In reply to Jonathan Druart from comment #2)
Hum I thought we fixed this problem with bug 40753.
I will have a look at your patch later.
Bug 40753 didn’t cover this case. It didn’t touch acqui/basket.tt nor the last two TT-conditional columns of the Orders table.
Have a look at the patch, it is exactly the code it touches ;) https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=186239
DataTables caches .visible in localStorage (DataTables_acqui_basket_orders) and reuses it across baskets; when switching open ↔ closed, the cached flags override current TT conditions, so Modify/Cancel order end up missing or shown incorrectly.
This patch synchronizes only columns [21] and [22] in the cached state on load to match TT logic (active && !closedate and !closedate || CancelOrdersInClosedBaskets).
Yes, and IIRC it's exactly what bug 40753 tried to fix, or at least something similar. I have spotted a couple of problemd with the code there, I will attach something here. -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=40982 --- Comment #5 from Jonathan Druart <jonathan.druart@gmail.com> --- Created attachment 187711 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=187711&action=edit [ALTERNATIVE-PATCH] Bug 40982: (bug 40753 follow-up) Adjust conditions The IF/ELSE block contents have been reversed in the JS code. -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=40982 --- Comment #6 from Jonathan Druart <jonathan.druart@gmail.com> --- There is something else, I see what's going on. I will provide a fix later today. -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=40982 Jonathan Druart <jonathan.druart@gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Assignee|slavashishkin@gmail.com |jonathan.druart@gmail.com QA Contact|jonathan.druart@gmail.com | -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=40982 Jonathan Druart <jonathan.druart@gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- See Also|https://bugs.koha-community | |.org/bugzilla3/show_bug.cgi | |?id=40753 | Depends on| |40753 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=40753 [Bug 40753] DT's SaveState not working on the orders table -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=40982 Jonathan Druart <jonathan.druart@gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #187711|0 |1 is obsolete| | --- Comment #7 from Jonathan Druart <jonathan.druart@gmail.com> --- Created attachment 187712 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=187712&action=edit Bug 40982: Allow to force visibility when needed The _dt_visibility function is only called when the state is initialized. Here we want to force the visibility of some columns even if the state exists already. The idea of this patch is to add a new 'force_visibility' flag to the column when the visibility needs to be respected regardless what is in the state. That should only be used when column cannot be toggled. -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=40982 --- Comment #8 from Jonathan Druart <jonathan.druart@gmail.com> --- Hi Slava, I think I've managed to fix the problem where it needs to be fixed: in datatables.js I am not very happy with the code, we are looping over the column list too much, but it seems to work... We will need Cypress tests to make it ready for inclusion but I would like to know if you are happy with how those patches behave. -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=40982 --- Comment #9 from Slava Shishkin <slavashishkin@gmail.com> --- Hi Jonathan, Just tested everything. It works exactly as expected. Great work! You were ahead with the logic fix; we had a second patch ready on our side too :) One small thing. Do we really need cancel_column.cannot_be_toggled = 1; and modify_column.cannot_be_toggled = 1; These two columns already have those flags by default and can’t be toggled anyway. However, everything works perfectly. Thank you! -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=40982 Jonathan Druart <jonathan.druart@gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #187651|0 |1 is obsolete| | -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=40982 Jonathan Druart <jonathan.druart@gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #187711|1 |0 is obsolete| | -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=40982 --- Comment #10 from Jonathan Druart <jonathan.druart@gmail.com> --- Created attachment 187724 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=187724&action=edit Bug 40982: Remove cannot_be_toggled for modify and cancel It's already set in the global config. However it does make sense to have it for supplier_report: you don't want to show it in the dropdown if the pref is off -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=40982 --- Comment #11 from Jonathan Druart <jonathan.druart@gmail.com> --- (In reply to Slava Shishkin from comment #9)
One small thing. Do we really need
cancel_column.cannot_be_toggled = 1; and modify_column.cannot_be_toggled = 1;
These two columns already have those flags by default and can’t be toggled anyway.
Yes, might not be needed. I've removed them. -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=40982 Jonathan Druart <jonathan.druart@gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #187711|[ALTERNATIVE-PATCH] Bug |Bug 40982: (bug 40753 description|40982: (bug 40753 |follow-up) Adjust |follow-up) Adjust |conditions |conditions | -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=40982 --- Comment #12 from Jonathan Druart <jonathan.druart@gmail.com> --- Created attachment 187726 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=187726&action=edit Bug 40982: Do not raise Error when bKohaColumnsUseNames is not set Return early if there is no visibility to force -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=40982 --- Comment #13 from Slava Shishkin <slavashishkin@gmail.com> --- I checked the patch with the latest changes again. The table displays correctly in all cases, whether the basket is open or closed. I also even manipulated (deleted it several times) with DataTables_acqui_basket_orders from local storage. No problems were found. Thanks! -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=40982 --- Comment #14 from Jonathan Druart <jonathan.druart@gmail.com> --- (In reply to Slava Shishkin from comment #13)
I checked the patch with the latest changes again. The table displays correctly in all cases, whether the basket is open or closed. I also even manipulated (deleted it several times) with DataTables_acqui_basket_orders from local storage. No problems were found. Thanks!
Great, please signoff! :) I will write some Cypress tests next week. -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=40982 Slava Shishkin <slavashishkin@gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Needs Signoff |Signed Off -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=40982 Slava Shishkin <slavashishkin@gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #187711|0 |1 is obsolete| | Attachment #187712|0 |1 is obsolete| | Attachment #187724|0 |1 is obsolete| | Attachment #187726|0 |1 is obsolete| | --- Comment #15 from Slava Shishkin <slavashishkin@gmail.com> --- Created attachment 187735 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=187735&action=edit Bug 40982: (bug 40753 follow-up) Adjust conditions The IF/ELSE block contents have been reversed in the JS code. Signed-off-by: Slava Shishkin <slavashishkin@gmail.com> -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=40982 --- Comment #16 from Slava Shishkin <slavashishkin@gmail.com> --- Created attachment 187736 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=187736&action=edit Bug 40982: Allow to force visibility when needed The _dt_visibility function is only called when the state is initialized. Here we want to force the visibility of some columns even if the state exists already. The idea of this patch is to add a new 'force_visibility' flag to the column when the visibility needs to be respected regardless what is in the state. That should only be used when column cannot be toggled. Signed-off-by: Slava Shishkin <slavashishkin@gmail.com> -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=40982 --- Comment #17 from Slava Shishkin <slavashishkin@gmail.com> --- Created attachment 187737 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=187737&action=edit Bug 40982: Remove cannot_be_toggled for modify and cancel It's already set in the global config. However it does make sense to have it for supplier_report: you don't want to show it in the dropdown if the pref is off Signed-off-by: Slava Shishkin <slavashishkin@gmail.com> -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=40982 --- Comment #18 from Slava Shishkin <slavashishkin@gmail.com> --- Created attachment 187738 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=187738&action=edit Bug 40982: Do not raise Error when bKohaColumnsUseNames is not set Return early if there is no visibility to force Signed-off-by: Slava Shishkin <slavashishkin@gmail.com> -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=40982 --- Comment #19 from Jonathan Druart <jonathan.druart@gmail.com> --- Created attachment 187833 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=187833&action=edit Bug 40982: Enable bKohaColumnsUseNames for libraries We want to add Cypress test for the force_visibility flag. We do not test the basket table: the acq module will be rewritten -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=40982 --- Comment #20 from Jonathan Druart <jonathan.druart@gmail.com> --- Created attachment 187834 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=187834&action=edit Bug 40982: Add Cypress tests -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=40982 Jonathan Druart <jonathan.druart@gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #187834|0 |1 is obsolete| | --- Comment #21 from Jonathan Druart <jonathan.druart@gmail.com> --- Created attachment 187835 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=187835&action=edit Bug 40982: Add Cypress tests -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=40982 Jonathan Druart <jonathan.druart@gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Blocks| |30633 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30633 [Bug 30633] Move OPACHoldingsDefaultSortField to table settings configuration -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=40982 Martin Renvoize (ashimema) <martin.renvoize@openfifth.co.uk> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #187735|0 |1 is obsolete| | --- Comment #22 from Martin Renvoize (ashimema) <martin.renvoize@openfifth.co.uk> --- Created attachment 187986 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=187986&action=edit Bug 40982: (bug 40753 follow-up) Adjust conditions The IF/ELSE block contents have been reversed in the JS code. Signed-off-by: Slava Shishkin <slavashishkin@gmail.com> Signed-off-by: Martin Renvoize <martin.renvoize@openfifth.co.uk> -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=40982 Martin Renvoize (ashimema) <martin.renvoize@openfifth.co.uk> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #187736|0 |1 is obsolete| | --- Comment #23 from Martin Renvoize (ashimema) <martin.renvoize@openfifth.co.uk> --- Created attachment 187987 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=187987&action=edit Bug 40982: Allow to force visibility when needed The _dt_visibility function is only called when the state is initialized. Here we want to force the visibility of some columns even if the state exists already. The idea of this patch is to add a new 'force_visibility' flag to the column when the visibility needs to be respected regardless what is in the state. That should only be used when column cannot be toggled. Signed-off-by: Slava Shishkin <slavashishkin@gmail.com> Signed-off-by: Martin Renvoize <martin.renvoize@openfifth.co.uk> -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=40982 Martin Renvoize (ashimema) <martin.renvoize@openfifth.co.uk> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #187737|0 |1 is obsolete| | --- Comment #24 from Martin Renvoize (ashimema) <martin.renvoize@openfifth.co.uk> --- Created attachment 187988 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=187988&action=edit Bug 40982: Remove cannot_be_toggled for modify and cancel It's already set in the global config. However it does make sense to have it for supplier_report: you don't want to show it in the dropdown if the pref is off Signed-off-by: Slava Shishkin <slavashishkin@gmail.com> Signed-off-by: Martin Renvoize <martin.renvoize@openfifth.co.uk> -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=40982 Martin Renvoize (ashimema) <martin.renvoize@openfifth.co.uk> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #187738|0 |1 is obsolete| | --- Comment #25 from Martin Renvoize (ashimema) <martin.renvoize@openfifth.co.uk> --- Created attachment 187989 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=187989&action=edit Bug 40982: Do not raise Error when bKohaColumnsUseNames is not set Return early if there is no visibility to force Signed-off-by: Slava Shishkin <slavashishkin@gmail.com> Signed-off-by: Martin Renvoize <martin.renvoize@openfifth.co.uk> -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=40982 Martin Renvoize (ashimema) <martin.renvoize@openfifth.co.uk> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #187833|0 |1 is obsolete| | --- Comment #26 from Martin Renvoize (ashimema) <martin.renvoize@openfifth.co.uk> --- Created attachment 187990 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=187990&action=edit Bug 40982: Enable bKohaColumnsUseNames for libraries We want to add Cypress test for the force_visibility flag. We do not test the basket table: the acq module will be rewritten Signed-off-by: Martin Renvoize <martin.renvoize@openfifth.co.uk> -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=40982 Martin Renvoize (ashimema) <martin.renvoize@openfifth.co.uk> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #187835|0 |1 is obsolete| | --- Comment #27 from Martin Renvoize (ashimema) <martin.renvoize@openfifth.co.uk> --- Created attachment 187991 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=187991&action=edit Bug 40982: Add Cypress tests Signed-off-by: Martin Renvoize <martin.renvoize@openfifth.co.uk> -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=40982 Martin Renvoize (ashimema) <martin.renvoize@openfifth.co.uk> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |martin.renvoize@openfifth.c | |o.uk QA Contact| |martin.renvoize@openfifth.c | |o.uk Status|Signed Off |Passed QA -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=40982 Lucas Gass (lukeg) <lucas@bywatersolutions.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Version(s)| |25.11.00 released in| | Status|Passed QA |Pushed to main -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=40982 --- Comment #28 from Lucas Gass (lukeg) <lucas@bywatersolutions.com> --- Nice work everyone! Pushed to main for 25.11 -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=40982 Jonathan Druart <jonathan.druart@gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Blocks|30633 | Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30633 [Bug 30633] Move OPACHoldingsDefaultSortField to table settings configuration -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=40982 Bug 40982 depends on bug 40753, which changed state. Bug 40753 Summary: DT's SaveState not working on the orders table https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=40753 What |Removed |Added ---------------------------------------------------------------------------- Status|Needs documenting |RESOLVED Resolution|--- |FIXED -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=40982 Paul Derscheid <paul.derscheid@lmscloud.de> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Pushed to main |Pushed to stable Version(s)|25.11.00 |25.11.00,25.05.05 released in| | -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=40982 --- Comment #29 from Paul Derscheid <paul.derscheid@lmscloud.de> --- Nice work everyone! Pushed to 25.05.x -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=40982 Michelle Spinney <mspinney@clamsnet.org> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |mspinney@clamsnet.org -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=40982 Kristi Krueger <kkrueger@cuyahogalibrary.org> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |kkrueger@cuyahogalibrary.or | |g -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=40982 Fridolin Somers <fridolin.somers@biblibre.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |fridolin.somers@biblibre.co | |m Status|Pushed to stable |Needs documenting --- Comment #30 from Fridolin Somers <fridolin.somers@biblibre.com> --- Depends on Bug 40753 not in 24.11.x -- You are receiving this mail because: You are watching all bug changes.
participants (1)
-
bugzilla-daemon@bugs.koha-community.org