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

(-)a/admin/columns_settings.yml (-2 / +48 lines)
Lines 111-116 modules: Link Here
111
          cannot_be_toggled: 1
111
          cannot_be_toggled: 1
112
          cannot_be_modified: 1
112
          cannot_be_modified: 1
113
113
114
    moremember:
115
      issues-table:
116
        -
117
          columnname: sort_order
118
          cannot_be_toggled: 1
119
          cannot_be_modified: 1
120
          is_hidden: 1
121
        -
122
          columnname: todays_or_previous_checkouts
123
          cannot_be_toggled: 1
124
          cannot_be_modified: 1
125
          is_hidden: 1
126
        -
127
          columnname: due_date_unformatted
128
          cannot_be_toggled: 1
129
          cannot_be_modified: 1
130
          is_hidden: 1
131
        -
132
          columnname: due_date
133
        -
134
          columnname: title
135
        -
136
          columnname: item_type
137
        -
138
          columnname: checkout_on
139
        -
140
          columnname: checkout_from
141
        -
142
          columnname: callno
143
        -
144
          columnname: charge
145
        -
146
          columnname: price
147
        -
148
          columnname: renew
149
          cannot_be_toggled: 1
150
          cannot_be_modified: 1
151
        -
152
          columnname: checkin
153
          cannot_be_toggled: 1
154
          cannot_be_modified: 1
155
        -
156
          columnname: export
157
          cannot_be_toggled: 1
158
          cannot_be_modified: 1
159
114
  reports:
160
  reports:
115
    lostitems:
161
    lostitems:
116
      lostitems-table:
162
      lostitems-table:
Lines 147-158 modules: Link Here
147
    circulation:
193
    circulation:
148
      issues-table:
194
      issues-table:
149
        -
195
        -
150
          columnname: un
196
          columnname: sort_order
151
          cannot_be_toggled: 1
197
          cannot_be_toggled: 1
152
          cannot_be_modified: 1
198
          cannot_be_modified: 1
153
          is_hidden: 1
199
          is_hidden: 1
154
        -
200
        -
155
          columnname: deux
201
          columnname: todays_or_previous_checkouts
156
          cannot_be_toggled: 1
202
          cannot_be_toggled: 1
157
          cannot_be_modified: 1
203
          cannot_be_modified: 1
158
          is_hidden: 1
204
          is_hidden: 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