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

(-)a/admin/columns_settings.yml (+4 lines)
Lines 46-51 modules: Link Here
46
        -
46
        -
47
          columnname: item_type
47
          columnname: item_type
48
        -
48
        -
49
          columnname: location
50
        -
49
          columnname: checkout_on
51
          columnname: checkout_on
50
        -
52
        -
51
          columnname: checkout_from
53
          columnname: checkout_from
Lines 92-97 modules: Link Here
92
        -
94
        -
93
          columnname: item_type
95
          columnname: item_type
94
        -
96
        -
97
          columnname: location
98
        -
95
          columnname: checkout_on
99
          columnname: checkout_on
96
        -
100
        -
97
          columnname: checkout_from
101
          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="totalprice">[% totalprice %]</td>
5
        <td id="totalprice">[% totalprice %]</td>
6
                <td colspan="3"><div class="date-select">
6
                <td colspan="3"><div class="date-select">
(-)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 262-267 $(document).ready(function() { Link Here
262
                    }
262
                    }
263
                },
263
                },
264
                { "mDataProp": "itemtype_description" },
264
                { "mDataProp": "itemtype_description" },
265
                { "mDataProp": "location" },
265
                { "mDataProp": "issuedate_formatted" },
266
                { "mDataProp": "issuedate_formatted" },
266
                { "mDataProp": "branchname" },
267
                { "mDataProp": "branchname" },
267
                { "mDataProp": "itemcallnumber" },
268
                { "mDataProp": "itemcallnumber" },
Lines 496-501 $(document).ready(function() { Link Here
496
                        }
497
                        }
497
                    },
498
                    },
498
                    { "mDataProp": "itemtype" },
499
                    { "mDataProp": "itemtype" },
500
                    { "mDataProp": "location" },
499
                    { "mDataProp": "issuedate_formatted" },
501
                    { "mDataProp": "issuedate_formatted" },
500
                    { "mDataProp": "branchname" },
502
                    { "mDataProp": "branchname" },
501
                    { "mDataProp": "itemcallnumber" },
503
                    { "mDataProp": "itemcallnumber" },
(-)a/svc/checkouts (-1 / +2 lines)
Lines 93-98 my $sql = ' Link Here
93
93
94
        itemlost,
94
        itemlost,
95
        damaged,
95
        damaged,
96
        location,
96
97
97
        DATEDIFF( issuedate, CURRENT_DATE() ) AS not_issued_today
98
        DATEDIFF( issuedate, CURRENT_DATE() ) AS not_issued_today
98
    FROM issues
99
    FROM issues
Lines 149-154 while ( my $c = $sth->fetchrow_hashref() ) { Link Here
149
        barcode    => $c->{barcode},
150
        barcode    => $c->{barcode},
150
        itemtype   => $item_level_itypes ? $c->{itype} : $c->{itemtype},
151
        itemtype   => $item_level_itypes ? $c->{itype} : $c->{itemtype},
151
        itemtype_description => $item_level_itypes ? $c->{itype_description} : $c->{itemtype_description},
152
        itemtype_description => $item_level_itypes ? $c->{itype_description} : $c->{itemtype_description},
153
        location   => $c->{location} ? GetAuthorisedValueByCode( 'LOC', $c->{location} ) : q{},
152
        itemnotes  => $c->{itemnotes},
154
        itemnotes  => $c->{itemnotes},
153
        branchcode => $c->{branchcode},
155
        branchcode => $c->{branchcode},
154
        branchname => $c->{branchname},
156
        branchname => $c->{branchname},
155
- 

Return to bug 13492