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

(-)a/koha-tmpl/intranet-tmpl/prog/en/includes/patron-detail-tabs.inc (-1 / +2 lines)
Lines 146-154 Link Here
146
                    <form action="/cgi-bin/koha/reserve/modrequest.pl" method="post">
146
                    <form action="/cgi-bin/koha/reserve/modrequest.pl" method="post">
147
                        [% INCLUDE 'csrf-token.inc' %]
147
                        [% INCLUDE 'csrf-token.inc' %]
148
                        <input type="hidden" name="from" value="circ" />
148
                        <input type="hidden" name="from" value="circ" />
149
                        <table id="holds-table" style="width: 100% !Important;">
149
                        <table id="holds-table" class="holds_table" style="width: 100% !Important;">
150
                            <thead>
150
                            <thead>
151
                                <tr>
151
                                <tr>
152
                                    <th id="checkbox" data-colname="checkbox"><input type="checkbox" class="select_hold_all" /></th>
152
                                    <th>Hold date</th>
153
                                    <th>Hold date</th>
153
                                    <th class="anti-the">Title</th>
154
                                    <th class="anti-the">Title</th>
154
                                    <th>Call number</th>
155
                                    <th>Call number</th>
(-)a/koha-tmpl/intranet-tmpl/prog/js/holds.js (-1 / +18 lines)
Lines 154-159 $(document).ready(function () { Link Here
154
                    autoWidth: false,
154
                    autoWidth: false,
155
                    dom: '<"table_controls"B>rt',
155
                    dom: '<"table_controls"B>rt',
156
                    columns: [
156
                    columns: [
157
                        {
158
                            orderable: false,
159
                            data: function (oObj) {
160
                                return (
161
                                    '<input type="checkbox" class="select_hold" data-id="' +
162
                                    oObj.reserve_id +
163
                                    '" data-borrowernumber="' +
164
                                    borrowernumber +
165
                                    '" data-biblionumber="' +
166
                                    oObj.biblionumber +
167
                                    '" data-priority="' +
168
                                    oObj.priority +
169
                                    '" data-branchcode="' +
170
                                    oObj.branchcode +
171
                                    '">'
172
                                );
173
                            },
174
                        },
157
                        {
175
                        {
158
                            data: {
176
                            data: {
159
                                _: "reservedate_formatted",
177
                                _: "reservedate_formatted",
160
- 

Return to bug 40395