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

(-)a/admin/columns_settings.yml (+4 lines)
Lines 135-140 modules: Link Here
135
        -
135
        -
136
          columnname: item_type
136
          columnname: item_type
137
        -
137
        -
138
          columnname: location
139
        -
138
          columnname: checkout_on
140
          columnname: checkout_on
139
        -
141
        -
140
          columnname: checkout_from
142
          columnname: checkout_from
Lines 214-219 modules: Link Here
214
        -
216
        -
215
          columnname: item_type
217
          columnname: item_type
216
        -
218
        -
219
          columnname: location
220
        -
217
          columnname: checkout_on
221
          columnname: checkout_on
218
        -
222
        -
219
          columnname: checkout_from
223
          columnname: checkout_from
(-)a/koha-tmpl/intranet-tmpl/prog/en/includes/checkouts-table-footer.inc (-1 / +1 lines)
Lines 1-6 Link Here
1
<tfoot>
1
<tfoot>
2
	<tr>
2
	<tr>
3
        <td colspan="9" style="text-align: right; font-weight:bold;">Totals:</td>
3
        <td colspan="10" style="text-align: right; font-weight:bold;">Totals:</td>
4
        <td id="totaldue">[% totaldue %]</td>
4
        <td id="totaldue">[% totaldue %]</td>
5
        <td id="totalfine">[% finetotal %]</td>
5
        <td id="totalfine">[% finetotal %]</td>
6
        <td id="totalprice">[% totalprice %]</td>
6
        <td id="totalprice">[% totalprice %]</td>
(-)a/koha-tmpl/intranet-tmpl/prog/en/includes/checkouts-table.inc (+1 lines)
Lines 15-20 Link Here
15
                        <th scope="col">Due date</th>
15
                        <th scope="col">Due date</th>
16
                        <th scope="col">Title</th>
16
                        <th scope="col">Title</th>
17
                        <th scope="col">Item type</th>
17
                        <th scope="col">Item type</th>
18
                        <th scope="col">Location</th>
18
                        <th scope="col">Checked out on</th>
19
                        <th scope="col">Checked out on</th>
19
                        <th scope="col">Checked out from</th>
20
                        <th scope="col">Checked out from</th>
20
                        <th scope="col">Call no</th>
21
                        <th scope="col">Call no</th>
(-)a/koha-tmpl/intranet-tmpl/prog/en/js/checkouts.js (+2 lines)
Lines 259-264 $(document).ready(function() { Link Here
259
                    "sType": "anti-the"
259
                    "sType": "anti-the"
260
                },
260
                },
261
                { "mDataProp": "itemtype_description" },
261
                { "mDataProp": "itemtype_description" },
262
                { "mDataProp": "location" },
262
                { "mDataProp": "issuedate_formatted" },
263
                { "mDataProp": "issuedate_formatted" },
263
                { "mDataProp": "branchname" },
264
                { "mDataProp": "branchname" },
264
                { "mDataProp": "itemcallnumber" },
265
                { "mDataProp": "itemcallnumber" },
Lines 503-508 $(document).ready(function() { Link Here
503
                        "sType": "anti-the"
504
                        "sType": "anti-the"
504
                    },
505
                    },
505
                    { "mDataProp": "itemtype" },
506
                    { "mDataProp": "itemtype" },
507
                    { "mDataProp": "location" },
506
                    { "mDataProp": "issuedate_formatted" },
508
                    { "mDataProp": "issuedate_formatted" },
507
                    { "mDataProp": "branchname" },
509
                    { "mDataProp": "branchname" },
508
                    { "mDataProp": "itemcallnumber" },
510
                    { "mDataProp": "itemcallnumber" },
(-)a/svc/checkouts (-1 / +2 lines)
Lines 94-99 my $sql = ' Link Here
94
94
95
        itemlost,
95
        itemlost,
96
        damaged,
96
        damaged,
97
        location,
97
98
98
        DATEDIFF( issuedate, CURRENT_DATE() ) AS not_issued_today
99
        DATEDIFF( issuedate, CURRENT_DATE() ) AS not_issued_today
99
    FROM issues
100
    FROM issues
Lines 151-156 while ( my $c = $sth->fetchrow_hashref() ) { Link Here
151
        barcode    => $c->{barcode},
152
        barcode    => $c->{barcode},
152
        itemtype   => $item_level_itypes ? $c->{itype} : $c->{itemtype},
153
        itemtype   => $item_level_itypes ? $c->{itype} : $c->{itemtype},
153
        itemtype_description => $item_level_itypes ? $c->{itype_description} : $c->{itemtype_description},
154
        itemtype_description => $item_level_itypes ? $c->{itype_description} : $c->{itemtype_description},
155
        location   => $c->{location} ? GetAuthorisedValueByCode( 'LOC', $c->{location} ) : q{},
154
        itemnotes  => $c->{itemnotes},
156
        itemnotes  => $c->{itemnotes},
155
        branchcode => $c->{branchcode},
157
        branchcode => $c->{branchcode},
156
        branchname => $c->{branchname},
158
        branchname => $c->{branchname},
157
- 

Return to bug 13492