Lines 7-13
Link Here
|
7 |
[% INCLUDE 'doc-head-open.inc' %] |
7 |
[% INCLUDE 'doc-head-open.inc' %] |
8 |
[% SET destination = "circ" %] |
8 |
[% SET destination = "circ" %] |
9 |
<title>Koha › Circulation |
9 |
<title>Koha › Circulation |
10 |
[% IF borrowernumber %] |
10 |
[% IF borrowernumber and borrower %] |
11 |
› Batch check out › Issuing items to [% INCLUDE 'patron-title.inc' invert_name = 1 %] |
11 |
› Batch check out › Issuing items to [% INCLUDE 'patron-title.inc' invert_name = 1 %] |
12 |
[% END %] |
12 |
[% END %] |
13 |
</title> |
13 |
</title> |
Lines 42-48
$(document).ready(function() {
Link Here
|
42 |
[% INCLUDE 'circ-search.inc' %] |
42 |
[% INCLUDE 'circ-search.inc' %] |
43 |
|
43 |
|
44 |
<div id="breadcrumbs"><a href="/cgi-bin/koha/mainpage.pl">Home</a> › <a href="/cgi-bin/koha/circ/circulation-home.pl">Circulation</a> › |
44 |
<div id="breadcrumbs"><a href="/cgi-bin/koha/mainpage.pl">Home</a> › <a href="/cgi-bin/koha/circ/circulation-home.pl">Circulation</a> › |
45 |
<a href="/cgi-bin/koha/circ/circulation.pl">Batch check out</a> › [% INCLUDE 'patron-title.inc' %] |
45 |
[% IF borrower and borrowernumber %] |
|
|
46 |
<a href="/cgi-bin/koha/circ/circulation.pl">Batch check out</a> › [% INCLUDE 'patron-title.inc' %] |
47 |
[% ELSE %] |
48 |
Batch check out |
49 |
[% END %] |
46 |
</div> |
50 |
</div> |
47 |
<div id="doc3" class="yui-t2"> |
51 |
<div id="doc3" class="yui-t2"> |
48 |
|
52 |
|
Lines 52-71
$(document).ready(function() {
Link Here
|
52 |
|
56 |
|
53 |
<div class="yui-g"> |
57 |
<div class="yui-g"> |
54 |
|
58 |
|
55 |
[% IF ( borrowernumber ) %] |
59 |
[% IF borrowernumber and borrower %] |
56 |
[% INCLUDE 'members-toolbar.inc' %] |
60 |
[% INCLUDE 'members-toolbar.inc' %] |
57 |
[% END %] |
61 |
[% END %] |
58 |
|
62 |
|
59 |
[% IF NOT batch_allowed %] |
63 |
[% IF borrower and not batch_allowed %] |
60 |
<div class="dialog alert">You are not allowed to use batch checkout for this patron</div> |
64 |
<div class="dialog alert">You are not allowed to use batch checkout for this patron</div> |
61 |
[% ELSIF noissues and not checkout_infos %] |
65 |
[% ELSIF borrower and noissues and not checkout_infos %] |
62 |
<div class="dialog alert"> |
66 |
<div class="dialog alert"> |
63 |
Cannot check out! |
67 |
Cannot check out! |
64 |
[% IF charges_is_blocker %] |
68 |
[% IF charges_is_blocker %] |
65 |
Checkouts are <span class="circ-hlt">BLOCKED</span> because fine balance is <span class="circ-hlt">OVER THE LIMIT</span>. |
69 |
Checkouts are <span class="circ-hlt">BLOCKED</span> because fine balance is <span class="circ-hlt">OVER THE LIMIT</span>. |
66 |
[% END %] |
70 |
[% END %] |
67 |
</div> |
71 |
</div> |
68 |
[% ELSIF NOT checkout_infos %] |
72 |
[% ELSIF borrower and not checkout_infos %] |
69 |
<form method="post" enctype="multipart/form-data" action="/cgi-bin/koha/circ/circulation.pl"> |
73 |
<form method="post" enctype="multipart/form-data" action="/cgi-bin/koha/circ/circulation.pl"> |
70 |
<fieldset id="circ_circulation_issue"> |
74 |
<fieldset id="circ_circulation_issue"> |
71 |
<label for="barcode">Checking out to [% INCLUDE 'patron-title.inc' %]</label> |
75 |
<label for="barcode">Checking out to [% INCLUDE 'patron-title.inc' %]</label> |
Lines 94-100
$(document).ready(function() {
Link Here
|
94 |
</fieldset> |
98 |
</fieldset> |
95 |
</form> |
99 |
</form> |
96 |
|
100 |
|
97 |
[% ELSE %] |
101 |
[% ELSIF borrower %] |
98 |
[% IF confirmation_needed && CAN_user_circulate_force_checkout %] |
102 |
[% IF confirmation_needed && CAN_user_circulate_force_checkout %] |
99 |
<h3>Batch checkout confirmation [% IF borrowernumber %] for [% INCLUDE 'patron-title.inc' invert_name = 1 %] [% END %]</h3> |
103 |
<h3>Batch checkout confirmation [% IF borrowernumber %] for [% INCLUDE 'patron-title.inc' invert_name = 1 %] [% END %]</h3> |
100 |
<form method="post" action="/cgi-bin/koha/circ/circulation.pl" id="mainform" name="mainform" autocomplete="off"> |
104 |
<form method="post" action="/cgi-bin/koha/circ/circulation.pl" id="mainform" name="mainform" autocomplete="off"> |
Lines 276-288
$(document).ready(function() {
Link Here
|
276 |
</form> |
280 |
</form> |
277 |
[% END %] |
281 |
[% END %] |
278 |
|
282 |
|
|
|
283 |
[% ELSE %] |
284 |
<div class="dialog message">This patron does not exist. <a href="/cgi-bin/koha/members/members-home.pl">Find another patron?</a></div> |
279 |
[% END %] |
285 |
[% END %] |
280 |
|
286 |
|
281 |
</div> |
287 |
</div> |
282 |
</div> |
288 |
</div> |
283 |
</div> |
289 |
</div> |
284 |
<div class="yui-b"> |
290 |
[% IF borrower %] |
285 |
[% INCLUDE 'circ-menu.inc' %] |
291 |
<div class="yui-b"> |
286 |
</div> |
292 |
[% INCLUDE 'circ-menu.inc' %] |
|
|
293 |
</div> |
294 |
[% END %] |
287 |
</div> |
295 |
</div> |
288 |
[% INCLUDE 'intranet-bottom.inc' %] |
296 |
[% INCLUDE 'intranet-bottom.inc' %] |
289 |
- |
|
|