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

(-)a/admin/columns_settings.yml (+5 lines)
Lines 494-499 modules: Link Here
494
        -
494
        -
495
          columnname: homebranch
495
          columnname: homebranch
496
        -
496
        -
497
          columnname: checkout_on_unformatted
498
          cannot_be_toggled: 1
499
          cannot_be_modified: 1
500
          is_hidden: 1
501
        -
497
          columnname: checkout_on
502
          columnname: checkout_on
498
        -
503
        -
499
          columnname: checkout_from
504
          columnname: checkout_from
(-)a/installer/data/mysql/atomicupdate/Bug_21777_Hide_column_for_sorting_checkout_on.perl (+9 lines)
Line 0 Link Here
1
$DBversion = 'XXX';  # will be replaced by the RM
2
if( CheckVersion( $DBversion ) ) {
3
    $dbh->do( q{
4
        INSERT IGNORE INTO columns_settings (module, page, tablename, columnname, cannot_be_toggled, is_hidden) VALUES
5
        ("circ", "circulation", "issues-table", "checkout_on_unformatted", 1, 1);
6
    });
7
    SetVersion( $DBversion );
8
    print "Upgrade to $DBversion done (Bug 21777: Fix circulation table alignment)\n";
9
}
(-)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="11" style="text-align: right; font-weight:bold;">Totals:</td>
3
        <td colspan="12" style="text-align: right; font-weight:bold;">Totals:</td>
4
        <td id="totaldue" style="text-align: right;">[% totaldue | html %]</td>
4
        <td id="totaldue" style="text-align: right;">[% totaldue | html %]</td>
5
        <td id="totalfine" style="text-align: right;">[% finetotal | html %]</td>
5
        <td id="totalfine" style="text-align: right;">[% finetotal | html %]</td>
6
        <td id="totalprice" style="text-align: right;">[% totalprice | html %]</td>
6
        <td id="totalprice" style="text-align: right;">[% totalprice | html %]</td>
(-)a/koha-tmpl/intranet-tmpl/prog/en/includes/checkouts-table.inc (-1 / +1 lines)
Lines 19-24 Link Here
19
                        <th scope="col">Collection</th>
19
                        <th scope="col">Collection</th>
20
                        <th scope="col">Location</th>
20
                        <th scope="col">Location</th>
21
                        <th scope="col">Home library</th>
21
                        <th scope="col">Home library</th>
22
                        <th scope="col">&nbsp;</th>
22
                        <th scope="col">Checked out on</th>
23
                        <th scope="col">Checked out on</th>
23
                        <th scope="col">Checked out from</th>
24
                        <th scope="col">Checked out from</th>
24
                        <th scope="col">Call no</th>
25
                        <th scope="col">Call no</th>
25
- 

Return to bug 21777