View | Details | Raw Unified | Return to bug 20837
Collapse All | Expand All

(-)a/C4/Reserves.pm (-1 / +1 lines)
Lines 443-449 sub CanItemBeReserved { Link Here
443
    }
443
    }
444
444
445
    my $circ_control_branch =
445
    my $circ_control_branch =
446
      C4::Circulation::_GetCircControlBranch( $item->unblessed(), $borrower );
446
      GetReservesControlBranch( $item->unblessed(), $borrower );
447
    my $branchitemrule =
447
    my $branchitemrule =
448
      C4::Circulation::GetBranchItemRule( $circ_control_branch, $item->itype ); # FIXME Should not be item->effective_itemtype?
448
      C4::Circulation::GetBranchItemRule( $circ_control_branch, $item->itype ); # FIXME Should not be item->effective_itemtype?
449
449
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/smart-rules.tt (-2 / +2 lines)
Lines 1-5 Link Here
1
[% USE raw %]
1
[% USE raw %]
2
[% USE Asset %]
2
[% USE Asset %]
3
[% USE Koha %]
3
[% USE Branches %]
4
[% USE Branches %]
4
[% USE Categories %]
5
[% USE Categories %]
5
[% USE CirculationRules %]
6
[% USE CirculationRules %]
Lines 687-693 Link Here
687
            <li><strong>No holds allowed:</strong> No patron may put this book on hold.</li>
688
            <li><strong>No holds allowed:</strong> No patron may put this book on hold.</li>
688
        </ul>
689
        </ul>
689
        <p><strong>Note: </strong>If the system preference 'AllowHoldPolicyOverride' is enabled, these policies can be overridden by your circulation staff.</br />
690
        <p><strong>Note: </strong>If the system preference 'AllowHoldPolicyOverride' is enabled, these policies can be overridden by your circulation staff.</br />
690
            <strong>Important: </strong>The policies are based on the patron's home library, not the library where the hold is being placed.
691
            <strong>Important: </strong>The policies are applied based on the ReservesControlBranch system preference which is set to <a href="/cgi-bin/koha/admin/preferences.pl?op=search&searchfield=ReservesControlBranch">[% Koha.Preference('ReservesControlBranch') %]</a>.
691
        </p>
692
        </p>
692
693
693
        <form method="post" action="/cgi-bin/koha/admin/smart-rules.pl">
694
        <form method="post" action="/cgi-bin/koha/admin/smart-rules.pl">
694
- 

Return to bug 20837