1 [% INCLUDE 'doc-head-open.inc' %]
2 <title>Koha › Tools › Label creator › Label printing/exporting</title>
3 [% INCLUDE 'doc-head-close.inc' popup => 1 %]
4 <script type="text/javascript">
7 window.location = "[% referer %]";
11 <style type="text/css">#custom-doc {width:47.23em; *width:46.04em; min-width:610px; margin:auto; margin-top:0.4em;}</style>
12 <style type="text/css">table {border-collapse: separate; border-spacing: 0; border: hidden none;} .header {cursor: auto; background-position: center center; background-repeat: repeat;}</style>
14 <body id="labels_label-print" class="tools labels">
15 <div id="custom-doc" class="yui-t2">
19 <h3>Click on the following links to download the exported batch(es).</h3>
20 [% FOREACH batche IN batches %]
22 [% IF ( batche.label_ids ) %]
23 <legend>[% IF ( batche.label_count == 1 ) %][% batche.label_count %] single label[% ELSE %][% batche.label_count %] single labels[% END %]</legend>
24 <p><a class="document pdf" href="/cgi-bin/koha/labels/[% batche.create_script %]?batch_id=[% batche.batch_id %]&template_id=[% batche.template_id %]&layout_id=[% batche.layout_id %]&start_label=[% batche.start_label %][% batche.label_ids %]">Download as PDF</a></p>
26 <p><a class="document csv" href="/cgi-bin/koha/labels/label-create-csv.pl?batch_id=[% batche.batch_id %]&template_id=[% batche.template_id %]&layout_id=[% batche.layout_id %][% batche.label_ids %]">Download as CSV</a></p>
28 <p><a class="document xml" href="/cgi-bin/koha/labels/label-create-xml.pl?batch_id=[% batche.batch_id %]&template_id=[% batche.template_id %]&layout_id=[% batche.layout_id %][% batche.label_ids %]">Download as XML</a></p>
29 [% ELSIF ( batche.item_numbers ) %]
30 <legend>[% IF ( batche.label_count == 1 ) %][% batche.label_count %] single label[% ELSE %][% batche.label_count %] single labels[% END %]</legend>
31 <p><a class="document pdf" href="/cgi-bin/koha/labels/[% batche.create_script %]?template_id=[% batche.template_id %]&layout_id=[% batche.layout_id %]&start_label=[% batche.start_label %][% batche.item_numbers %]">Download as PDF</a></p>
33 <p><a class="document csv" href="/cgi-bin/koha/labels/label-create-csv.pl?batch_id=[% batche.batch_id %]&template_id=[% batche.template_id %]&layout_id=[% batche.layout_id %][% batche.item_numbers %]">Download as CSV</a></p>
35 <p><a class="document xml" href="/cgi-bin/koha/labels/label-create-xml.pl?batch_id=[% batche.batch_id %]&template_id=[% batche.template_id %]&layout_id=[% batche.layout_id %][% batche.item_numbers %]">Download as XML</a></p>
37 <legend>Label Batch Number [% batche.batch_id %]</legend>
38 <p><a class="document pdf" href="/cgi-bin/koha/labels/label-create-pdf.pl?batch_id=[% batche.batch_id %]&template_id=[% batche.template_id %]&layout_id=[% batche.layout_id %]&start_label=[% batche.start_label %]">Download as PDF</a>
41 <a class="document csv" href="/cgi-bin/koha/labels/label-create-csv.pl?batch_id=[% batche.batch_id %]&template_id=[% batche.template_id %]&layout_id=[% batche.layout_id %]">Download as CSV</a>
44 <a class="document xml" href="/cgi-bin/koha/labels/label-create-xml.pl?batch_id=[% batche.batch_id %]&template_id=[% batche.template_id %]&layout_id=[% batche.layout_id %]">Download as XML</a></p>
48 <fieldset class="action">
49 <input type="button" id="done" onclick="parent.parent.GB_hide();" class="submit" value="Done" />
54 [% IF ( label_ids ) %]
55 [% IF ( label_count == 1 ) %]Exporting [% label_count %] label[% ELSE %]Exporting [% label_count %] labels[% END %]
56 [% ELSIF ( item_numbers ) %]
57 [% IF ( item_count == 1 ) %]Exporting [% item_count %] label[% ELSE %]Exporting [% item_count %] labels[% END %]
59 [% IF ( multi_batch_count == 1 ) %][% multi_batch_count %] batch to export[% ELSE %][% multi_batch_count %] batches to export[% END %]
62 <form name="exporting" method="post" action="/cgi-bin/koha/labels/label-print.pl">
63 <input type="hidden" name="op" value="export" />
64 <input type="hidden" name="referer" value="[% referer %]" />
65 [% FOREACH batch_id IN batch_ids %]
66 <input type="hidden" name="batch_id" value="[% batch_id.batch_id %]" />
68 [% FOREACH label_id IN label_ids %]
69 <input type="hidden" name="label_id" value="[% label_id.label_id %]" />
71 [% FOREACH item_number IN item_numbers %]
72 <input type="hidden" name="item_number" value="[% item_number.item_number %]" />
74 <fieldset class="rows">
77 <label for="template_id" style="width:20em">Select a template to be applied: </label>
78 <select name="template_id" id="template_id">
79 [% FOREACH template IN templates %]
80 <option value="[% template.template_id %]">[% template.template_code %]</option>
85 <label for="layout_id" style="width:20em">Select a layout to be applied: </label>
86 <select name="layout_id" id="layout_id">
87 [% FOREACH layout IN layouts %]
88 <option value="[% layout.layout_id %]">[% layout.layout_name %]</option>
93 <label for="start_label" style="width:20em">Enter starting label position (for PDF): </label>
94 <input type="text" size="5" id="start_label" name="start_label" class="focus" title="Starting label number" value="1"/>
98 <fieldset class="action">
99 <input type="submit" class="submit" value="Export" />
100 <a href="#" class="cancel" id="done" onclick="parent.parent.GB_hide();return false;">Cancel</a>
105 [% INCLUDE 'popup-bottom.inc' %]