[Bug 32477] New: Batch Item Modification Columns
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=32477 Bug ID: 32477 Summary: Batch Item Modification Columns Change sponsored?: --- Product: Koha Version: master Hardware: All OS: All Status: NEW Severity: enhancement Priority: P5 - low Component: Staff interface Assignee: koha-bugs@lists.koha-community.org Reporter: Laura.escamilla@bywatersolutions.com QA Contact: testopia@bugs.koha-community.org CC: gmcharlt@gmail.com 22.05 has created issues with the columns in Batch item modification. There are 2 different issues that we have observed. 1- Unselecting "Source of classification or shelving scheme" removes that column on the current page. However, going back to the batch item modification tool to run a new batch makes the "holds" column disappear. 2- Unselecting some columns on the current screen hides that column. However, when we run a new batch item modification, the column shows up again while the box is still unchecked. Checking the box now behaves as a hide instead of show. Both problems get resolved when "show all" is used. But that means we have to constantly revert back to show all before running any further batch item modifications or the columns will be wrong. -- 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=32477 Katrin Fischer <katrin.fischer@bsz-bw.de> changed: What |Removed |Added ---------------------------------------------------------------------------- Summary|Batch Item Modification |Hiding batch item |Columns |modification columns isn't | |remembered correctly Severity|enhancement |normal CC| |oleonard@myacpl.org --- Comment #1 from Katrin Fischer <katrin.fischer@bsz-bw.de> --- I can confirm this. The item I used was 39999000011135 from the sample data. It doesn't have source of acquisition set, but hiding the next column after holds, in this case collection, also made the bug visible. -- 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=32477 Sarah Cornell <sbcornell@cityofportsmouth.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |sbcornell@cityofportsmouth. | |com -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=32477 Noémie Labine <noemie.labine@collecto.ca> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |noemie.labine@collecto.ca --- Comment #2 from Noémie Labine <noemie.labine@collecto.ca> --- +1 -- 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=32477 Anni Rajala <anni.rajala@turku.fi> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |anni.rajala@turku.fi -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=32477 Emmi Takkinen <emmi.takkinen@koha-suomi.fi> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |emmi.takkinen@koha-suomi.fi --- Comment #3 from Emmi Takkinen <emmi.takkinen@koha-suomi.fi> --- Apparently this happens because columns still have attribute "checked=checked" even if class "selected" is removed. Then we do this: if ($(this).prop("checked")) { showColumn(num); } else { hideColumn(num); } So solution could simply be that we need to set checked attributed as false, not just remove class "selected". -- 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=32477 --- Comment #4 from Emmi Takkinen <emmi.takkinen@koha-suomi.fi> --- (In reply to Emmi Takkinen from comment #3)
Apparently this happens because columns still have attribute "checked=checked" even if class "selected" is removed. Then we do this:
if ($(this).prop("checked")) { showColumn(num); } else { hideColumn(num); }
So solution could simply be that we need to set checked attributed as false, not just remove class "selected".
Hmm, I should have mentioned here that this is just part of problem. Another one is that function "hideColumns" hides wrong columns when tool is launched again. Which is weird, code looks OK to me. -- 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=32477 Emmi Takkinen <emmi.takkinen@koha-suomi.fi> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |ASSIGNED Assignee|koha-bugs@lists.koha-commun |emmi.takkinen@koha-suomi.fi |ity.org | --- Comment #5 from Emmi Takkinen <emmi.takkinen@koha-suomi.fi> --- We launch function "hideColumns" too early. When page loads, dataTable still has "hidden" column with class "sorting_1" in it. That's why number of columns doesn't match to the columns which are actually present in the table and "hideColumns" hides column before next to the column we actually want to hide. Moving function after removing that extra column seems to solve the problem. -- 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=32477 --- Comment #6 from Emmi Takkinen <emmi.takkinen@koha-suomi.fi> --- Created attachment 159206 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=159206&action=edit Bug 32477: Launch function hideColumns after changing datatables settings Hiding columns in batch item modification breaks if page is loaded again. If one hides e.g. column "Source of classification or shelving scheme" and then loads the page column "Holds" disappears. Also behaviour of checbox changes for "Source of classification..." column. This happens because we launch function "hideColumns" before changing datatables settings and "hidden" column with class "sorting_1" is still present. To test: 1. Find items to modify and modify them with batch item modification tool. 2. In modification page, hide column "Source of classification or shelving scheme". Confirm correct column is hidden. 3. Reload the page or modify items again. => Note that column "Holds" is now hidden and checking checkbox for column "Source of classification..." behaves incorrectly (unchecked checkbox shows column, checked hides it) 4. Apply this patch. 5. Repeat steps 1, 2 and 3. => Confirm correct column is now hidden when page is loaded again and checkbox works correctly. Sponsored-by: Koha-Suomi Oy -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=32477 Emmi Takkinen <emmi.takkinen@koha-suomi.fi> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|ASSIGNED |Needs Signoff -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=32477 David Nind <david@davidnind.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=32477 David Nind <david@davidnind.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #159206|0 |1 is obsolete| | --- Comment #7 from David Nind <david@davidnind.com> --- Created attachment 159249 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=159249&action=edit Bug 32477: Launch function hideColumns after changing datatables settings Hiding columns in batch item modification breaks if page is loaded again. If one hides e.g. column "Source of classification or shelving scheme" and then loads the page column "Holds" disappears. Also behaviour of checbox changes for "Source of classification..." column. This happens because we launch function "hideColumns" before changing datatables settings and "hidden" column with class "sorting_1" is still present. To test: 1. Find items to modify and modify them with batch item modification tool. 2. In modification page, hide column "Source of classification or shelving scheme". Confirm correct column is hidden. 3. Reload the page or modify items again. => Note that column "Holds" is now hidden and checking checkbox for column "Source of classification..." behaves incorrectly (unchecked checkbox shows column, checked hides it) 4. Apply this patch. 5. Repeat steps 1, 2 and 3. => Confirm correct column is now hidden when page is loaded again and checkbox works correctly. Sponsored-by: Koha-Suomi Oy Signed-off-by: David Nind <david@davidnind.com> -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=32477 David Nind <david@davidnind.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |david@davidnind.com Text to go in the| |This fixes showing and release notes| |hiding columns when batch | |item editing (Cataloging > | |Batch editing > Batch item | |modification). When using | |the show/hide column | |options, the correct | |columns and updating the | |show/hide selections were | |not correctly displayed, | |including when the page was | |refreshed (for example: | |selecting the Collection | |column hid the holds column | |instead, and the shown/hide | |option for Collection was | |not selected). --- Comment #8 from David Nind <david@davidnind.com> --- Testing notes (using KTD) ========================= I got a bit lost trying to follow the test plan using master: 1. Staff interface home > Cataloging > Batch editing > Batch item modification 2. Barcodes used: 39999000006094 39999000006117 39999000011418 39999000005134 3. Columns that you can show or hide: Collection, Home library, Current library, Shelvng location, Date acquired, Barcode, Date last seen, Price effective from, Koha item type 4. Columns shown in the table listing items to modify: Tick box column, Title, Holds, Collection, Home library, Current library, Shelving location, Date acquired, Barcode, Date last seen, Price effective from, Koha item type 4. Table options: Export (no options to configure table columns) 5. I don't see options to show or hide "Source of classification or shelving scheme", or a way to choose what columns are available to show/hide (I couldn't see anything under Administration > Other parameters > Table settings, or a system preference). 6. Maybe there have been some changes between 22.05 and master 8-) Having said that, the behavour being fixed can be replicated using any of the columns actually displayed. I tested using the collection column (as per Katrin's comment#1 : 1. Show/hide columns: untick Collection 2. Refresh the page 3. Hold column is hidden, Collection column is shown (even though not ticked) 4. Tick Collection, refresh the page, Collection column is not displayed even though Collection is ticked. 5. Apply the patch 6. Check that the correct columns are displayed, and Show/hide options correctly match columns displayed, by: 6.1 Hiding a column and refreshing the page 6.2 Hiding multiple columns and refreshing the page 6.3 Selecting one of the hidden columns to display and refreshing the page 6.4 Any combination of 6.1-6.3 -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=32477 Emmi Takkinen <emmi.takkinen@koha-suomi.fi> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #159249|0 |1 is obsolete| | --- Comment #9 from Emmi Takkinen <emmi.takkinen@koha-suomi.fi> --- Created attachment 159258 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=159258&action=edit Bug 32477: Launch function hideColumns after changing datatables settings Hiding columns in batch item modification breaks if page is loaded again. If one hides e.g. column "Collection" and then loads the page column "Holds" disappears. Also behaviour of checbox changes for "Collection" column. This happens because we launch function "hideColumns" before changing datatables settings and "hidden" column with class "sorting_1" is still present. To test: 1. Find items to modify and modify them with batch item modification tool. 2. In modification page, hide column "Collection". Confirm correct column is hidden. 3. Reload the page or modify items again. => Note that column "Holds" is now hidden and checking checkbox for column "Collection" behaves incorrectly (unchecked checkbox shows column, checked hides it) 4. Apply this patch. 5. Repeat steps 1, 2 and 3. => Confirm correct column is now hidden when page is loaded again and checkbox works correctly. Sponsored-by: Koha-Suomi Oy Signed-off-by: David Nind <david@davidnind.com> -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=32477 --- Comment #10 from Emmi Takkinen <emmi.takkinen@koha-suomi.fi> --- Updated test plan based on Davids comment. -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=32477 --- Comment #11 from Emmi Takkinen <emmi.takkinen@koha-suomi.fi> --- There seems to be a minor problem with these. If one hides all columns and then reloads the page or launches tool again, "Holds" column isn't displayed and "Itemtype" column is. Also "Itemtype" columns checkbox is checked and works as it should. -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=32477 Victor Grousset/tuxayo <victor@tuxayo.net> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |victor@tuxayo.net --- Comment #12 from Victor Grousset/tuxayo <victor@tuxayo.net> --- So, still needs work? -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=32477 Emmi Takkinen <emmi.takkinen@koha-suomi.fi> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Signed Off |ASSIGNED --- Comment #13 from Emmi Takkinen <emmi.takkinen@koha-suomi.fi> --- (In reply to Victor Grousset/tuxayo from comment #12)
So, still needs work?
A little yeah. Setting this back to assigned. -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=32477 --- Comment #14 from Emmi Takkinen <emmi.takkinen@koha-suomi.fi> --- (In reply to Emmi Takkinen from comment #11)
There seems to be a minor problem with these. If one hides all columns and then reloads the page or launches tool again, "Holds" column isn't displayed and "Itemtype" column is. Also "Itemtype" columns checkbox is checked and works as it should.
Problem is that we toggle columns instead of hiding them. Instead of doing this inside "hideColumns":
$("#itemst td:nth-child(" + valCookie[i] + "),#itemst th:nth-child(" + valCookie[i] + ")").toggle(); we could to this:
$("#itemst td:nth-child(" + valCookie[i] + "),#itemst th:nth-child(" + valCookie[i] + ")").nextAll().hide(); Or we could use this outside of for loop:
$("#itemst td:nth-child(" + nb_cols + "),#itemst th:nth-child(" + nb_cols + ")").nextAll().hide(); I'm a bit unsure how to fix checkboxes. First we set number of columns inside a cookie as list that starts with value 3 and ends to the value 19. With method "guess_nb_colums" we receive value 3 and decrease this value from values received from cookie that list. So we end up with values from 0 to 16 which we use to determine which checkboxes we hide. However, "Itemtype" column has id "checkbox17" which is out of scope.
My guess is that "guess_nb_columns" returns a wrong value when first column contains checkbox, but I don't now if changing them has some unwanted effect to task queue jobs. Another option is to add 1 to variable index but that's a bit ugly solution. -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=32477 --- Comment #15 from Emmi Takkinen <emmi.takkinen@koha-suomi.fi> --- Hmm, it seems that the actual problem is how the variable "allColumns" is build. It doesn't take into account that there are more than two columns to skip. -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=32477 --- Comment #16 from Emmi Takkinen <emmi.takkinen@koha-suomi.fi> --- Created attachment 160230 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=160230&action=edit Bug 32477: Fix hiding all columns in item batch mod tools If one hides all columns in batch item modification tool and then reloads the page or launches tool again, "Holds" column isn't displayed and "Itemtype" column is. Also "Itemtype" columns checkbox remains checked. This happens because "Itemtype" columns id is out of scope of list of column numbers set in cookies. This patch adds 3 to number of columns in variable "allColums" to take account all 3 columns we don't want to hide. To test: 1. Find items to modify and modify them with batch item modification tool. 2. Use "Hide all columns" checkbox to hide all columns. 3. Confirm all columns expect checkbox, "Title" and "Holds" columns are hidden correctly. 4. Reload the page. => Note that "Holds" column is now hidden and "Itemtype" column is displayed. Also "Itemtype" checkbox is checked. 5. Apply this patch. 6. Repeat steps 1 to 4. => "Holds" column should now be displayed and "Itemtype" hidden. None of the checkbox should be checked. Sponsored-by: Koha-Suomi Oy -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=32477 Emmi Takkinen <emmi.takkinen@koha-suomi.fi> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|ASSIGNED |Needs Signoff -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=32477 David Nind <david@davidnind.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=32477 David Nind <david@davidnind.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #159258|0 |1 is obsolete| | --- Comment #17 from David Nind <david@davidnind.com> --- Created attachment 160293 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=160293&action=edit Bug 32477: Launch function hideColumns after changing datatables settings Hiding columns in batch item modification breaks if page is loaded again. If one hides e.g. column "Collection" and then loads the page column "Holds" disappears. Also behaviour of checbox changes for "Collection" column. This happens because we launch function "hideColumns" before changing datatables settings and "hidden" column with class "sorting_1" is still present. To test: 1. Find items to modify and modify them with batch item modification tool. 2. In modification page, hide column "Collection". Confirm correct column is hidden. 3. Reload the page or modify items again. => Note that column "Holds" is now hidden and checking checkbox for column "Collection" behaves incorrectly (unchecked checkbox shows column, checked hides it) 4. Apply this patch. 5. Repeat steps 1, 2 and 3. => Confirm correct column is now hidden when page is loaded again and checkbox works correctly. Sponsored-by: Koha-Suomi Oy Signed-off-by: David Nind <david@davidnind.com> -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=32477 David Nind <david@davidnind.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #160230|0 |1 is obsolete| | --- Comment #18 from David Nind <david@davidnind.com> --- Created attachment 160294 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=160294&action=edit Bug 32477: Fix hiding all columns in item batch mod tools If one hides all columns in batch item modification tool and then reloads the page or launches tool again, "Holds" column isn't displayed and "Itemtype" column is. Also "Itemtype" columns checkbox remains checked. This happens because "Itemtype" columns id is out of scope of list of column numbers set in cookies. This patch adds 3 to number of columns in variable "allColums" to take account all 3 columns we don't want to hide. To test: 1. Find items to modify and modify them with batch item modification tool. 2. Use "Hide all columns" checkbox to hide all columns. 3. Confirm all columns expect checkbox, "Title" and "Holds" columns are hidden correctly. 4. Reload the page. => Note that "Holds" column is now hidden and "Itemtype" column is displayed. Also "Itemtype" checkbox is checked. 5. Apply this patch. 6. Repeat steps 1 to 4. => "Holds" column should now be displayed and "Itemtype" hidden. None of the checkbox should be checked. Sponsored-by: Koha-Suomi Oy Signed-off-by: David Nind <david@davidnind.com> -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=32477 Jonathan Druart <jonathan.druart+koha@gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- 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=32477 Jonathan Druart <jonathan.druart+koha@gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #160293|0 |1 is obsolete| | Attachment #160294|0 |1 is obsolete| | --- Comment #19 from Jonathan Druart <jonathan.druart+koha@gmail.com> --- Created attachment 160904 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=160904&action=edit Bug 32477: Launch function hideColumns after changing datatables settings Hiding columns in batch item modification breaks if page is loaded again. If one hides e.g. column "Collection" and then loads the page column "Holds" disappears. Also behaviour of checbox changes for "Collection" column. This happens because we launch function "hideColumns" before changing datatables settings and "hidden" column with class "sorting_1" is still present. To test: 1. Find items to modify and modify them with batch item modification tool. 2. In modification page, hide column "Collection". Confirm correct column is hidden. 3. Reload the page or modify items again. => Note that column "Holds" is now hidden and checking checkbox for column "Collection" behaves incorrectly (unchecked checkbox shows column, checked hides it) 4. Apply this patch. 5. Repeat steps 1, 2 and 3. => Confirm correct column is now hidden when page is loaded again and checkbox works correctly. Sponsored-by: Koha-Suomi Oy Signed-off-by: David Nind <david@davidnind.com> Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org> -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=32477 --- Comment #20 from Jonathan Druart <jonathan.druart+koha@gmail.com> --- Created attachment 160905 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=160905&action=edit Bug 32477: Fix hiding all columns in item batch mod tools If one hides all columns in batch item modification tool and then reloads the page or launches tool again, "Holds" column isn't displayed and "Itemtype" column is. Also "Itemtype" columns checkbox remains checked. This happens because "Itemtype" columns id is out of scope of list of column numbers set in cookies. This patch adds 3 to number of columns in variable "allColums" to take account all 3 columns we don't want to hide. To test: 1. Find items to modify and modify them with batch item modification tool. 2. Use "Hide all columns" checkbox to hide all columns. 3. Confirm all columns expect checkbox, "Title" and "Holds" columns are hidden correctly. 4. Reload the page. => Note that "Holds" column is now hidden and "Itemtype" column is displayed. Also "Itemtype" checkbox is checked. 5. Apply this patch. 6. Repeat steps 1 to 4. => "Holds" column should now be displayed and "Itemtype" hidden. None of the checkbox should be checked. Sponsored-by: Koha-Suomi Oy Signed-off-by: David Nind <david@davidnind.com> Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org> -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=32477 Katrin Fischer <katrin.fischer@bsz-bw.de> 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.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=32477 --- Comment #21 from Katrin Fischer <katrin.fischer@bsz-bw.de> --- Pushed for 24.05! Well done everyone, thank you! -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=32477 Fridolin Somers <fridolin.somers@biblibre.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Version(s)|24.05.00 |24.05.00,23.11.02 released in| | CC| |fridolin.somers@biblibre.co | |m Status|Pushed to master |Pushed to stable --- Comment #22 from Fridolin Somers <fridolin.somers@biblibre.com> --- Pushed to 23.11.x for 23.11.02 -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=32477 Lucas Gass <lucas@bywatersolutions.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |lucas@bywatersolutions.com Version(s)|24.05.00,23.11.02 |24.05.00,23.11.02,23.05.09 released in| | Status|Pushed to stable |Pushed to oldstable --- Comment #23 from Lucas Gass <lucas@bywatersolutions.com> --- Backported to 23.05.x for upcoming 23.05.09. -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=32477 David Nind <david@davidnind.com> changed: What |Removed |Added ---------------------------------------------------------------------------- See Also| |https://bugs.koha-community | |.org/bugzilla3/show_bug.cgi | |?id=36129 -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=32477 Lauren Denny <lauren_denny@sil.org> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |lauren_denny@sil.org -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=32477 Nick Clemens (kidclamp) <nick@bywatersolutions.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Blocks| |39423 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=39423 [Bug 39423] Column checkboxes on item batch modification hide incorrect columns -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=32477 Wainui Witika-Park <wainuiwitikapark@catalyst.net.nz> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Pushed to oldstable |RESOLVED CC| |wainuiwitikapark@catalyst.n | |et.nz Resolution|--- |FIXED --- Comment #24 from Wainui Witika-Park <wainuiwitikapark@catalyst.net.nz> --- Not backporting to 22.11 -- You are receiving this mail because: You are watching all bug changes.
participants (1)
-
bugzilla-daemon@bugs.koha-community.org