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

(-)a/circ/waitingreserves.pl (-1 / +1 lines)
Lines 145-151 $template->param( Link Here
145
$template->param( fast_cataloging => 1 ) if Koha::BiblioFrameworks->find('FA');
145
$template->param( fast_cataloging => 1 ) if Koha::BiblioFrameworks->find('FA');
146
146
147
if ( $item && $tab eq 'holdsover' && !@cancel_result ) {
147
if ( $item && $tab eq 'holdsover' && !@cancel_result ) {
148
    print $input->redirect("/cgi-bin/koha/circ/waitingreserves.pl#holdsover");
148
    print $input->redirect("/cgi-bin/koha/circ/waitingreserves.pl?tab=holdsover");
149
} elsif ( $op eq 'cud-cancelall' ) {
149
} elsif ( $op eq 'cud-cancelall' ) {
150
    print $input->redirect("/cgi-bin/koha/circ/waitingreserves.pl");
150
    print $input->redirect("/cgi-bin/koha/circ/waitingreserves.pl");
151
} else {
151
} else {
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/waitingreserves.tt (-3 / +4 lines)
Lines 56-62 Link Here
56
                <div class="alert alert-info">
56
                <div class="alert alert-info">
57
                    <h2>This item is on hold for pick-up at [% Branches.GetName( branchcode ) | html %]</h2>
57
                    <h2>This item is on hold for pick-up at [% Branches.GetName( branchcode ) | html %]</h2>
58
                    <p><strong>[% nextreservtitle | html %]</strong> is on hold for <strong> [% nextreservsurname | html %], [% nextreservfirstname | html %]</strong>. Please retain this item and check it in to process the hold. </p>
58
                    <p><strong>[% nextreservtitle | html %]</strong> is on hold for <strong> [% nextreservsurname | html %], [% nextreservfirstname | html %]</strong>. Please retain this item and check it in to process the hold. </p>
59
                    <form name="cancelReservewithtransfert" action="waitingreserves.pl#[% tab | html %]" method="get">
59
                    <form name="cancelReservewithtransfert" action="waitingreserves.pl" method="get">
60
                        <input type="hidden" name="tab" value="[% tab | html %]" />
60
                        <button type="submit" class="btn btn-default approve"><i class="fa fa-fw fa-check"></i> OK</button>
61
                        <button type="submit" class="btn btn-default approve"><i class="fa fa-fw fa-check"></i> OK</button>
61
                    </form>
62
                    </form>
62
                </div>
63
                </div>
Lines 65-71 Link Here
65
                <div class="alert alert-info">
66
                <div class="alert alert-info">
66
                    <h2>This item is on hold for pick-up at your library</h2>
67
                    <h2>This item is on hold for pick-up at your library</h2>
67
                    <p><strong>[% nextreservtitle | html %]</strong> is on hold for <strong>[% nextreservsurname | html %], [% nextreservfirstname | html %]</strong>. Please retain this item and check it in to process the hold. </p>
68
                    <p><strong>[% nextreservtitle | html %]</strong> is on hold for <strong>[% nextreservsurname | html %], [% nextreservfirstname | html %]</strong>. Please retain this item and check it in to process the hold. </p>
68
                    <form name="cancelReservewithwaiting" action="waitingreserves.pl#[% tab | html %]" method="get">
69
                    <form name="cancelReservewithwaiting" action="waitingreserves.pl" method="get">
70
                        <input type="hidden" name="tab" value="[% tab | html %]" />
69
                        <button type="submit" class="btn btn-default approve"><i class="fa fa-fw fa-check"></i> OK</button>
71
                        <button type="submit" class="btn btn-default approve"><i class="fa fa-fw fa-check"></i> OK</button>
70
                    </form>
72
                    </form>
71
                </div>
73
                </div>
72
- 

Return to bug 17338