Skip to content

Commit ab93008

Browse files
kidclamptomascohen
authored andcommitted
Bug 30687: Allow pickup location to be forced when override is allowed
This is Julian's patch with some extra cleanup to reduce repeated code If AllowHoldPolicyOverride is enabled and only some pickup locations are available, you still have the possibility to force one of the others pickup locations. But when there are zero pickup locations available, that is not possible. This patch change that by always displaying the list of pickup locations when AllowHoldPolicyOverride is enabled. Test plan: 1. Apply patch 2. Disable AllowHoldPolicyOverride 3. Create a biblio B with an item I at library A. 4. Configure this library A to not be a pickup location 5. Add a "Default holds policy by item type" for item I type where "Hold pickup library match" is "item's home library" 6. Try to place a hold on biblio B You should not be able to place a hold because there is no valid pickup locations 7. Enable AllowHoldPolicyOverride 8. Try to place a hold on biblio B You should now see all valid pickup locations in a dropdown list (with an exclamation mark in front of each option) with none selected by default 9. Verify you can place a title-level hold and an item-level hold Signed-off-by: David Nind <david@davidnind.com> Signed-off-by: Julian Maurice <julian.maurice@biblibre.com> Signed-off-by: Aleisha Amohia <aleishaamohia@hotmail.com> Signed-off-by: Tomas Cohen Arazi <tomascohen@theke.io>
1 parent f97b448 commit ab93008

File tree

2 files changed

+23
-35
lines changed

2 files changed

+23
-35
lines changed

koha-tmpl/intranet-tmpl/prog/en/modules/reserve/request.tt

+2-2
Original file line numberDiff line numberDiff line change
@@ -801,7 +801,7 @@
801801
[% END # /IF force_hold_level %]
802802
</td>
803803
<td>
804-
[% IF (itemloo.pickup_locations_count > 0) %]
804+
[% IF (itemloo.pickup_locations_count > 0) || itemloo.override %]
805805
<select name="item_pickup_[% itemloo.itemnumber | html %]" class="pickup_locations" style="width:100%;"
806806
data-item-id="[% itemloo.itemnumber | html %]"
807807
data-patron-id="[% patron.borrowernumber | html %]"
@@ -1520,7 +1520,7 @@
15201520
msg = (_("- Please select an item to place a hold") + "\n");
15211521
}
15221522
} else {
1523-
if( $("#pickup").length < 1 || $("#pickup").val() == "" ){
1523+
if( $("#pickup").length < 1 || $("#pickup").val() == "" || $('#pickup').val() === null ){
15241524
msg = _("- Please select a pickup location for this hold" + "\n");
15251525
}
15261526
}

reserve/request.pl

+21-33
Original file line numberDiff line numberDiff line change
@@ -503,13 +503,21 @@ =head1 request.pl
503503
$default_pickup_branch = C4::Context->userenv->{branch};
504504
}
505505

506-
if (
507-
!$item->{cantreserve}
508-
&& !$exceeded_maxreserves
509-
&& $can_item_be_reserved eq 'OK'
510-
# items_any_available defined outside of the current loop,
511-
# so we avoiding loop inside IsAvailableForItemLevelRequest:
512-
&& IsAvailableForItemLevelRequest($item_object, $patron, undef, $items_any_available)
506+
if ( $can_item_be_reserved eq 'itemAlreadyOnHold' ) {
507+
# itemAlreadyOnHold cannot be overridden
508+
$num_alreadyheld++
509+
}
510+
elsif (
511+
(
512+
!$item->{cantreserve}
513+
&& !$exceeded_maxreserves
514+
&& $can_item_be_reserved eq 'OK'
515+
# items_any_available defined outside of the current loop,
516+
# so we avoiding loop inside IsAvailableForItemLevelRequest:
517+
&& IsAvailableForItemLevelRequest($item_object, $patron, undef, $items_any_available)
518+
) || C4::Context->preference('AllowHoldPolicyOverride')
519+
# If AllowHoldPolicyOverride is set, it overrides EVERY restriction
520+
# not just branch item rules
513521
)
514522
{
515523
# Send the pickup locations count to the UI, the pickup locations will be pulled using the API
@@ -522,37 +530,17 @@ =head1 request.pl
522530
my $default_pickup_location = $pickup_locations->search({ branchcode => $default_pickup_branch })->next;
523531
$item->{default_pickup_location} = $default_pickup_location;
524532
}
533+
elsif ( C4::Context->preference('AllowHoldPolicyOverride') ){
534+
$num_items_available++;
535+
$item->{override} = 1;
536+
my $default_pickup_location = $pickup_locations->search({ branchcode => $default_pickup_branch })->next;
537+
$item->{default_pickup_location} = $default_pickup_location;
538+
}
525539
else {
526540
$item->{available} = 0;
527541
$item->{not_holdable} = "no_valid_pickup_location";
528542
}
529543

530-
push( @available_itemtypes, $item->{itype} );
531-
}
532-
elsif ( C4::Context->preference('AllowHoldPolicyOverride') ) {
533-
# If AllowHoldPolicyOverride is set, it should override EVERY restriction, not just branch item rules
534-
# with the exception of itemAlreadyOnHold because, you know, the item is already on hold
535-
if ( $can_item_be_reserved ne 'itemAlreadyOnHold' ) {
536-
# Send the pickup locations count to the UI, the pickup locations will be pulled using the API
537-
my @pickup_locations = $item_object->pickup_locations({ patron => $patron })->as_list;
538-
$item->{pickup_locations_count} = scalar @pickup_locations;
539-
540-
if ( @pickup_locations ) {
541-
$num_items_available++;
542-
$item->{override} = 1;
543-
544-
my $default_pickup_location;
545-
546-
($default_pickup_location) = grep { $_->branchcode eq $default_pickup_branch } @pickup_locations;
547-
548-
$item->{default_pickup_location} = $default_pickup_location;
549-
}
550-
else {
551-
$item->{available} = 0;
552-
$item->{not_holdable} = "no_valid_pickup_location";
553-
}
554-
} else { $num_alreadyheld++ }
555-
556544
push( @available_itemtypes, $item->{itype} );
557545
} else {
558546
# If none of the conditions hold true, then neither override nor available is set and the item cannot be checked

0 commit comments

Comments
 (0)