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

(-)a/admin/columns_settings.yml (+4 lines)
Lines 251-256 modules: Link Here
251
          columnname: title
251
          columnname: title
252
        -
252
        -
253
          columnname: item_type
253
          columnname: item_type
254
        -
255
          columnname: collection_code
254
        -
256
        -
255
          columnname: location
257
          columnname: location
256
        -
258
        -
Lines 406-411 modules: Link Here
406
          columnname: title
408
          columnname: title
407
        -
409
        -
408
          columnname: item_type
410
          columnname: item_type
411
        -
412
          columnname: collection_code
409
        -
413
        -
410
          columnname: location
414
          columnname: location
411
        -
415
        -
(-)a/koha-tmpl/intranet-tmpl/prog/en/includes/checkouts-table.inc (+1 lines)
Lines 16-21 Link Here
16
                        <th scope="col">Due date</th>
16
                        <th scope="col">Due date</th>
17
                        <th scope="col">Title</th>
17
                        <th scope="col">Title</th>
18
                        <th scope="col">Item type</th>
18
                        <th scope="col">Item type</th>
19
                        <th scope="col">Collection code</th>
19
                        <th scope="col">Location</th>
20
                        <th scope="col">Location</th>
20
                        <th scope="col">Home library</th>
21
                        <th scope="col">Home library</th>
21
                        <th scope="col">Checked out on</th>
22
                        <th scope="col">Checked out on</th>
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation.tt (+1 lines)
Lines 851-856 No patron matched <span class="ex">[% message | html %]</span> Link Here
851
                    <th scope="col">Due date</th>
851
                    <th scope="col">Due date</th>
852
                    <th scope="col">Title</th>
852
                    <th scope="col">Title</th>
853
                    <th scope="col">Item type</th>
853
                    <th scope="col">Item type</th>
854
                    <th scope="col">Collection code</th>
854
                    <th scope="col">Location</th>
855
                    <th scope="col">Location</th>
855
                    <th scope="col">Checked out on</th>
856
                    <th scope="col">Checked out on</th>
856
                    <th scope="col">Checked out from</th>
857
                    <th scope="col">Checked out from</th>
(-)a/koha-tmpl/intranet-tmpl/prog/js/checkouts.js (+2 lines)
Lines 291-296 $(document).ready(function() { Link Here
291
                    "sType": "anti-the"
291
                    "sType": "anti-the"
292
                },
292
                },
293
                { "mDataProp": "itemtype_description" },
293
                { "mDataProp": "itemtype_description" },
294
                { "mDataProp": "ccode" },
294
                { "mDataProp": "location" },
295
                { "mDataProp": "location" },
295
                { "mDataProp": "homebranch" },
296
                { "mDataProp": "homebranch" },
296
                { "mDataProp": "issuedate_formatted" },
297
                { "mDataProp": "issuedate_formatted" },
Lines 607-612 $(document).ready(function() { Link Here
607
                        "sType": "anti-the"
608
                        "sType": "anti-the"
608
                    },
609
                    },
609
                    { "mDataProp": "itemtype" },
610
                    { "mDataProp": "itemtype" },
611
                    { "mDataProp": "ccode" },
610
                    { "mDataProp": "location" },
612
                    { "mDataProp": "location" },
611
                    { "mDataProp": "issuedate_formatted" },
613
                    { "mDataProp": "issuedate_formatted" },
612
                    { "mDataProp": "branchname" },
614
                    { "mDataProp": "branchname" },
(-)a/svc/checkouts (-1 / +3 lines)
Lines 90-95 my $sql = ' Link Here
90
        items.itype,
90
        items.itype,
91
        biblioitems.itemtype,
91
        biblioitems.itemtype,
92
92
93
        items.ccode,
94
93
        borrowernumber,
95
        borrowernumber,
94
        surname,
96
        surname,
95
        firstname,
97
        firstname,
Lines 171-176 while ( my $c = $sth->fetchrow_hashref() ) { Link Here
171
        barcode              => $c->{barcode},
173
        barcode              => $c->{barcode},
172
        itemtype             => $item_level_itypes ? $c->{itype} : $c->{itemtype},
174
        itemtype             => $item_level_itypes ? $c->{itype} : $c->{itemtype},
173
        itemtype_description => $itemtype ? $itemtype->translated_description : q{},
175
        itemtype_description => $itemtype ? $itemtype->translated_description : q{},
176
        ccode                => $c->{ccode},
174
        location             => $location,
177
        location             => $location,
175
        homebranch           => $c->{homebranch},
178
        homebranch           => $c->{homebranch},
176
        itemnotes            => $c->{itemnotes},
179
        itemnotes            => $c->{itemnotes},
177
- 

Return to bug 19719