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

(-)a/C4/Reserves.pm (-1 / +1 lines)
Lines 410-416 sub CanItemBeReserved { Link Here
410
    }
410
    }
411
411
412
    my $circ_control_branch =
412
    my $circ_control_branch =
413
      C4::Circulation::_GetCircControlBranch( $item->unblessed(), $borrower );
413
      GetReservesControlBranch( $item->unblessed(), $borrower );
414
    my $branchitemrule =
414
    my $branchitemrule =
415
      C4::Circulation::GetBranchItemRule( $circ_control_branch, $item->itype );
415
      C4::Circulation::GetBranchItemRule( $circ_control_branch, $item->itype );
416
416
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/smart-rules.tt (-2 / +2 lines)
Lines 1-4 Link Here
1
[% USE Asset %]
1
[% USE Asset %]
2
[% USE Koha %]
2
[% USE Branches %]
3
[% USE Branches %]
3
[% SET footerjs = 1 %]
4
[% SET footerjs = 1 %]
4
[% INCLUDE 'doc-head-open.inc' %]
5
[% INCLUDE 'doc-head-open.inc' %]
Lines 628-634 Link Here
628
            <li><strong>No holds allowed:</strong> No patron may put this book on hold.</li>
629
            <li><strong>No holds allowed:</strong> No patron may put this book on hold.</li>
629
        </ul>
630
        </ul>
630
        <p><strong>Note: </strong>If the system preference 'AllowHoldPolicyOverride' is enabled, these policies can be overridden by your circulation staff.</br />
631
        <p><strong>Note: </strong>If the system preference 'AllowHoldPolicyOverride' is enabled, these policies can be overridden by your circulation staff.</br />
631
            <strong>Important: </strong>The policies are based on the patron's home library, not the library where the hold is being placed.
632
            <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>.
632
        </p>
633
        </p>
633
634
634
        <form method="post" action="/cgi-bin/koha/admin/smart-rules.pl">
635
        <form method="post" action="/cgi-bin/koha/admin/smart-rules.pl">
635
- 

Return to bug 20837