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

(-)a/koha-tmpl/intranet-tmpl/prog/en/includes/checkouts-table.inc (-2 / +2 lines)
Lines 16-22 Link Here
16
        </p>
16
        </p>
17
    </div>
17
    </div>
18
    <form name="issues" action="/cgi-bin/koha/tools/export.pl" method="post">
18
    <form name="issues" action="/cgi-bin/koha/tools/export.pl" method="post">
19
        <table id="issues-table" style="width: 100% !Important;">
19
        <table id="issues-table" style="width: 100% !Important; display: none;">
20
            <thead>
20
            <thead>
21
                <tr>
21
                <tr>
22
                    <th scope="col">&nbsp;</th>
22
                    <th scope="col">&nbsp;</th>
Lines 49-55 Link Here
49
        <label for="issues-table-load-immediately">Always show checkouts automatically</label>
49
        <label for="issues-table-load-immediately">Always show checkouts automatically</label>
50
        <input id="issues-table-load-immediately" type="checkbox" />
50
        <input id="issues-table-load-immediately" type="checkbox" />
51
51
52
        <div id="issues-table-actions">
52
        <div id="issues-table-actions" style="display: none;">
53
            <fieldset class="action">
53
            <fieldset class="action">
54
                [% IF ( CAN_user_circulate_override_renewals ) %]
54
                [% IF ( CAN_user_circulate_override_renewals ) %]
55
                    [% IF Koha.Preference( 'AllowRenewalLimitOverride' ) || Koha.Preference( 'AllowRenewalOnHoldOverride' ) %]
55
                    [% IF Koha.Preference( 'AllowRenewalLimitOverride' ) || Koha.Preference( 'AllowRenewalOnHoldOverride' ) %]
(-)a/koha-tmpl/intranet-tmpl/prog/js/checkouts.js (-3 lines)
Lines 265-272 $(document).ready(function() { Link Here
265
265
266
    var ymd = flatpickr.formatDate(new Date(), "Y-m-d");
266
    var ymd = flatpickr.formatDate(new Date(), "Y-m-d");
267
267
268
    $('#issues-table').hide();
269
    $('#issues-table-actions').hide();
270
    $('#issues-table-load-immediately').change(function(){
268
    $('#issues-table-load-immediately').change(function(){
271
        if ( this.checked && typeof issuesTable === 'undefined') {
269
        if ( this.checked && typeof issuesTable === 'undefined') {
272
            $('#issues-table-load-now-button').click();
270
            $('#issues-table-load-now-button').click();
273
- 

Return to bug 35600