Koha/koha-tmpl/opac-tmpl/prog/en/modules/sco/receipt.tmpl
Owen Leonard 79616840b1 Fix for Bug 4244, Use "checkouts" instead of "issues"
Signed-off-by: Galen Charlton <gmcharlt@gmail.com>
2010-03-17 09:11:58 -04:00

53 lines
977 B
Cheetah

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title> RECEIPT </title>
<script language="JavaScript" type="text/javascript">
x = 0;
function callPrint()
{
while (x == 0)
{
self.print();
javascript:window.opener.location='/cgi-bin/koha/sco/sco-main.pl?logout.x=1';
x = 1;
}
}
function closeNow()
{
if (x == 1)
{
setTimeout('self.close()',1000);
}
}
</script>
</head>
<body onLoad="callPrint(); closeNow();">
<!-- TMPL_VAR name="branchname" --><br><br>
<!-- TMPL_VAR name="cardnumber" --><br>
<!-- begin code Mamata-->
<!-- TMPL_IF name="todayissues" --><br>
<p><b>Today's checkouts</b></p>
<!-- TMPL_LOOP name="todayissues" --><br>
<!-- TMPL_VAR NAME="title" escape="html" --><br>
<!-- TMPL_VAR NAME="author" --><br>
<!-- TMPL_VAR NAME="dd" --><br>
<!-- TMPL_VAR NAME="barcode" --><br>
<!-- /TMPL_LOOP -->
<!-- /TMPL_IF -->
<!-- end code Mamata-->
</body>
</html>