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

(-)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="8" style="text-align: right; font-weight:bold;">Totals:</td>
3
        <td colspan="9" style="text-align: right; font-weight:bold;">Totals:</td>
4
		<td>[% totaldue %]</td>
4
		<td>[% totaldue %]</td>
5
		<td>[% totalprice %]</td>
5
		<td>[% 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/js/checkouts.js (-1 / +11 lines)
Lines 138-143 $(document).ready(function() { Link Here
138
            {
138
            {
139
                "mDataProp": function( oObj ) {
139
                "mDataProp": function( oObj ) {
140
                    if ( oObj.issued_today ) {
140
                    if ( oObj.issued_today ) {
141
                        return "0";
142
                    } else {
143
                        return "100";
144
                    }
145
                }
146
            },
147
            {
148
                "mDataProp": function( oObj ) {
149
                    if ( oObj.issued_today ) {
141
                        return "<strong>" + TODAYS_CHECKOUTS + "</strong>";
150
                        return "<strong>" + TODAYS_CHECKOUTS + "</strong>";
142
                    } else {
151
                    } else {
143
                        return "<strong>" + PREVIOUS_CHECKOUTS + "</strong>";
152
                        return "<strong>" + PREVIOUS_CHECKOUTS + "</strong>";
Lines 329-336 $(document).ready(function() { Link Here
329
        },
338
        },
330
    }).rowGrouping(
339
    }).rowGrouping(
331
        {
340
        {
341
            iGroupingColumnIndex: 1,
332
            iGroupingOrderByColumnIndex: 0,
342
            iGroupingOrderByColumnIndex: 0,
333
            sGroupingColumnSortDirection: "desc"
343
            sGroupingColumnSortDirection: "asc"
334
        }
344
        }
335
    );
345
    );
336
346
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation.tt (-1 / +1 lines)
Lines 688-693 No patron matched <span class="ex">[% message %]</span> Link Here
688
            <thead>
688
            <thead>
689
                <tr>
689
                <tr>
690
                    <th scope="col">&nbsp;</th>
690
                    <th scope="col">&nbsp;</th>
691
                    <th scope="col">&nbsp;</th>
691
                    <th scope="col">Due date</th>
692
                    <th scope="col">Due date</th>
692
                    <th scope="col">Due date</th>
693
                    <th scope="col">Due date</th>
693
                    <th scope="col">Title</th>
694
                    <th scope="col">Title</th>
694
- 

Return to bug 12899