[Bug 41124] New: Add search options for moving hold to new biblio record
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=41124 Bug ID: 41124 Summary: Add search options for moving hold to new biblio record Initiative type: --- Sponsorship --- status: Product: Koha Version: Main Hardware: All OS: All Status: NEW Severity: enhancement Priority: P5 - low Component: Hold requests Assignee: koha-bugs@lists.koha-community.org Reporter: andrew@bywatersolutions.com QA Contact: testopia@bugs.koha-community.org CC: gmcharlt@gmail.com, lisette@bywatersolutions.com, tomascohen@gmail.com Depends on: 31698 Currently moving a hold to a new biblio record requires the user to enter the biblionumber of the new record. It would be helpful if a search for the new target bib could be incorporated into the workflow to move the hold. Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31698 [Bug 31698] Add ability to move a hold to a new bibliographic record/item -- 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=41124 Bug 41124 depends on bug 31698, which changed state. Bug 31698 Summary: Add ability to move a hold to a new bibliographic record/item https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31698 What |Removed |Added ---------------------------------------------------------------------------- Status|Pushed to main |RESOLVED Resolution|--- |FIXED -- 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=41124 Bug 41124 depends on bug 31698, which changed state. Bug 31698 Summary: Add ability to move a hold to a new bibliographic record/item https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31698 What |Removed |Added ---------------------------------------------------------------------------- Status|RESOLVED |Needs documenting Resolution|FIXED |--- -- 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=41124 Andrew Fuerste-Henry <andrew@bywatersolutions.com> changed: What |Removed |Added ---------------------------------------------------------------------------- See Also| |https://bugs.koha-community | |.org/bugzilla3/show_bug.cgi | |?id=41727 -- 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=41124 Michael Grgurev <mike.grgurev@mainlib.org> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |mike.grgurev@mainlib.org -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=41124 mteal@greenvillelibrary.org changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |mteal@greenvillelibrary.org -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=41124 Chip Halvorsen <Chip.Halvorsen@WestlakeLibrary.org> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |Chip.Halvorsen@WestlakeLibr | |ary.org -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=41124 Kendall Purser <bcldteam.kendall@gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |bcldteam.kendall@gmail.com URL| |https://github.com/orwek/Ko | |ha-Bits/blob/main/IntranetU | |serJS.js#L92 --- Comment #1 from Kendall Purser <bcldteam.kendall@gmail.com> --- I wrote a JavaScript workaround for this. It allows you to scan an item barcode then does an api lookup to get the biblio number. It then inserts the biblio number in place of the item barcode. It is currently on a 1 second loop. // Move hold modal, item barcode lookup // Written Mar 2026 for Koha 25.11 $(document).ready(function(){ if (location.href.indexOf("request.pl") != -1) { let hold_status = 1; let hold_item_id = 0; let hold_move = () => { if (hold_item_id == 0) { let tmp_id = $("#biblio_id").val(); if (tmp_id != "") { hold_item_id = tmp_id; hold_status = 0; } } if (hold_status == 0) { // fetch biblio id on change let tmp_url = "/api/v1/items?external_id=" + hold_item_id; fetch(tmp_url, {method: "GET"}) .then (res => { if (!res.ok) { throw new Error ("hold_fetch Not OK!"); } return res.json(); }) .then (data => { //put bib_id in other field $("#biblio_id").val(data[0].biblio_id); }) .catch(error => console.error('Error hold_fetch: ', error)); } } // Run the above code in a loop on the given page setInterval(hold_move, 1000); } }); -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes.
participants (1)
-
bugzilla-daemon@bugs.koha-community.org