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

(-)a/admin/columns_settings.yml (+2 lines)
Lines 546-551 modules: Link Here
546
        -
546
        -
547
          columnname: itype
547
          columnname: itype
548
        -
548
        -
549
          columnname: ccode
550
        -
549
          columnname: borrower
551
          columnname: borrower
550
        -
552
        -
551
          columnname: itemnote
553
          columnname: itemnote
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/returns.tt (-3 / +19 lines)
Lines 683-689 Link Here
683
[% IF ( riloop ) %]
683
[% IF ( riloop ) %]
684
    <h2>Checked-in items</h2>
684
    <h2>Checked-in items</h2>
685
    <table id="checkedintable">
685
    <table id="checkedintable">
686
    <thead><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-recodtype">Record type</th><th class="ci-itemtype">Item type</th><th class="ci-patron">Patron</th><th class="ci-note">Note</th></tr></thead>
686
    <thead>
687
        <tr>
688
            <th class="ci-duedate">Due date</th>
689
            <th class="ci-title">Title</th>
690
            <th class="ci-author">Author</th>
691
            <th class="ci-barcode">Barcode</th>
692
            <th class="ci-homelibrary">Home library</th>
693
            <th class="ci-holdinglibrary">Holding library</th>
694
            <th class="ci-shelvinglocation">Shelving location</th>
695
            <th class="ci-callnumber">Call number</th>
696
            <th class="ci-dateaccessioned">Date acquired</th>
697
            <th class="ci-recodtype">Record type</th>
698
            <th class="ci-itemtype">Item type</th>
699
            <th class="ci-collection">Collection</th>
700
            <th class="ci-patron">Patron</th><th class="ci-note">Note</th>
701
        </tr>
702
    </thead>
687
703
688
        [% FOREACH riloo IN riloop %]
704
        [% FOREACH riloo IN riloop %]
689
            <tr>
705
            <tr>
Lines 711-717 Link Here
711
            <td class="ci-callnumber">[% riloo.itemcallnumber | html %]</td>
727
            <td class="ci-callnumber">[% riloo.itemcallnumber | html %]</td>
712
            <td class="ci-dateaccessioned">[% riloo.dateaccessioned | $KohaDates %]</td>
728
            <td class="ci-dateaccessioned">[% riloo.dateaccessioned | $KohaDates %]</td>
713
            <td class="ci-recordtype">[% ItemTypes.GetDescription( riloo.recordtype ) | html %]</td>
729
            <td class="ci-recordtype">[% ItemTypes.GetDescription( riloo.recordtype ) | html %]</td>
714
            <td class="ci-itemtype">[% ItemTypes.GetDescription( riloo.itemtype ) | html %] [% AuthorisedValues.GetByCode('CCODE', riloo.ccode) | html %]</td>
730
            <td class="ci-itemtype">[% ItemTypes.GetDescription( riloo.itemtype ) | html %]</td>
731
            <td class="ci-collection">[% AuthorisedValues.GetByCode('CCODE', riloo.ccode) | html %]</td>
715
            <td class="ci-patron">[% IF ( riloo.duedate ) %]
732
            <td class="ci-patron">[% IF ( riloo.duedate ) %]
716
                <a href="/cgi-bin/koha/members/moremember.pl?borrowernumber=[% riloo.patron.borrowernumber | uri %]">
733
                <a href="/cgi-bin/koha/members/moremember.pl?borrowernumber=[% riloo.patron.borrowernumber | uri %]">
717
                    [% riloo.patron.surname | html %], [% riloo.patron.firstname | html %] ([% riloo.patron.category.description | html %])
734
                    [% riloo.patron.surname | html %], [% riloo.patron.firstname | html %] ([% riloo.patron.category.description | html %])
718
- 

Return to bug 21750