Koha/koha-tmpl/intranet-tmpl/prog/en/modules/circ/hold-transfer-slip.tmpl
root 5d707b5e9b Bug 6005: Fixes Transit slips cause FF4 to display "prevent this page from opening additional dialogs"
Signed-off-by: Owen Leonard <oleonard@myacpl.org>
Signed-off-by: Chris Cormack <chrisc@catalyst.net.nz>
2011-03-31 21:56:09 +13:00

54 lines
1.8 KiB
Cheetah

<!-- TMPL_INCLUDE NAME="doc-head-open.inc" -->
<title>Koha -- Circulation: Transfers</title>
<!-- TMPL_INCLUDE NAME="doc-head-close-receipt.inc" -->
<script language="javascript">
function printandclose()
{
window.print();
window.close();
}
</script>
</head>
<body onload="printandclose();"><div id="main">
<!-- TMPL_LOOP NAME="reservedata" -->
<h5>Date: <!-- TMPL_VAR NAME="pulldate" --></h5>
<h3> <!-- TMPL_IF NAME="transferrequired" -->Transfer to <!-- TMPL_VAR Name="branchname" --> <!-- TMPL_ELSE -->Hold in <!-- TMPL_VAR Name="branchname" --><!-- /TMPL_IF --></h3>
<div id="reserve_display">
<h3><!-- TMPL_VAR Name="surname" -->, <!-- TMPL_VAR Name="firstname" --></h3>
<ul>
<li><!-- TMPL_VAR Name="cardnumber" --></li>
<!-- TMPL_IF NAME="phone" -->
<li><!-- TMPL_VAR Name="phone" --></li>
<!-- /TMPL_IF -->
<li>
<!-- TMPL_VAR Name="address" --><br />
<!-- TMPL_IF Name="address2" --><!-- TMPL_VAR Name="address2" --><br /><!-- /TMPL_IF -->
<!-- TMPL_VAR Name="city" --> <!-- TMPL_VAR NAME="zip" -->
</li>
<!-- TMPL_IF NAME="email" -->
<li><!-- TMPL_VAR NAME="email" --></li>
<!-- /TMPL_IF -->
</ul>
<br />
<h3>RESERVED ITEM</h3>
<h4><!-- TMPL_VAR Name="title" escape="html" --></h4>
<h5><!-- TMPL_VAR NAME="author" --> </h5>
<ul>
<!-- TMPL_IF NAME="barcode" --><li><!-- TMPL_VAR Name="barcode" --></li><!-- /TMPL_IF -->
<!-- TMPL_IF NAME="itemcallnumber" --><li><!-- TMPL_VAR Name="itemcallnumber" --></li><!-- /TMPL_IF -->
<!-- TMPL_IF NAME="waitingdate" --><li><!-- TMPL_VAR Name="waitingdate" --></li><!-- /TMPL_IF -->
</ul>
<!-- TMPL_IF NAME="reservenotes" -->
<p>Notes: <!-- TMPL_VAR Name="reservenotes" --></p>
<!-- /TMPL_IF -->
<!-- /TMPL_LOOP -->
</div>
<!-- TMPL_INCLUDE NAME="intranet-bottom.inc" -->