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

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/batch_modify_holds.tt (+14 lines)
Lines 136-141 Link Here
136
                                        <th>Suspend holds</th>
136
                                        <th>Suspend holds</th>
137
                                        <th>Suspend until</th>
137
                                        <th>Suspend until</th>
138
                                        <th>New hold note</th>
138
                                        <th>New hold note</th>
139
                                        <th>Clear hold notes</th>
139
                                    </tr>
140
                                    </tr>
140
                                </thead>
141
                                </thead>
141
                                <tbody>
142
                                <tbody>
Lines 162-167 Link Here
162
                                        <td>
163
                                        <td>
163
                                           <input type="text" id="new_hold_note" name="new_hold_note"/>
164
                                           <input type="text" id="new_hold_note" name="new_hold_note"/>
164
                                        </td>
165
                                        </td>
166
                                        <td>
167
                                           <input class="selection" type="checkbox" id="clear_hold_notes" name="clear_hold_notes" value="1"/>
168
                                        </td>
165
                                    </tr>
169
                                    </tr>
166
                                </tbody>
170
                                </tbody>
167
                            </table> <!-- /#modify_holds_options -->
171
                            </table> <!-- /#modify_holds_options -->
Lines 185-190 Link Here
185
    [% Asset.js("js/tools-menu.js") | $raw %]
189
    [% Asset.js("js/tools-menu.js") | $raw %]
186
    [% INCLUDE 'calendar.inc' %]
190
    [% INCLUDE 'calendar.inc' %]
187
    [% INCLUDE 'datatables.inc' %]
191
    [% INCLUDE 'datatables.inc' %]
192
    [% INCLUDE 'select2.inc' %]
188
    [% INCLUDE 'js-patron-format.inc' %]
193
    [% INCLUDE 'js-patron-format.inc' %]
189
    [% Asset.js("lib/jquery/plugins/humanmsg.js") | $raw %]
194
    [% Asset.js("lib/jquery/plugins/humanmsg.js") | $raw %]
190
    <script>
195
    <script>
Lines 192-197 Link Here
192
        let hold_ids = [% IF updated_holds %] [% updated_holds | $raw %] [% ELSE %] [] [% END %];
197
        let hold_ids = [% IF updated_holds %] [% updated_holds | $raw %] [% ELSE %] [] [% END %];
193
198
194
        $(document).ready(function() {
199
        $(document).ready(function() {
200
201
            // Apply select2 to all select fields having a "multiple" attribute
202
            let selectFields = document.querySelectorAll('select[multiple]');
203
            selectFields.forEach((selectField) => {
204
                selectField.style.minWidth = '200px';
205
                $(selectField).select2();
206
            });
207
195
            //Empty local storage from previous selections
208
            //Empty local storage from previous selections
196
            localStorage.removeItem("holds_modify_selections");
209
            localStorage.removeItem("holds_modify_selections");
197
210
Lines 493-498 Link Here
493
                var new_suspend_status  = $("#new_suspend_status").val();
506
                var new_suspend_status  = $("#new_suspend_status").val();
494
                var new_suspend_date    = $("#new_suspend_date").val();
507
                var new_suspend_date    = $("#new_suspend_date").val();
495
                var new_hold_note       = $("#new_hold_note").val();
508
                var new_hold_note       = $("#new_hold_note").val();
509
                var clear_hold_notes    = $("#clear_hold_notes").val();
496
510
497
                if ( holds_checked.length == 0 ) {
511
                if ( holds_checked.length == 0 ) {
498
                    e.preventDefault();
512
                    e.preventDefault();
(-)a/tools/batch_modify_holds.pl (-1 / +5 lines)
Lines 51-56 if ( $op eq 'form' ) { Link Here
51
    my $new_suspend_status  = $input->param('new_suspend_status');
51
    my $new_suspend_status  = $input->param('new_suspend_status');
52
    my $new_suspend_date    = $input->param('new_suspend_date');
52
    my $new_suspend_date    = $input->param('new_suspend_date');
53
    my $new_hold_note       = $input->param('new_hold_note');
53
    my $new_hold_note       = $input->param('new_hold_note');
54
    my $clear_hold_notes    = $input->param('clear_hold_notes');
54
55
55
    @hold_ids = $input->multi_param('hold_id');
56
    @hold_ids = $input->multi_param('hold_id');
56
57
Lines 84-89 if ( $op eq 'form' ) { Link Here
84
        if ($new_hold_note) {
85
        if ($new_hold_note) {
85
            $hold->reservenotes($new_hold_note)->store;
86
            $hold->reservenotes($new_hold_note)->store;
86
        }
87
        }
88
89
        if ($clear_hold_notes) {
90
            $hold->reservenotes(undef)->store;
91
        }
87
    }
92
    }
88
93
89
    $template->param(
94
    $template->param(
90
- 

Return to bug 36135