[Bug 38946] New: Add serial enumeration to inventory table
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=38946 Bug ID: 38946 Summary: Add serial enumeration to inventory table Change sponsored?: --- Product: Koha Version: 24.05 Hardware: All OS: All Status: NEW Severity: enhancement Priority: P5 - low Component: Staff interface Assignee: koha-bugs@lists.koha-community.org Reporter: bdaeuber@cityoffargo.com QA Contact: testopia@bugs.koha-community.org CC: gmcharlt@gmail.com It would be helpful to add serial enumeration to the outputted inventory table. If you are inventorying a series of items with the same title, but different issue number or years, there's currently no easy way of distinguishing them in the output. -- 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=38946 --- Comment #1 from Katrin Fischer <katrin.fischer@bsz-bw.de> --- +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=38946 David Cook <dcook@prosentient.com.au> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |dcook@prosentient.com.au --- Comment #2 from David Cook <dcook@prosentient.com.au> --- I've had a library asking for this as well. The table is already pretty crowded, but it does look doable. -- 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=38946 David Cook <dcook@prosentient.com.au> 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=38946 --- Comment #3 from David Cook <dcook@prosentient.com.au> --- Created attachment 185786 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=185786&action=edit Bug 38946: Add enumchron to inventory table This patch adds "Serial enumeration / chronology" to the inventory table output. Test plan: 0. Apply the patch 1. Go to http://localhost:8081/cgi-bin/koha/tools/inventory.pl 2. Click "Submit" 3. Note that a "Serial enumeration / chronology" column appears in the results 4. For the top result, go into the bib record and then add a "Serial enumeration / chronology" to the item in question 5. Re-run the inventory 6. Note that the "Serial enumeration / chronology" now has a value in iy 7. Click "Columns" and hide the column 8. Try again using the CSV export and note that the new column appears again -- 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=38946 David Cook <dcook@prosentient.com.au> changed: What |Removed |Added ---------------------------------------------------------------------------- See Also| |https://bugs.koha-community | |.org/bugzilla3/show_bug.cgi | |?id=40702 -- 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=38946 David Cook <dcook@prosentient.com.au> changed: What |Removed |Added ---------------------------------------------------------------------------- Assignee|koha-bugs@lists.koha-commun |dcook@prosentient.com.au |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=38946 Lin Wei <lin-wei.li@inLibro.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=38946 Lin Wei <lin-wei.li@inLibro.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #185786|0 |1 is obsolete| | --- Comment #4 from Lin Wei <lin-wei.li@inLibro.com> --- Created attachment 186160 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=186160&action=edit Bug 38946: Add enumchron to inventory table This patch adds "Serial enumeration / chronology" to the inventory table output. Test plan: 0. Apply the patch 1. Go to http://localhost:8081/cgi-bin/koha/tools/inventory.pl 2. Click "Submit" 3. Note that a "Serial enumeration / chronology" column appears in the results 4. For the top result, go into the bib record and then add a "Serial enumeration / chronology" to the item in question 5. Re-run the inventory 6. Note that the "Serial enumeration / chronology" now has a value in iy 7. Click "Columns" and hide the column 8. Try again using the CSV export and note that the new column appears again Signed-off-by: Ludovic Julien <ludovic.julien@inLibro.com> -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=38946 Ludovic <ludovic.julien@inLibro.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |ludovic.julien@inLibro.com -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=38946 Lucas Gass (lukeg) <lucas@bywatersolutions.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |lucas@bywatersolutions.com Status|Signed Off |Failed QA --- Comment #5 from Lucas Gass (lukeg) <lucas@bywatersolutions.com> --- This now sorts by default on the serial enumeration column: inventorydt = $("#inventoryt").kohaTable({ "pagingType": 'full_numbers', "bKohaColumnsUseNames": true, [% IF uploadedbarcodesflag %] // sort on callnumber "order": [[ 2, "asc" ]], [% ELSE %] // first column contains checkboxes "columnDefs": [ { "orderable": false, "searchable": false, "targets": [ 0 ] } ], // 3rd column is callnumber "order": [[ 2, "asc" ]], [% END %] -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=38946 --- Comment #6 from David Cook <dcook@prosentient.com.au> --- (In reply to Lucas Gass (lukeg) from comment #5)
This now sorts by default on the serial enumeration column:
inventorydt = $("#inventoryt").kohaTable({ "pagingType": 'full_numbers', "bKohaColumnsUseNames": true, [% IF uploadedbarcodesflag %] // sort on callnumber "order": [[ 2, "asc" ]], [% ELSE %] // first column contains checkboxes "columnDefs": [ { "orderable": false, "searchable": false, "targets": [ 0 ] } ], // 3rd column is callnumber "order": [[ 2, "asc" ]], [% END %]
Could you provide a bit more information? For me, that doesn't appear to be true. It still sorts on callnumber, because callnumber is still the 3rd column with serial enumeration coming after it. I'll attach a screenshot. -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=38946 --- Comment #7 from David Cook <dcook@prosentient.com.au> --- Created attachment 188453 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=188453&action=edit Default sort of callnumber -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=38946 David Cook <dcook@prosentient.com.au> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Failed QA |Signed Off --- Comment #8 from David Cook <dcook@prosentient.com.au> --- Going to reset to "Signed Off" since it looks good to me, but happy for you to provide some more info to put it back to Failed QA. Maybe I'm looking on the wrong screen. I was just following the test plan and it looks good to me? -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=38946 Katrin Fischer <katrin.fischer@bsz-bw.de> changed: What |Removed |Added ---------------------------------------------------------------------------- QA Contact|testopia@bugs.koha-communit |katrin.fischer@bsz-bw.de |y.org | -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=38946 --- Comment #9 from Katrin Fischer <katrin.fischer@bsz-bw.de> --- Passes tests, can be hidden, will make it much easier to use the tool for some libraires. I like! -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=38946 Katrin Fischer <katrin.fischer@bsz-bw.de> 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=38946 Katrin Fischer <katrin.fischer@bsz-bw.de> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #186160|0 |1 is obsolete| | --- Comment #10 from Katrin Fischer <katrin.fischer@bsz-bw.de> --- Created attachment 193040 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=193040&action=edit Bug 38946: Add enumchron to inventory table This patch adds "Serial enumeration / chronology" to the inventory table output. Test plan: 0. Apply the patch 1. Go to http://localhost:8081/cgi-bin/koha/tools/inventory.pl 2. Click "Submit" 3. Note that a "Serial enumeration / chronology" column appears in the results 4. For the top result, go into the bib record and then add a "Serial enumeration / chronology" to the item in question 5. Re-run the inventory 6. Note that the "Serial enumeration / chronology" now has a value in iy 7. Click "Columns" and hide the column 8. Try again using the CSV export and note that the new column appears again Signed-off-by: Ludovic Julien <ludovic.julien@inLibro.com> Signed-off-by: Katrin Fischer <katrin.fischer@bsz-bw.de> -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=38946 Lucas Gass (lukeg) <lucas@bywatersolutions.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Blocks| |41126 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=41126 [Bug 41126] Move shelving location into a separate column in inventory -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=38946 Lucas Gass (lukeg) <lucas@bywatersolutions.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Passed QA |Pushed to main Version(s)| |26.05.00 released in| | -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=38946 --- Comment #11 from Lucas Gass (lukeg) <lucas@bywatersolutions.com> --- Nice work everyone! Pushed to main for 26.05 -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=38946 Lucas Gass (lukeg) <lucas@bywatersolutions.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Keywords| |release-notes-needed -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=38946 --- Comment #12 from Lucas Gass (lukeg) <lucas@bywatersolutions.com> --- David, a new column warrants release notes in my opinion. Do you mind adding them? -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=38946 --- Comment #13 from David Cook <dcook@prosentient.com.au> --- (In reply to Lucas Gass (lukeg) from comment #12)
David, a new column warrants release notes in my opinion. Do you mind adding them?
Sure thing! -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=38946 David Cook <dcook@prosentient.com.au> changed: What |Removed |Added ---------------------------------------------------------------------------- Text to go in the| |This change adds a "Serial release notes| |enumeration / chronology" | |column into the inventory | |results. This is | |particularly useful when | |doing inventory/stocktake | |with serials which share | |the same call number but | |have different volume | |numbers. This new column | |can be hidden by clicking | |"Columns" and hiding it or | |going into table settings. -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=38946 Jacob O'Mara <jacob.omara@openfifth.co.uk> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |jacob.omara@openfifth.co.uk Status|Pushed to main |Needs documenting --- Comment #14 from Jacob O'Mara <jacob.omara@openfifth.co.uk> --- Enhancement, not backporting. Scream at me if you feel strongly it should be backported. -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=38946 Lisette Scheer <lisette@bywatersolutions.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |lisette@bywatersolutions.co | |m Keywords|release-notes-needed | -- You are receiving this mail because: You are watching all bug changes.
participants (1)
-
bugzilla-daemon@bugs.koha-community.org