|
Lines 1-25
Link Here
|
| 1 |
[% INCLUDE 'doc-head-open.inc' %] |
|
|
| 2 |
<title>Koha › Circulation › Transfers</title> |
| 3 |
[% INCLUDE 'doc-head-close-receipt.inc' %] |
| 4 |
<script type="text/javascript"> |
| 5 |
function printandclose() |
| 6 |
{ |
| 7 |
window.print(); |
| 8 |
window.close(); |
| 9 |
} |
| 10 |
</script> |
| 11 |
</head> |
| 12 |
<body id="circ_transfer-slip" class="circ" onload="printandclose();"> |
| 13 |
<div id="main"> |
| 14 |
|
| 15 |
<h5>Date: [% pulldate %]</h5> |
| 16 |
<h3>Transfer to [% branchname %]</h3> |
| 17 |
|
| 18 |
<h3>ITEM</h3> |
| 19 |
<h4>[% biblio.title |html %]</h4> |
| 20 |
<h5>[% biblio.author %] </h5> |
| 21 |
<ul> |
| 22 |
[% IF ( item.barcode ) %]<li>[% item.barcode %]</li>[% END %] |
| 23 |
[% IF ( item.itemcallnumber ) %]<li>[% item.itemcallnumber %]</li>[% END %] |
| 24 |
</ul> |
| 25 |
[% INCLUDE 'intranet-bottom.inc' %] |
| 26 |
- |