Owen Leonard
13ad7c7ea0
This patch makes capitalization corrections to many templates in the OPAC and staff interface. A exhaustive test plan would be huge, so I recommend examining the patch to confirm that it contains correct case changes. If you want to make it easier to examine changes you can try: https://github.com/so-fancy/diff-so-fancy Signed-off-by: David Nind <david@davidnind.com> Signed-off-by: Martin Renvoize <martin.renvoize@ptfs-europe.com> Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org>
129 lines
9.2 KiB
Text
129 lines
9.2 KiB
Text
[% USE raw %]
|
|
[% SET footerjs = 1 %]
|
|
[% INCLUDE 'doc-head-open.inc' %]
|
|
<title>Label printing/exporting › Label creator › Tools › Koha</title>
|
|
[% INCLUDE 'doc-head-close.inc' popup => 1 %]
|
|
<style>table {border-collapse: separate; border-spacing: 0; border: hidden none;} .header {cursor: auto; background-position: center center; background-repeat: repeat;}</style>
|
|
</head>
|
|
|
|
<body id="labels_label-print" class="tools labels">
|
|
<div class="main container-fluid">
|
|
[% IF ( batches ) %]
|
|
<form>
|
|
<h3>Click on the following links to download the exported batch(es).</h3>
|
|
[% IF warn_empty_range %]
|
|
<div class="dialog alert">
|
|
<p>Some or all of the barcodes in the range you have selected have no corresponding items.</p>
|
|
<p>If you are using a layout without barcodes, this may result in missing entries or a blank page</p>
|
|
</div>
|
|
[% END %]
|
|
[% FOREACH batche IN batches %]
|
|
<fieldset>
|
|
[% IF ( batche.label_ids ) %]
|
|
<legend>[% IF ( batche.label_count == 1 ) %][% batche.label_count | html %] single label[% ELSE %][% batche.label_count | html %] single labels[% END %]</legend>
|
|
<a class="document pdf" href="/cgi-bin/koha/labels/label-create-pdf.pl?batch_id=0&template_id=[% batche.template_id | html %]&layout_id=[% batche.layout_id | html %]&start_label=[% batche.start_label | html %]&from=[% batche.from | html %]&to=[% batche.to | html %]&barcode_length=[% batche.barcode_length| html %]">Download as PDF</a>
|
|
|
|
<p><a class="document csv" href="/cgi-bin/koha/labels/label-create-csv.pl?batch_id=[% batche.batch_id | html %]&template_id=[% batche.template_id | html %]&layout_id=[% batche.layout_id | html %][% batche.label_ids | html %]">Download as CSV</a></p>
|
|
|
|
<p><a class="document xml" href="/cgi-bin/koha/labels/label-create-xml.pl?batch_id=[% batche.batch_id | html %]&template_id=[% batche.template_id | html %]&layout_id=[% batche.layout_id | html %][% batche.label_ids | html %]">Download as XML</a></p>
|
|
[% ELSIF ( batche.item_numbers ) %]
|
|
<legend>[% IF ( batche.label_count == 1 ) %][% batche.label_count | html %] single label[% ELSE %][% batche.label_count | html %] single labels[% END %]</legend>
|
|
<p><a class="document pdf" href="/cgi-bin/koha/labels/[% batche.create_script | html %]?template_id=[% batche.template_id | html %]&layout_id=[% batche.layout_id | html %]&start_label=[% batche.start_label | html %][% batche.item_numbers | html %]">Download as PDF</a></p>
|
|
|
|
<p><a class="document csv" href="/cgi-bin/koha/labels/label-create-csv.pl?batch_id=[% batche.batch_id | html %]&template_id=[% batche.template_id | html %]&layout_id=[% batche.layout_id | html %][% batche.item_numbers | html %]">Download as CSV</a></p>
|
|
|
|
<p><a class="document xml" href="/cgi-bin/koha/labels/label-create-xml.pl?batch_id=[% batche.batch_id | html %]&template_id=[% batche.template_id | html %]&layout_id=[% batche.layout_id | html %][% batche.item_numbers | html %]">Download as XML</a></p>
|
|
[% ELSIF ( batche.batch_id) %]
|
|
<legend>Label batch number [% batche.batch_id | html %]</legend>
|
|
<p><a class="document pdf" href="/cgi-bin/koha/labels/label-create-pdf.pl?batch_id=[% batche.batch_id | html %]&template_id=[% batche.template_id | html %]&layout_id=[% batche.layout_id | html %]&start_label=[% batche.start_label | html %]">Download as PDF</a>
|
|
</p>
|
|
<p>
|
|
<a class="document csv" href="/cgi-bin/koha/labels/label-create-csv.pl?batch_id=[% batche.batch_id | html %]&template_id=[% batche.template_id | html %]&layout_id=[% batche.layout_id | html %]">Download as CSV</a>
|
|
</p>
|
|
<p>
|
|
<a class="document xml" href="/cgi-bin/koha/labels/label-create-xml.pl?batch_id=[% batche.batch_id | html %]&template_id=[% batche.template_id | html %]&layout_id=[% batche.layout_id | html %]">Download as XML</a></p>
|
|
[% ELSIF (batche.from && batche.to) %]
|
|
<legend>Barcodes from [% batche.from | html %] to [% batche.to | html %]</legend>
|
|
<p>
|
|
<a class="document pdf" href="/cgi-bin/koha/labels/label-create-pdf.pl?batch_id=0&template_id=[% batche.template_id | html %]&layout_id=[% batche.layout_id | html %]&start_label=[% batche.start_label | html %]&from=[% batche.from | html %]&to=[% batche.to | html %]&barcode_length=[% batche.barcode_length | html %]">Download as PDF</a>
|
|
</p>
|
|
[% END %]
|
|
</fieldset>
|
|
[% END %]
|
|
<fieldset class="action">
|
|
<input type="button" class="gb-close" value="Done" />
|
|
</fieldset>
|
|
</form>
|
|
[% ELSE %]
|
|
<h3>
|
|
[% IF ( label_ids ) %]
|
|
[% IF ( label_count == 1 ) %]Exporting [% label_count | html %] label[% ELSE %]Exporting [% label_count | html %] labels[% END %]
|
|
[% ELSIF ( item_numbers ) %]
|
|
[% IF ( item_count == 1 ) %]Exporting [% item_count | html %] label[% ELSE %]Exporting [% item_count | html %] labels[% END %]
|
|
[% ELSE %]
|
|
[% IF ( multi_batch_count == 1 ) %][% multi_batch_count | html %] batch to export[% ELSE %][% multi_batch_count | html %] batches to export[% END %]
|
|
[% END %]
|
|
</h3>
|
|
<form name="exporting" method="post" action="/cgi-bin/koha/labels/label-print.pl">
|
|
<input type="hidden" name="op" value="export" />
|
|
<input type="hidden" name="referer" value="[% referer | html %]" />
|
|
[% FOREACH batch_id IN batch_ids %]
|
|
<input type="hidden" name="batch_id" value="[% batch_id.batch_id | html %]" />
|
|
[% END %]
|
|
[% FOREACH label_id IN label_ids %]
|
|
<input type="hidden" name="label_id" value="[% label_id.label_id | html %]" />
|
|
[% END %]
|
|
[% FOREACH item_number IN item_numbers %]
|
|
<input type="hidden" name="item_number" value="[% item_number.item_number | html %]" />
|
|
[% END %]
|
|
<input type="hidden" name="from" value="[% txt_from | html %]" />
|
|
<input type="hidden" name="to" value="[% txt_to | html %]" />
|
|
<input type="hidden" name="barcode_length" value="[% barcode_length | html %]" />
|
|
<fieldset class="rows">
|
|
<ol>
|
|
<li>
|
|
<label for="template_id" style="width:20em">Select a template to be applied: </label>
|
|
<select name="template_id" id="template_id">
|
|
[% FOREACH template IN templates %]
|
|
<option value="[% template.template_id | html %]">[% template.template_code | html %]</option>
|
|
[% END %]
|
|
</select>
|
|
</li>
|
|
<li>
|
|
<label for="layout_id" style="width:20em">Select a layout to be applied: </label>
|
|
<select name="layout_id" id="layout_id">
|
|
[% FOREACH layout IN layouts %]
|
|
<option value="[% layout.layout_id | html %]">[% layout.layout_name | html %]</option>
|
|
[% END %]
|
|
</select>
|
|
</li>
|
|
<li>
|
|
<label for="start_label" style="width:20em">Enter starting label position (for PDF): </label>
|
|
<input type="text" size="5" id="start_label" name="start_label" class="focus" title="Starting label number" value="1"/>
|
|
</li>
|
|
</ol>
|
|
</fieldset>
|
|
<fieldset class="action">
|
|
<input type="submit" value="Export" />
|
|
<a href="#" class="cancel gb-close">Cancel</a>
|
|
</fieldset>
|
|
</form>
|
|
[% END %]
|
|
</div>
|
|
|
|
[% MACRO jsinclude BLOCK %]
|
|
[% Asset.js("js/tools-menu.js") | $raw %]
|
|
[% INCLUDE 'greybox.inc' %]
|
|
<script>
|
|
function Done() {
|
|
window.location = "[% referer | html %]";
|
|
};
|
|
$(document).ready(function(){
|
|
$(".gb-close").on("click",function(){
|
|
parent.parent.GB_hide();
|
|
});
|
|
});
|
|
</script>
|
|
[% END %]
|
|
|
|
[% INCLUDE 'popup-bottom.inc' %]
|