Koha/koha-tmpl/intranet-tmpl/prog/en/barcodes/barcodes.tmpl
kados 5f4542992a This is a minor change, but affects all templates:
previously, it wasn't possible to insert anything into the <head> on
an individual template unless it was the title of the page. Now, the
structure is a bit more flexible to allow additional head elements to
be included.
2007-03-11 21:08:11 +00:00

85 lines
3.9 KiB
Cheetah

<!-- TMPL_INCLUDE NAME="doc-head-open.inc" -->
<title>Koha &rsaquo; Label and Barcode Printing</title>
<!-- TMPL_INCLUDE NAME="doc-head-close.inc" -->
<!-- TMPL_INCLUDE NAME="menus.inc" -->
<!-- TMPL_INCLUDE NAME="menu-barcodes.inc" -->
<!-- START OF ADD COUNTRY CODE PANEL -->
<div class="countryPanel" id="addCountryCode">
<form action="/cgi-bin/koha/barcodes/barcodes.pl" method="post" style="display:inline">
<input type="hidden" name="addCode" value="1" />
<h4>Add a new Country Code</h4>
<ul>
<li><label for="countryName">Country Name:</label> <input type="text" size="10" id="countryName" name="countryName" /></li>
<li><label for="countryCode">Country Code:</label> <input type="text" size="3" id="countryCode" name="countryCode" /></li>
</ul>
<input type="submit" name="submit" id="submit" value="Save Code"/>
<input type="button" name="cancel" id="cancel" value="Cancel" onclick="document.getElementById('addCountryCode').style.display = 'none'" />
</form>
</div>
<!-- END OF ADD COUNTRY CODE PANEL -->
<h1>Barcodes Generator</h1>
<h3>Generate barcodes from inventory codes</h3>
<ul>
<li>Select a range of inventary codes. You can choose a continuous range or individual inventory codes</li>
<li>Select the standard type to generate barcodes.</li>
<li>Define the page size for output the PDF.</li>
<li>Depending on page size, Koha will show you how the page is arranged
for each barcode. You can define wich point to start printing the page.
</li>
</ul>
<!-- TMPL_IF NAME="ERROR" -->Can't find inventory codes in that range. Please try again.<!-- /TMPL_IF -->
<form id="formulario" method="POST" action="<!-- TMPL_VAR NAME="SCRIPT_NAME" -->" name="form1" onsubmit="return checkFields(this);" target="_blank">
<label for="rangeType">Type of Interval: </label><!-- TMPL_VAR NAME="RANGE_TYPE" -->
<div id="continuous" class="panel" style="display:inline">
<ul>
<li><label for="from">From:</label><input id="from" type="text" name="from" size="20" /></li>
<li><label for="to">To:</label><input id="to" type="text" name="to" size="20" /></li>
</ul>
</div>
<div id="individuals" class="panel" style="display:none; background-color: #ffffff;">
<label for="inventaryCode">Inventory Code: </label><input id="inventaryCode" type="text" name="inventaryCode" size="20" />
<a href="#" onclick="addItem(); return false;">[+]</a>
<a href="#" onclick="removeItem(); return false;">[-]</a>
<select id="inventaryList" size="5" style="width:150px">
</select>
<input type="hidden" id="individualCodes" name="individualCodes">
</div>
<p>
<label for="numbersystem">Country Code: </label><!-- TMPL_VAR NAME="NUMBER_SYSTEM" --><a href="#" onClick="addCountryCode(); return false;">[+]</a></p>
<p> <label for="pageType">Page Size</label><input type="text" id="pageType" name="pageType" readonly="readonly" disabled="disabled" value="<!-- TMPL_VAR NAME="PAGES" -->" size="10" /><a href="/cgi-bin/koha/barcodes/printerConfig.pl">[Go to Printer Configuration]</a></p>
<p><label for="text_under_label">Text under label</label>
<input type="text" id="text_under_label" name="text_under_label" size="40" value="<!-- TMPL_VAR name="text_under_label -->" /> If this field is empty, author and title will be used instead</p>
<table>
<tr>
<th colspan="<!-- TMPL_VAR NAME="COL_SPAN" -->">Label number to start printing</th>
</tr>
<!-- TMPL_LOOP NAME="LABEL_TABLE" -->
<tr>
<!-- TMPL_LOOP NAME="columns" -->
<td>
<input type="radio" id="label" value="<!-- TMPL_VAR NAME="tagname" -->" name="label" <!-- TMPL_VAR NAME="check" -->> Label <!-- TMPL_VAR NAME="labelname" --></td>
<!-- /TMPL_LOOP -->
</tr>
<!-- /TMPL_LOOP -->
</table>
<input type="submit" value="Generate Barcodes" name="B1">
<input type="reset" value="Clear Fields" name="B2">
</form>
<!-- TMPL_INCLUDE name="intranet-bottom.inc" -->