|
Lines 4-14
Link Here
|
| 4 |
[% USE Borrowers %] |
4 |
[% USE Borrowers %] |
| 5 |
[% USE ItemTypes %] |
5 |
[% USE ItemTypes %] |
| 6 |
[% USE AuthorisedValues %] |
6 |
[% USE AuthorisedValues %] |
|
|
7 |
[% USE ColumnsSettings %] |
| 7 |
|
8 |
|
| 8 |
[% INCLUDE 'doc-head-open.inc' %] |
9 |
[% INCLUDE 'doc-head-open.inc' %] |
| 9 |
<title>Koha › Circulation › Check in [% title |html %]</title> |
10 |
<title>Koha › Circulation › Check in [% title |html %]</title> |
|
|
11 |
<link rel="stylesheet" type="text/css" href="[% themelang %]/css/datatables.css" /> |
| 10 |
[% INCLUDE 'doc-head-close.inc' %] |
12 |
[% INCLUDE 'doc-head-close.inc' %] |
| 11 |
|
13 |
[% INCLUDE 'datatables.inc' %] |
|
|
14 |
[% INCLUDE 'columns_settings.inc' %] |
| 12 |
[% INCLUDE 'calendar.inc' %] |
15 |
[% INCLUDE 'calendar.inc' %] |
| 13 |
<script type="text/javascript" src="[% interface %]/lib/jquery/plugins/jquery-ui-timepicker-addon.min.js"></script> |
16 |
<script type="text/javascript" src="[% interface %]/lib/jquery/plugins/jquery-ui-timepicker-addon.min.js"></script> |
| 14 |
[% INCLUDE 'timepicker.inc' %] |
17 |
[% INCLUDE 'timepicker.inc' %] |
|
Lines 25-30
$(document).ready(function () {
Link Here
|
| 25 |
Dopop('hold-transfer-slip.pl?borrowernumber=[% borrowernumber %]&biblionumber=[% biblionumber %]'); |
28 |
Dopop('hold-transfer-slip.pl?borrowernumber=[% borrowernumber %]&biblionumber=[% biblionumber %]'); |
| 26 |
[% END %] |
29 |
[% END %] |
| 27 |
|
30 |
|
|
|
31 |
var columns_settings = [% ColumnsSettings.GetColumns( 'circ', 'circulation', 'checkedintable', 'json' ) %] |
| 32 |
var returns_table = KohaTable("#checkedintable", { |
| 33 |
"bFilter":false, |
| 34 |
"bPaginate":false, |
| 35 |
"bInfo":false, |
| 36 |
"bSort":false |
| 37 |
}, columns_settings); |
| 38 |
|
| 28 |
$("#return_date_override").datetimepicker({ |
39 |
$("#return_date_override").datetimepicker({ |
| 29 |
onClose: function(dateText, inst) { $("#barcode").focus(); }, |
40 |
onClose: function(dateText, inst) { $("#barcode").focus(); }, |
| 30 |
defaultDate: -1, |
41 |
defaultDate: -1, |
|
Lines 590-596
$(document).ready(function () {
Link Here
|
| 590 |
[% IF ( riloop ) %] |
601 |
[% IF ( riloop ) %] |
| 591 |
<h2>Checked-in items</h2> |
602 |
<h2>Checked-in items</h2> |
| 592 |
<table id="checkedintable"> |
603 |
<table id="checkedintable"> |
| 593 |
<tr><th class="ci-duedate">Due date</th><th class="ci-title">Title</th><th class="ci-author">Author</th><th class="ci-barcode">Barcode</th><th class="ci-homelibrary">Home library</th><th class="ci-holdinglibrary">Holding library</th><th class="ci-shelvinglocation">Shelving location</th><th class="ci-callnumber">Call number</th><th class="ci-dateaccessioned">Date acquired</th><th class="ci-type">Type</th><th class="ci-patron">Patron</th><th class="ci-note">Note</th></tr> |
604 |
<thead><th class="ci-duedate">Due date</th><th class="ci-title">Title</th><th class="ci-author">Author</th><th class="ci-barcode">Barcode</th><th class="ci-homelibrary">Home library</th><th class="ci-holdinglibrary">Holding library</th><th class="ci-shelvinglocation">Shelving location</th><th class="ci-callnumber">Call number</th><th class="ci-dateaccessioned">Date acquired</th><th class="ci-type">Type</th><th class="ci-patron">Patron</th><th class="ci-note">Note</th></thead> |
| 594 |
|
605 |
|
| 595 |
[% FOREACH riloo IN riloop %] |
606 |
[% FOREACH riloo IN riloop %] |
| 596 |
<tr> |
607 |
<tr> |
| 597 |
- |
|
|