Bugzilla – Attachment 81131 Details for
Bug 21608
Arranging holds priority with dropdowns is faulty when there are waiting/intransit holds
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 21608: Disable dropdown for found holds - add button to revert
Bug-21608-Disable-dropdown-for-found-holds---add-b.patch (text/plain), 2.81 KB, created by
Nick Clemens (kidclamp)
on 2018-10-25 11:47:56 UTC
(
hide
)
Description:
Bug 21608: Disable dropdown for found holds - add button to revert
Filename:
MIME Type:
Creator:
Nick Clemens (kidclamp)
Created:
2018-10-25 11:47:56 UTC
Size:
2.81 KB
patch
obsolete
>From 9cb582f0457789801d1c6504a5c5518a07a984cc Mon Sep 17 00:00:00 2001 >From: Nick Clemens <nick@bywatersolutions.com> >Date: Thu, 25 Oct 2018 11:45:25 +0000 >Subject: [PATCH] Bug 21608: Disable dropdown for found holds - add button to > revert > >To test: >1 - Find a record with multiple items >2 - Place 4 holds (or more) >3 - Capture one ohld as waiting, one as in transit >4 - View the holds on the record - switch the last to priority one >5 - Waiting and transit statuses get confused >6 - Apply patch >7 - Observe dropdown is now disabled for waiting holds >8 - Confirm other holds operate as expected >9 - Confirm 'Revert found status' resets hold >--- > C4/Reserves.pm | 5 +++++ > koha-tmpl/intranet-tmpl/prog/en/includes/holds_table.inc | 4 ++-- > 2 files changed, 7 insertions(+), 2 deletions(-) > >diff --git a/C4/Reserves.pm b/C4/Reserves.pm >index 78e8f6a..bdf0e0a 100644 >--- a/C4/Reserves.pm >+++ b/C4/Reserves.pm >@@ -1425,6 +1425,11 @@ sub _FixPriority { > my $sth = $dbh->prepare($query); > $sth->execute( $reserve_id ); > } >+ elsif ( $hold && $hold->found() && $rank > 0 ) { >+ $hold->found(undef); >+ $hold->store(); >+ } >+ > my @priority; > > # get whats left >diff --git a/koha-tmpl/intranet-tmpl/prog/en/includes/holds_table.inc b/koha-tmpl/intranet-tmpl/prog/en/includes/holds_table.inc >index 25af3b9..0e1cf27 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/includes/holds_table.inc >+++ b/koha-tmpl/intranet-tmpl/prog/en/includes/holds_table.inc >@@ -26,7 +26,7 @@ > <input type="hidden" name="reserve_id" value="[% hold.reserve_id | html %]" /> > <input type="hidden" name="borrowernumber" value="[% hold.borrowernumber | html %]" /> > <input type="hidden" name="biblionumber" value="[% hold.biblionumber | html %]" /> >- [% IF Koha.Preference('HoldsSplitQueue') == "nothing" %] >+ [% IF Koha.Preference('HoldsSplitQueue') == "nothing" && !hold.found %] > <select name="rank-request"> > [% ELSE %] > <select name="rank-request" disabled> >@@ -191,7 +191,7 @@ > [% END %] > > [% ELSE %] >- <input type="hidden" name="suspend_until" value="" /> >+ <input type="button" value="Revert found status" onclick="window.location.href='request.pl?action=move&where=down&first_priority=[% first_priority | html %]&last_priority=[% last_priority | html %]&prev_priority=0&next_priority=1&borrowernumber=[% hold.borrowernumber | html %]&biblionumber=[% hold.biblionumber | html %]&reserve_id=[% hold.reserve_id | html %]&date=[% hold.date | html %]'"> > [% END %] > </td> > [% END # IF SuspendHoldsIntranet %] >-- >2.1.4
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
|
Splinter Review
Attachments on
bug 21608
:
80933
|
81131
|
81134
|
81272
|
81835
|
82157
|
82322
|
82652
|
82956
|
82957
|
82958
|
82959
|
83541