Bug 33155: Fix category and library filters in patron search header
[koha.git] / koha-tmpl / intranet-tmpl / prog / en / modules / patroncards / print.tt
1 [% USE Asset %]
2 [% SET footerjs = 1 %]
3 [% INCLUDE 'doc-head-open.inc' %]
4     <title>Patron card printing/exporting &rsaquo; Patron cards &rsaquo; Tools &rsaquo; Koha</title>
5     [% INCLUDE 'doc-head-close.inc' popup => 1%]
6 </head>
7
8 <body id="pcard_print" class="tools pcard">
9     <div class="container-fluid">
10         <h1>Patron card printing/exporting</h1>
11             [% IF ( batches ) %]
12             <form>
13                 <h3>Click on the following link(s) to download the exported batch(es).</h3>
14                     <fieldset>
15                     [% FOREACH batche IN batches %]
16                         [% IF ( batche.label_ids ) %]
17                         <legend>[% batche.card_count | html %] Single patron cards</legend>
18                         <p>
19                                 <a class="document pdf" href="/cgi-bin/koha/patroncards/[% batche.create_script | html %]?batch_id=[% batche.batch_id | html %]&amp;template_id=[% batche.template_id | html %]&amp;layout_id=[% batche.layout_id | html %]]&amp;layout_back_id=[% batche.layout_back_id | html %]&amp;start_card=[% batche.start_card | html %][% batche.label_ids | html %]">label_single_[% batche.card_count | html %].pdf</a>
20                         </p>
21                         [% ELSIF ( batche.borrower_numbers ) %]
22                         <legend>[% batche.card_count | html %] Single patron cards</legend>
23                         <p>
24                                 <a class="document pdf" href="/cgi-bin/koha/patroncards/[% batche.create_script | html %]?template_id=[% batche.template_id | html %]&amp;layout_id=[% batche.layout_id | html %]&amp;layout_back_id=[% batche.layout_back_id | html %]&amp;start_card=[% batche.start_card | html %][% batche.borrower_numbers | html %]">label_single_[% batche.card_count | html %].pdf</a>
25                         </p>
26                         [% ELSE %]
27                         <legend>Card batch number [% batche.batch_id | html %]</legend>
28                         <p>
29                                 <a class="document pdf" href="/cgi-bin/koha/patroncards/create-pdf.pl?batch_id=[% batche.batch_id | html %]&amp;template_id=[% batche.template_id | html %]&amp;layout_id=[% batche.layout_id | html %]&amp;layout_back_id=[% batche.layout_back_id | html %]&amp;start_card=[% batche.start_card | html %]">label_batch_[% batche.batch_id | html %].pdf</a>
30                         </p>
31                         [% END %]
32                     [% END %]
33                     </fieldset>
34
35                 <fieldset class="action">
36                     <input type="button" class="gb-close" value="Done" />
37                 </fieldset>
38             </form>
39             [% ELSIF ( patronlist_id && template_id && layout_id ) %]
40                 <div id="export_patron_list">
41                     <h3>Click on the link to download the patron cards from the patron list.</h3>
42                     <p>
43                         <a class="document pdf" href="/cgi-bin/koha/patroncards/create-pdf.pl?patronlist_id=[% patronlist_id | html %]&amp;template_id=[% template_id | html %]&amp;layout_id=[% layout_id | html %]&amp;layout_back_id=[% layout_back_id | html %]&amp;start_card=[% start_card | html %]">label_patronlist_[% patronlist_id | html %].pdf</a>
44                     </p>
45                 </div>
46             [% ELSE %]
47             <h3>
48                     [% IF ( label_ids ) %]
49                         [% IF ( card_count == 1 ) %]<span>Exporting 1 patron card</span>[% ELSE %]<span>Exporting [% card_count | html %] patron cards</span>[% END %]
50                     [% ELSIF ( borrower_numbers ) %]
51                         [% IF ( borrower_count == 1 ) %]<span>Exporting 1 patron card</span>[% ELSE %]<span>Exporting [% borrower_count | html %] patron cards</span>[% END %]
52                     [% ELSIF ( patronlist_id ) %] <span>Exporting from patron list</span>
53                     [% ELSE %]
54                         [% IF ( multi_batch_count == 1 ) %]<span>1 batch to export</span>[% ELSE %]<span>[% multi_batch_count | html %] batches to export</span>[% END %]
55                     [% END %]
56             </h3>
57             <form id="exportingf" name="exporting" method="post" action="/cgi-bin/koha/patroncards/print.pl">
58                 <input type="hidden" name="op" value="export" />
59                 <input type="hidden" name="referer" value="[% referer | html %]" />
60                 [% FOREACH batch_id IN batch_ids %]
61                     <input type="hidden" name="batch_id" value="[% batch_id.batch_id | html %]" />
62                 [% END %]
63                 [% FOREACH label_id IN label_ids %]
64                     <input type="hidden" name="label_id" value="[% label_id.label_id | html %]" />
65                 [% END %]
66                 [% FOREACH borrower_number IN borrower_numbers %]
67                     <input type="hidden" name="borrower_number" value="[% borrower_number.borrower_number | html %]" />
68                 [% END %]
69                 [% IF (patronlist_id) %] <input type="hidden" name="patronlist_id" value="[% patronlist_id | html %]" /> [% END %]
70                 <fieldset class="rows">
71                     <ol>
72                         <li>
73                             <label style="width:9em" for="template_id">Select a template to be applied: </label>
74                             <select name="template_id" id="template_id">
75                                 [% FOREACH template IN templates %]
76                                 <option value="[% template.template_id | html %]">[% template.template_code | html %]</option>
77                                 [% END %]
78                             </select>
79                         </li>
80                         <li>
81                             <label style="width:9em" for="layout_id">Select a layout to be applied: </label>
82                             <select name="layout_id" id="layout_id">
83                                 [% FOREACH layout IN layouts %]
84                                 <option value="[% layout.layout_id | html %]">[% layout.layout_name | html %]</option>
85                                 [% END %]
86                             </select>
87                         </li>
88                         <li>
89                             <label style="width:9em" for="layout_back_id">Select a layout for back side: </label>
90                             <select name="layout_back_id" id="layout_back_id">
91                                 <option value="0">Back side layout not used</option>
92                                 [% FOREACH layout IN layouts %]
93                                 <option value="[% layout.layout_id | html %]">[% layout.layout_name | html %]</option>
94                                 [% END %]
95                             </select>
96                             <span class="hint">Used for duplex printers (needs a '1 up template')</span>
97                         </li>
98
99                         <li>
100                             <label style="width:9em" for="start_card">Enter starting card position: </label>
101                             <input type="text" size="5" id="start_card" name="start_card" class="focus" title="Starting card number" value="1" />
102                         </li>
103                     </ol>
104                 </fieldset>
105                 <fieldset class="action">
106                     <input type="submit" value="Export" />
107                     <a href="#" class="cancel gb-close">Cancel</a>
108                 </fieldset>
109             </form>
110             [% END %]
111     </div>
112
113 [% MACRO jsinclude BLOCK %]
114     [% INCLUDE 'greybox.inc' %]
115     <script>
116         function Done() {
117             window.location = "[% referer | html %]";
118         };
119         $(document).ready(function(){
120             $(".gb-close").on("click",function(){
121                 parent.parent.GB_hide();
122             });
123         });
124     </script>
125 [% END %]
126
127 [% INCLUDE 'popup-bottom.inc' %]