[% l('View Holds') %]</a></li>
<li><a href dropdown-toggle ng-click="mark_hold_transfer_dest()">
[% l('Mark as Title Hold Transfer Destination') %]</a></li>
- <li><a href dropdown-toggle ng-click="transfer_holds_to_marked()">
- [% l('Transfer All Title Holds') %]</a></li>
</ul>
</div>
</div>
}
}
-function transfer_title_holds() {
- g.data.stash_retrieve();
- var target = g.data.marked_record_for_hold_transfer;
- if (!target) {
- var m = $("offlineStrings").getString('staff.cat.opac.title_for_hold_transfer.destination_needed.label');
- alert(m);
- return;
- }
- var robj = g.network.simple_request('TRANSFER_TITLE_HOLDS',[ ses(), target, [ docid ] ]);
- if (robj == 1) {
- var m = $("offlineStrings").getString('staff.cat.opac.title_for_hold_transfer.success.label');
- alert(m);
- } else {
- var m = $("offlineStrings").getString('staff.cat.opac.title_for_hold_transfer.failure.label');
- alert(m);
- }
- hold_browser_reset = true;
- if (g.view == 'hold_browser') { set_hold_browser(); };
-}
-
function delete_record() {
if (g.error.yns_alert(
document.getElementById('offlineStrings').getFormattedString('cat.opac.delete_record.confirm', [docid]),
<menuseparator/>
<menuitem label="&staff.cat.copy_browser.holdings_maintenance.cmd_add_volumes.label;" accesskey="&staff.cat.copy_browser.holdings_maintenance.cmd_add_volumes.accesskey;" id="add_volumes" oncommand="add_volumes();"/>
<menuitem label="&staff.cat.opac.mark_for_hold_transfer.label;" accesskey="&staff.cat.opac.mark_for_hold_transfer.accesskey;" id="mark_for_hold_transfer" oncommand="mark_for_hold_transfer();"/>
- <menuitem label="&staff.cat.opac.transfer_title_holds.label;" accesskey="&staff.cat.opac.transfer_title_holds.accesskey;" id="transfer_title_holds" oncommand="transfer_title_holds();"/>
<menuitem label="&staff.cat.opac.mark_for_multi_home.label;" accesskey="&staff.cat.opac.mark_for_multi_home.accesskey;" id="mark_for_multi_home" oncommand="mark_for_multi_home();"/>
<menuseparator/>
<menuitem label="&staff.cat.opac.bib_in_new_tab.label;" id="bib_in_new_tab" oncommand="bib_in_new_tab();"/>
--- /dev/null
+Removal of option to Transfer all title holds
+^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+Due to usability issues where the option could easily be clicked as
+users were trying to transfer selected holds, the option to _Transfer all
+title holds_ has been removed from the Actions menu available on the bib
+record. The option remains available in the Record Bucket interface. Staff can
+also perform the same action by viewing the holds on the bib record, selecting
+all rows, and then selecting _Transfer to Marked Title_ from the Actions
+for Selected Holds menu.