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

(-)a/admin/columns_settings.yml (+46 lines)
Lines 189-191 modules: Link Here
189
          columnname: export
189
          columnname: export
190
          cannot_be_toggled: 1
190
          cannot_be_toggled: 1
191
          cannot_be_modified: 1
191
          cannot_be_modified: 1
192
  member:
193
    moremember:
194
      issues-table:
195
        -
196
          columnname: un
197
          cannot_be_toggled: 1
198
          cannot_be_modified: 1
199
          is_hidden: 1
200
        -
201
          columnname: deux
202
          cannot_be_toggled: 1
203
          cannot_be_modified: 1
204
          is_hidden: 1
205
        -
206
          columnname: due_date_unformatted
207
          cannot_be_toggled: 1
208
          cannot_be_modified: 1
209
          is_hidden: 1
210
        -
211
          columnname: due_date
212
        -
213
          columnname: title
214
        -
215
          columnname: item_type
216
        -
217
          columnname: checkout_on
218
        -
219
          columnname: checkout_from
220
        -
221
          columnname: callno
222
        -
223
          columnname: charge
224
        -
225
          columnname: price
226
        -
227
          columnname: renew
228
          cannot_be_toggled: 1
229
          cannot_be_modified: 1
230
        -
231
          columnname: checkin
232
          cannot_be_toggled: 1
233
          cannot_be_modified: 1
234
        -
235
          columnname: export
236
          cannot_be_toggled: 1
237
          cannot_be_modified: 1
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/members/moremember.tt (-1 / +4 lines)
Lines 1-5 Link Here
1
[% USE Koha %]
1
[% USE Koha %]
2
[% USE KohaDates %]
2
[% USE KohaDates %]
3
[% USE ColumnsSettings %]
3
[% IF Koha.Preference('ExportRemoveFields') OR Koha.Preference('ExportWithCsvProfile') %]
4
[% IF Koha.Preference('ExportRemoveFields') OR Koha.Preference('ExportWithCsvProfile') %]
4
   [% SET exports_enabled = 1 %]
5
   [% SET exports_enabled = 1 %]
5
[% END %]
6
[% END %]
Lines 15-20 Link Here
15
[% INCLUDE 'calendar.inc' %]
16
[% INCLUDE 'calendar.inc' %]
16
<link rel="stylesheet" type="text/css" href="[% interface %]/[% theme %]/en/css/datatables.css" />
17
<link rel="stylesheet" type="text/css" href="[% interface %]/[% theme %]/en/css/datatables.css" />
17
[% INCLUDE 'datatables.inc' %]
18
[% INCLUDE 'datatables.inc' %]
19
[% INCLUDE 'columns_settings.inc' %]
18
[% INCLUDE 'strings.inc' %]
20
[% INCLUDE 'strings.inc' %]
19
<script type="text/javascript" src="[% interface %]/lib/jquery/plugins/jquery.checkboxes.min.js"></script>
21
<script type="text/javascript" src="[% interface %]/lib/jquery/plugins/jquery.checkboxes.min.js"></script>
20
<script type="text/javascript" src="[% interface %]/lib/jquery/plugins/jquery-ui-timepicker-addon.min.js"></script>
22
<script type="text/javascript" src="[% interface %]/lib/jquery/plugins/jquery-ui-timepicker-addon.min.js"></script>
Lines 41-46 var relatives_borrowernumbers = new Array(); Link Here
41
var MSG_ADD_MESSAGE = _("Add a new message");
43
var MSG_ADD_MESSAGE = _("Add a new message");
42
var MSG_EXPORT_SELECT_CHECKOUTS = _("You must select checkout(s) to export");
44
var MSG_EXPORT_SELECT_CHECKOUTS = _("You must select checkout(s) to export");
43
45
46
columns_settings = [% ColumnsSettings.GetColumns( 'member', 'moremember', 'issues-table', 'json' ) %]
47
44
$(document).ready(function() {
48
$(document).ready(function() {
45
    $('#finesholdsissues').tabs({
49
    $('#finesholdsissues').tabs({
46
        // Correct table sizing for tables hidden in tabs
50
        // Correct table sizing for tables hidden in tabs
47
- 

Return to bug 13492