View | Details | Raw Unified | Return to bug 14753
Collapse All | Expand All

(-)a/admin/columns_settings.yml (+27 lines)
Lines 317-322 modules: Link Here
317
          cannot_be_toggled: 1
317
          cannot_be_toggled: 1
318
          cannot_be_modified: 1
318
          cannot_be_modified: 1
319
319
320
      checkedintable:
321
        -
322
          columnname: due_date
323
        -
324
          columnname: title
325
        -
326
          columnname: author
327
        -
328
          columnname: barcode
329
        -
330
          columnname: homelibrary
331
        -
332
          columnname: holdinglibrary
333
        -
334
          columnname: location
335
        -
336
          columnname: itemcallnumber
337
        -
338
          columnname: dateaccessioned
339
          is_hidden: 1
340
        -
341
          columnname: itype
342
        -
343
          columnname: borrower
344
        -
345
          columnname: itemnote
346
320
    view_holdsqueue:
347
    view_holdsqueue:
321
      holds-table:
348
      holds-table:
322
        -
349
        -
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/returns.tt (-3 / +13 lines)
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 &rsaquo; Circulation &rsaquo; Check in [% title |html %]</title>
10
<title>Koha &rsaquo; Circulation &rsaquo; 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 %]&amp;biblionumber=[% biblionumber %]');
28
        Dopop('hold-transfer-slip.pl?borrowernumber=[% borrowernumber %]&amp;biblionumber=[% biblionumber %]');
26
    [% END %]
29
    [% END %]
27
30
31
    var columns_settings = [% ColumnsSettings.GetColumns( 'circ', 'circulation', 'checkedintable', 'json' ).raw %]
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
- 

Return to bug 14753