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

(-)a/admin/columns_settings.yml (+4 lines)
Lines 210-215 modules: Link Here
210
        -
210
        -
211
          columnname: location
211
          columnname: location
212
        -
212
        -
213
          columnname: homebranch
214
        -
213
          columnname: checkout_on
215
          columnname: checkout_on
214
        -
216
        -
215
          columnname: checkout_from
217
          columnname: checkout_from
Lines 293-298 modules: Link Here
293
        -
295
        -
294
          columnname: location
296
          columnname: location
295
        -
297
        -
298
          columnname: homebranch
299
        -
296
          columnname: checkout_on
300
          columnname: checkout_on
297
        -
301
        -
298
          columnname: checkout_from
302
          columnname: checkout_from
(-)a/koha-tmpl/intranet-tmpl/prog/en/includes/checkouts-table.inc (+1 lines)
Lines 17-22 Link Here
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">Location</th>
19
                        <th scope="col">Location</th>
20
                        <th scope="col">Home library</th>
20
                        <th scope="col">Checked out on</th>
21
                        <th scope="col">Checked out on</th>
21
                        <th scope="col">Checked out from</th>
22
                        <th scope="col">Checked out from</th>
22
                        <th scope="col">Call no</th>
23
                        <th scope="col">Call no</th>
(-)a/koha-tmpl/intranet-tmpl/prog/js/checkouts.js (+1 lines)
Lines 272-277 $(document).ready(function() { Link Here
272
                },
272
                },
273
                { "mDataProp": "itemtype_description" },
273
                { "mDataProp": "itemtype_description" },
274
                { "mDataProp": "location" },
274
                { "mDataProp": "location" },
275
                { "mDataProp": "homebranch" },
275
                { "mDataProp": "issuedate_formatted" },
276
                { "mDataProp": "issuedate_formatted" },
276
                { "mDataProp": "branchname" },
277
                { "mDataProp": "branchname" },
277
                { "mDataProp": "itemcallnumber" },
278
                { "mDataProp": "itemcallnumber" },
(-)a/svc/checkouts (-2 / +4 lines)
Lines 78-90 my $sql = ' Link Here
78
78
79
        itemnumber,
79
        itemnumber,
80
        barcode,
80
        barcode,
81
        branches2.branchname AS homebranch,
81
        itemnotes,
82
        itemnotes,
82
        itemnotes_nonpublic,
83
        itemnotes_nonpublic,
83
        itemcallnumber,
84
        itemcallnumber,
84
        replacementprice,
85
        replacementprice,
85
86
86
        issues.branchcode,
87
        issues.branchcode,
87
        branchname,
88
        branches.branchname,
88
89
89
        items.itype,
90
        items.itype,
90
        biblioitems.itemtype,
91
        biblioitems.itemtype,
Lines 105-110 my $sql = ' Link Here
105
        LEFT JOIN biblioitems USING ( biblionumber )
106
        LEFT JOIN biblioitems USING ( biblionumber )
106
        LEFT JOIN borrowers USING ( borrowernumber )
107
        LEFT JOIN borrowers USING ( borrowernumber )
107
        LEFT JOIN branches ON ( issues.branchcode = branches.branchcode )
108
        LEFT JOIN branches ON ( issues.branchcode = branches.branchcode )
109
        LEFT JOIN branches branches2 ON ( items.homebranch = branches2.branchcode )
108
    WHERE borrowernumber
110
    WHERE borrowernumber
109
';
111
';
110
112
Lines 154-159 while ( my $c = $sth->fetchrow_hashref() ) { Link Here
154
        itemtype             => $item_level_itypes ? $c->{itype} : $c->{itemtype},
156
        itemtype             => $item_level_itypes ? $c->{itype} : $c->{itemtype},
155
        itemtype_description => $itemtype->{translated_description},
157
        itemtype_description => $itemtype->{translated_description},
156
        location             => $c->{location} ? GetAuthorisedValueByCode( 'LOC', $c->{location} ) : q{},
158
        location             => $c->{location} ? GetAuthorisedValueByCode( 'LOC', $c->{location} ) : q{},
159
        homebranch           => $c->{homebranch},
157
        itemnotes            => $c->{itemnotes},
160
        itemnotes            => $c->{itemnotes},
158
        itemnotes_nonpublic  => $c->{itemnotes_nonpublic},
161
        itemnotes_nonpublic  => $c->{itemnotes_nonpublic},
159
        branchcode           => $c->{branchcode},
162
        branchcode           => $c->{branchcode},
160
- 

Return to bug 15975