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

(-)a/admin/columns_settings.yml (+46 lines)
Lines 67-69 modules: Link Here
67
          columnname: export
67
          columnname: export
68
          cannot_be_toggled: 1
68
          cannot_be_toggled: 1
69
          cannot_be_modified: 1
69
          cannot_be_modified: 1
70
  member:
71
    moremember:
72
      issues-table:
73
        -
74
          columnname: un
75
          cannot_be_toggled: 1
76
          cannot_be_modified: 1
77
          is_hidden: 1
78
        -
79
          columnname: deux
80
          cannot_be_toggled: 1
81
          cannot_be_modified: 1
82
          is_hidden: 1
83
        -
84
          columnname: due_date_unformatted
85
          cannot_be_toggled: 1
86
          cannot_be_modified: 1
87
          is_hidden: 1
88
        -
89
          columnname: due_date
90
        -
91
          columnname: title
92
        -
93
          columnname: item_type
94
        -
95
          columnname: checkout_on
96
        -
97
          columnname: checkout_from
98
        -
99
          columnname: callno
100
        -
101
          columnname: charge
102
        -
103
          columnname: price
104
        -
105
          columnname: renew
106
          cannot_be_toggled: 1
107
          cannot_be_modified: 1
108
        -
109
          columnname: checkin
110
          cannot_be_toggled: 1
111
          cannot_be_modified: 1
112
        -
113
          columnname: export
114
          cannot_be_toggled: 1
115
          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