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

(-)a/admin/columns_settings.yml (+4 lines)
Lines 230-235 modules: Link Here
230
        -
230
        -
231
          columnname: item_type
231
          columnname: item_type
232
        -
232
        -
233
          columnname: collection_code
234
        -
233
          columnname: location
235
          columnname: location
234
        -
236
        -
235
          columnname: homebranch
237
          columnname: homebranch
Lines 342-347 modules: Link Here
342
        -
344
        -
343
          columnname: item_type
345
          columnname: item_type
344
        -
346
        -
347
          columnname: collection_code
348
        -
345
          columnname: location
349
          columnname: location
346
        -
350
        -
347
          columnname: homebranch
351
          columnname: homebranch
(-)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 589-594 $(document).ready(function() { Link Here
589
                        "sType": "anti-the"
590
                        "sType": "anti-the"
590
                    },
591
                    },
591
                    { "mDataProp": "itemtype" },
592
                    { "mDataProp": "itemtype" },
593
                    { "mDataProp": "ccode" },
592
                    { "mDataProp": "location" },
594
                    { "mDataProp": "location" },
593
                    { "mDataProp": "issuedate_formatted" },
595
                    { "mDataProp": "issuedate_formatted" },
594
                    { "mDataProp": "branchname" },
596
                    { "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